io_driver.h 3.33 KB
Newer Older
James Morrissey's avatar
James Morrissey committed
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
/*
 * Copyright (c) 2014, ARM Limited and Contributors. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef __IO_DRIVER_H__
#define __IO_DRIVER_H__

34
#include <platform.h>   /* For MAX_IO_DEVICES */
James Morrissey's avatar
James Morrissey committed
35
36
37
38


/* Generic IO entity structure,representing an accessible IO construct on the
 * device, such as a file */
39
typedef struct io_entity {
James Morrissey's avatar
James Morrissey committed
40
41
	io_dev_handle dev_handle;
	uintptr_t info;
42
} io_entity_t;
James Morrissey's avatar
James Morrissey committed
43
44
45
46


/* Device info structure, providing device-specific functions and a means of
 * adding driver-specific state */
47
typedef struct io_dev_info {
James Morrissey's avatar
James Morrissey committed
48
49
	struct io_dev_funcs *funcs;
	uintptr_t info;
50
} io_dev_info_t;
James Morrissey's avatar
James Morrissey committed
51
52
53


/* Structure used to create a connection to a type of device */
54
typedef struct io_dev_connector {
James Morrissey's avatar
James Morrissey committed
55
	/* dev_open opens a connection to a particular device driver */
56
57
	int (*dev_open)(void *spec, io_dev_info_t **dev_info);
} io_dev_connector_t;
James Morrissey's avatar
James Morrissey committed
58
59
60


/* Structure to hold device driver function pointers */
61
62
63
64
65
66
67
typedef struct io_dev_funcs {
	io_type_t (*type)(void);
	int (*open)(io_dev_info_t *dev_info, const void *spec,
			io_entity_t *entity);
	int (*seek)(io_entity_t *entity, int mode, ssize_t offset);
	int (*size)(io_entity_t *entity, size_t *length);
	int (*read)(io_entity_t *entity, void *buffer, size_t length,
James Morrissey's avatar
James Morrissey committed
68
			size_t *length_read);
69
	int (*write)(io_entity_t *entity, const void *buffer,
James Morrissey's avatar
James Morrissey committed
70
			size_t length, size_t *length_written);
71
72
73
74
	int (*close)(io_entity_t *entity);
	int (*dev_init)(io_dev_info_t *dev_info, const void *init_params);
	int (*dev_close)(io_dev_info_t *dev_info);
} io_dev_funcs_t;
James Morrissey's avatar
James Morrissey committed
75
76
77
78


/* IO platform data - used to track devices registered for a specific
 * platform */
79
80
typedef struct io_plat_data {
	io_dev_info_t *devices[MAX_IO_DEVICES];
James Morrissey's avatar
James Morrissey committed
81
	unsigned int dev_count;
82
} io_plat_data_t;
James Morrissey's avatar
James Morrissey committed
83
84
85
86
87


/* Operations intended to be performed during platform initialisation */

/* Initialise the IO layer */
88
void io_init(io_plat_data_t *data);
James Morrissey's avatar
James Morrissey committed
89
90

/* Register a device driver */
91
int io_register_device(io_dev_info_t *dev_info);
James Morrissey's avatar
James Morrissey committed
92
93

#endif  /* __IO_DRIVER_H__ */