Blame view

kernel/linux-imx6_3.14.28/arch/tile/gxio/trio.c 1.16 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  /*
   * Copyright 2012 Tilera Corporation. All Rights Reserved.
   *
   *   This program is free software; you can redistribute it and/or
   *   modify it under the terms of the GNU General Public License
   *   as published by the Free Software Foundation, version 2.
   *
   *   This program is distributed in the hope that it will be useful, but
   *   WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
   *   NON INFRINGEMENT.  See the GNU General Public License for
   *   more details.
   */
  
  /*
   * Implementation of trio gxio calls.
   */
  
  #include <linux/errno.h>
  #include <linux/io.h>
  #include <linux/module.h>
  
  #include <gxio/trio.h>
  #include <gxio/iorpc_globals.h>
  #include <gxio/iorpc_trio.h>
  #include <gxio/kiorpc.h>
  
  int gxio_trio_init(gxio_trio_context_t *context, unsigned int trio_index)
  {
  	char file[32];
  	int fd;
  
  	snprintf(file, sizeof(file), "trio/%d/iorpc", trio_index);
  	fd = hv_dev_open((HV_VirtAddr) file, 0);
  	if (fd < 0) {
  		context->fd = -1;
  
  		if (fd >= GXIO_ERR_MIN && fd <= GXIO_ERR_MAX)
  			return fd;
  		else
  			return -ENODEV;
  	}
  
  	context->fd = fd;
  
  	return 0;
  }
  
  EXPORT_SYMBOL_GPL(gxio_trio_init);