source: mainline/uspace/lib/c/include/device/hw_res.h@ 7e3581e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7e3581e was 9e470c0, checked in by Jakub Jermar <jakub@…>, 12 years ago

Add IO_RANGE and MEM_RANGE members to distinguish whether the range is
parent-relative or absolute. pio_read/write_n(), pio_enable() and
IRQ pseudocode need to be passed absolute values.

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 * Copyright (c) 2010 Lenka Trochtova
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#ifndef LIBC_DEVICE_HW_RES_H_
36#define LIBC_DEVICE_HW_RES_H_
37
38#include <ipc/dev_iface.h>
39#include <async.h>
40#include <stdbool.h>
41
42#define DMA_MODE_ON_DEMAND 0
43#define DMA_MODE_WRITE (1 << 2)
44#define DMA_MODE_READ (1 << 3)
45#define DMA_MODE_AUTO (1 << 4)
46#define DMA_MODE_DOWN (1 << 5)
47#define DMA_MODE_SINGLE (1 << 6)
48#define DMA_MODE_BLOCK (1 << 7)
49
50/** HW resource provider interface */
51typedef enum {
52 HW_RES_GET_RESOURCE_LIST = 0,
53 HW_RES_ENABLE_INTERRUPT,
54 HW_RES_DMA_CHANNEL_SETUP,
55 HW_RES_DMA_CHANNEL_REMAIN,
56} hw_res_method_t;
57
58/** HW resource types */
59typedef enum {
60 INTERRUPT,
61 IO_RANGE,
62 MEM_RANGE,
63 DMA_CHANNEL_8,
64 DMA_CHANNEL_16,
65} hw_res_type_t;
66
67typedef enum {
68 LITTLE_ENDIAN = 0,
69 BIG_ENDIAN
70} endianness_t;
71
72/** HW resource (e.g. interrupt, memory register, i/o register etc.) */
73typedef struct {
74 hw_res_type_t type;
75 union {
76 struct {
77 uint64_t address;
78 size_t size;
79 bool relative;
80 endianness_t endianness;
81 } mem_range;
82
83 struct {
84 uint64_t address;
85 size_t size;
86 bool relative;
87 endianness_t endianness;
88 } io_range;
89
90 struct {
91 int irq;
92 } interrupt;
93
94 union {
95 unsigned int dma8;
96 unsigned int dma16;
97 } dma_channel;
98 } res;
99} hw_resource_t;
100
101typedef struct {
102 size_t count;
103 hw_resource_t *resources;
104} hw_resource_list_t;
105
106static inline void hw_res_clean_resource_list(hw_resource_list_t *hw_res)
107{
108 if (hw_res->resources != NULL) {
109 free(hw_res->resources);
110 hw_res->resources = NULL;
111 }
112
113 hw_res->count = 0;
114}
115
116extern int hw_res_get_resource_list(async_sess_t *, hw_resource_list_t *);
117extern bool hw_res_enable_interrupt(async_sess_t *);
118
119extern int hw_res_dma_channel_setup(async_sess_t *, unsigned int, uint32_t,
120 uint32_t, uint8_t);
121extern int hw_res_dma_channel_remain(async_sess_t *, unsigned);
122
123#endif
124
125/** @}
126 */
Note: See TracBrowser for help on using the repository browser.