1 | /* |
---|
2 | * hal_drivers.c - Driver initializers for TSAR |
---|
3 | * |
---|
4 | * Copyright (c) 2017 Maxime Villard |
---|
5 | * |
---|
6 | * This file is part of ALMOS-MKH. |
---|
7 | * |
---|
8 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
9 | * under the terms of the GNU General Public License as published by |
---|
10 | * the Free Software Foundation; version 2.0 of the License. |
---|
11 | * |
---|
12 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
15 | * General Public License for more details. |
---|
16 | * |
---|
17 | * You should have received a copy of the GNU General Public License |
---|
18 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
20 | */ |
---|
21 | |
---|
22 | #include <hal_kernel_types.h> |
---|
23 | #include <chdev.h> |
---|
24 | #include <hal_drivers.h> |
---|
25 | #include <printk.h> |
---|
26 | |
---|
27 | #include <soclib_tty.h> |
---|
28 | #include <soclib_mtty.h> |
---|
29 | #include <soclib_pic.h> |
---|
30 | #include <soclib_iob.h> |
---|
31 | #include <soclib_bdv.h> |
---|
32 | #include <soclib_hba.h> |
---|
33 | #include <soclib_mmc.h> |
---|
34 | #include <soclib_nic.h> |
---|
35 | #include <soclib_dma.h> |
---|
36 | |
---|
37 | #include <dev_txt.h> |
---|
38 | #include <dev_pic.h> |
---|
39 | #include <dev_ioc.h> |
---|
40 | #include <dev_mmc.h> |
---|
41 | #include <dev_nic.h> |
---|
42 | #include <dev_dma.h> |
---|
43 | |
---|
44 | /////////////////////////////////////////////////////////////////////////////// |
---|
45 | // TXT |
---|
46 | /////////////////////////////////////////////////////////////////////////////// |
---|
47 | |
---|
48 | ////////////////////////////////////////// |
---|
49 | void hal_drivers_txt_init( chdev_t * txt, |
---|
50 | uint32_t impl ) |
---|
51 | { |
---|
52 | switch (impl) { |
---|
53 | case IMPL_TXT_TTY : { |
---|
54 | soclib_tty_init( txt ); |
---|
55 | break; |
---|
56 | } |
---|
57 | case IMPL_TXT_MTY : { |
---|
58 | soclib_mtty_init( txt ); |
---|
59 | break; |
---|
60 | } |
---|
61 | default : { |
---|
62 | assert( false, "bad implementation" ); |
---|
63 | } |
---|
64 | } |
---|
65 | } |
---|
66 | |
---|
67 | /////////////////////////////////////////////////////////////////////////////// |
---|
68 | // PIC |
---|
69 | /////////////////////////////////////////////////////////////////////////////// |
---|
70 | |
---|
71 | ////////////////////////////////////////// |
---|
72 | void hal_drivers_pic_init( chdev_t * pic, |
---|
73 | uint32_t impl ) |
---|
74 | { |
---|
75 | assert( (impl == IMPL_PIC_SCL), "bad implementation" ); |
---|
76 | |
---|
77 | soclib_pic_init( pic ); |
---|
78 | |
---|
79 | /* update the PIC chdev extension */ |
---|
80 | pic->ext.pic.enable_timer = &soclib_pic_enable_timer; |
---|
81 | pic->ext.pic.enable_ipi = &soclib_pic_enable_ipi; |
---|
82 | pic->ext.pic.enable_irq = &soclib_pic_enable_irq; |
---|
83 | pic->ext.pic.disable_irq = &soclib_pic_disable_irq; |
---|
84 | pic->ext.pic.bind_irq = &soclib_pic_bind_irq; |
---|
85 | pic->ext.pic.send_ipi = &soclib_pic_send_ipi; |
---|
86 | pic->ext.pic.ack_ipi = &soclib_pic_ack_ipi; |
---|
87 | pic->ext.pic.extend_init = &soclib_pic_extend_init; |
---|
88 | } |
---|
89 | |
---|
90 | /////////////////////////////////////////////////////////////////////////////// |
---|
91 | // IOB |
---|
92 | /////////////////////////////////////////////////////////////////////////////// |
---|
93 | |
---|
94 | ////////////////////////////////////////// |
---|
95 | void hal_drivers_iob_init( chdev_t * iob, |
---|
96 | uint32_t impl ) |
---|
97 | { |
---|
98 | assert( (impl == IMPL_IOB_TSR), "bad implementation" ); |
---|
99 | |
---|
100 | soclib_iob_init( iob ); |
---|
101 | |
---|
102 | /* update the IOB chdev extension */ |
---|
103 | iob->ext.iob.set_active = &soclib_iob_set_active; |
---|
104 | iob->ext.iob.set_ptpr = &soclib_iob_set_ptpr; |
---|
105 | iob->ext.iob.inval_page = &soclib_iob_inval_page; |
---|
106 | iob->ext.iob.get_bvar = &soclib_iob_get_bvar; |
---|
107 | iob->ext.iob.get_srcid = &soclib_iob_get_srcid; |
---|
108 | iob->ext.iob.get_error = &soclib_iob_get_error; |
---|
109 | } |
---|
110 | |
---|
111 | /////////////////////////////////////////////////////////////////////////////// |
---|
112 | // IOC |
---|
113 | /////////////////////////////////////////////////////////////////////////////// |
---|
114 | |
---|
115 | ////////////////////////////////////////// |
---|
116 | void hal_drivers_ioc_init( chdev_t * ioc, |
---|
117 | uint32_t impl ) |
---|
118 | { |
---|
119 | if (impl == IMPL_IOC_BDV) |
---|
120 | { |
---|
121 | soclib_bdv_init( ioc ); |
---|
122 | } |
---|
123 | else if (impl == IMPL_IOC_HBA) |
---|
124 | { |
---|
125 | soclib_hba_init( ioc ); |
---|
126 | } |
---|
127 | else |
---|
128 | { |
---|
129 | assert( false , "undefined IOC device implementation" ); |
---|
130 | } |
---|
131 | } |
---|
132 | |
---|
133 | /////////////////////////////////////////////////////////////////////////////// |
---|
134 | // MMC |
---|
135 | /////////////////////////////////////////////////////////////////////////////// |
---|
136 | |
---|
137 | ////////////////////////////////////////// |
---|
138 | void hal_drivers_mmc_init( chdev_t * mmc, |
---|
139 | uint32_t impl ) |
---|
140 | { |
---|
141 | assert( (impl == IMPL_MMC_TSR), "bad implementation" ); |
---|
142 | |
---|
143 | soclib_mmc_init( mmc ); |
---|
144 | } |
---|
145 | |
---|
146 | /////////////////////////////////////////////////////////////////////////////// |
---|
147 | // NIC |
---|
148 | /////////////////////////////////////////////////////////////////////////////// |
---|
149 | |
---|
150 | ////////////////////////////////////////// |
---|
151 | void hal_drivers_nic_init( chdev_t * nic, |
---|
152 | uint32_t impl ) |
---|
153 | { |
---|
154 | assert( (impl == IMPL_NIC_CBF), "bad implementation" ); |
---|
155 | |
---|
156 | soclib_nic_init( nic ); |
---|
157 | } |
---|
158 | |
---|
159 | /////////////////////////////////////////////////////////////////////////////// |
---|
160 | // DMA |
---|
161 | /////////////////////////////////////////////////////////////////////////////// |
---|
162 | |
---|
163 | ////////////////////////////////////////// |
---|
164 | void hal_drivers_dma_init( chdev_t * dma, |
---|
165 | uint32_t impl ) |
---|
166 | { |
---|
167 | assert( (impl == IMPL_DMA_SCL), "bad implementation" ); |
---|
168 | |
---|
169 | soclib_dma_init( dma ); |
---|
170 | } |
---|
171 | |
---|