source: mainline/uspace/lib/c/include/device/hw_res.h@ 55a8e0cb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 55a8e0cb was d98d136, checked in by Jan Vesely <jano.vesely@…>, 14 years ago

hw_res: Add support for ISA DMAC channels.

  • Property mode set to 100644
File size: 2.7 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 <bool.h>
41
42/** HW resource provider interface */
43typedef enum {
44 HW_RES_GET_RESOURCE_LIST = 0,
45 HW_RES_ENABLE_INTERRUPT
46} hw_res_method_t;
47
48/** HW resource types */
49typedef enum {
50 INTERRUPT,
51 IO_RANGE,
52 MEM_RANGE,
53 DMA_CHANNEL_8,
54 DMA_CHANNEL_16,
55} hw_res_type_t;
56
57typedef enum {
58 LITTLE_ENDIAN = 0,
59 BIG_ENDIAN
60} endianness_t;
61
62/** HW resource (e.g. interrupt, memory register, i/o register etc.) */
63typedef struct {
64 hw_res_type_t type;
65 union {
66 struct {
67 uint64_t address;
68 endianness_t endianness;
69 size_t size;
70 } mem_range;
71
72 struct {
73 uint64_t address;
74 endianness_t endianness;
75 size_t size;
76 } io_range;
77
78 struct {
79 int irq;
80 } interrupt;
81
82 union {
83 int dma8;
84 int dma16;
85 } dma_channel;
86 } res;
87} hw_resource_t;
88
89typedef struct {
90 size_t count;
91 hw_resource_t *resources;
92} hw_resource_list_t;
93
94static inline void hw_res_clean_resource_list(hw_resource_list_t *hw_res)
95{
96 if (hw_res->resources != NULL) {
97 free(hw_res->resources);
98 hw_res->resources = NULL;
99 }
100
101 hw_res->count = 0;
102}
103
104extern int hw_res_get_resource_list(async_sess_t *, hw_resource_list_t *);
105extern bool hw_res_enable_interrupt(async_sess_t *);
106
107#endif
108
109/** @}
110 */
Note: See TracBrowser for help on using the repository browser.