1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : ioc_driver.c |
---|
3 | // Date : 23/05/2013 |
---|
4 | // Author : alain greiner |
---|
5 | // Maintainer : cesar fuguet |
---|
6 | // Copyright (c) UPMC-LIP6 |
---|
7 | /////////////////////////////////////////////////////////////////////////////////// |
---|
8 | // Implementation notes: |
---|
9 | // 1) In order to share the code, the two _ioc_read() and _ioc_write() functions |
---|
10 | // call the same _ioc_access() function, and this function call the selected |
---|
11 | // physical driver (BDV / HBA / SPI / RDK). |
---|
12 | // 2) The IOMMU is not supported yet, but the method is the following: |
---|
13 | // A fixed size 2 Mbytes vseg is allocated to the IOC peripheral, in the I/O |
---|
14 | // virtual space, and the user buffer is dynamically remapped to one single |
---|
15 | // big page in the IOMMU page table. |
---|
16 | // The user buffer is unmapped by the _ioc_completed() function when |
---|
17 | // the transfer is completed. |
---|
18 | /////////////////////////////////////////////////////////////////////////////////// |
---|
19 | |
---|
20 | #include <giet_config.h> |
---|
21 | #include <ioc_driver.h> |
---|
22 | #include <bdv_driver.h> |
---|
23 | #include <hba_driver.h> |
---|
24 | #include <sdc_driver.h> |
---|
25 | #include <rdk_driver.h> |
---|
26 | #include <utils.h> |
---|
27 | #include <tty0.h> |
---|
28 | #include <iob_driver.h> |
---|
29 | #include <ctx_handler.h> |
---|
30 | #include <mmc_driver.h> |
---|
31 | #include <vmem.h> |
---|
32 | |
---|
33 | #if !defined( SEG_IOC_BASE ) |
---|
34 | # error: You must define SEG_IOC_BASE in the hard_config.h file |
---|
35 | #endif |
---|
36 | |
---|
37 | #if !defined( USE_IOB ) |
---|
38 | # error: You must define USE_IOB in the hard_config.h file |
---|
39 | #endif |
---|
40 | |
---|
41 | #if !defined(GIET_USE_IOMMU) |
---|
42 | # error: You must define GIET_USE_IOMMU in the giet_config.h file |
---|
43 | #endif |
---|
44 | |
---|
45 | #if (USE_IOC_BDV + USE_IOC_SPI + USE_IOC_HBA + USE_IOC_RDK) != 1 |
---|
46 | # error: You must use only one IOC controller type (BDV or SPI or HBA or RDK) |
---|
47 | #endif |
---|
48 | |
---|
49 | #if USE_IOC_BDV |
---|
50 | # include <bdv_driver.h> |
---|
51 | #endif |
---|
52 | |
---|
53 | #if USE_IOC_SPI |
---|
54 | # include <sdc_driver.h> |
---|
55 | #endif |
---|
56 | |
---|
57 | #if USE_IOC_HBA |
---|
58 | # include <hba_driver.h> |
---|
59 | #endif |
---|
60 | |
---|
61 | #if USE_IOC_RDK |
---|
62 | # include <rdk_driver.h> |
---|
63 | #endif |
---|
64 | |
---|
65 | /////////////////////////////////////////////////////////////////////////////// |
---|
66 | // IOC global variables |
---|
67 | /////////////////////////////////////////////////////////////////////////////// |
---|
68 | |
---|
69 | __attribute__((section (".kdata"))) |
---|
70 | volatile unsigned int _ioc_iommu_ix1 = 0; |
---|
71 | |
---|
72 | __attribute__((section (".kdata"))) |
---|
73 | volatile unsigned int _ioc_iommu_npages; |
---|
74 | |
---|
75 | /////////////////////////////////////////////////////////////////////////////// |
---|
76 | // This function transfer data between a memory buffer and the block device. |
---|
77 | // The buffer lentgth is (count*block_size) bytes. |
---|
78 | // Arguments are: |
---|
79 | // - to_mem : from external storage to memory when non 0. |
---|
80 | // - mode : BOOT_PA / BOOT_VA / KERNEL / USER |
---|
81 | // - lba : first block index on the external storage. |
---|
82 | // - buf_vaddr : virtual base address of the memory buffer. |
---|
83 | // - count : number of blocks to be transfered. |
---|
84 | // Returns 0 if success, > 0 if error. |
---|
85 | /////////////////////////////////////////////////////////////////////////////// |
---|
86 | static unsigned int _ioc_access( unsigned int to_mem, |
---|
87 | unsigned int channel, |
---|
88 | unsigned int mode, |
---|
89 | unsigned int lba, |
---|
90 | unsigned int buf_vaddr, |
---|
91 | unsigned int count) |
---|
92 | { |
---|
93 | |
---|
94 | #if GIET_DEBUG_IOC_DRIVER |
---|
95 | unsigned int procid = _get_procid(); |
---|
96 | unsigned int x = procid >> (Y_WIDTH + P_WIDTH); |
---|
97 | unsigned int y = (procid >> P_WIDTH) & ((1<<Y_WIDTH)-1); |
---|
98 | unsigned int p = procid & ((1<<P_WIDTH)-1); |
---|
99 | _printf("\n[IOC DEBUG] _ioc_access() : P[%d,%d,%d] enters at cycle %d\n" |
---|
100 | " - channel = %d\n" |
---|
101 | " - mode = %d\n" |
---|
102 | " - vaddr = %x\n" |
---|
103 | " - sectors = %d\n" |
---|
104 | " - lba = %x\n", |
---|
105 | x, y , p, _get_proctime(), channel, mode, buf_vaddr, count, lba ); |
---|
106 | #endif |
---|
107 | |
---|
108 | unsigned int error; // return value |
---|
109 | unsigned int pt_vbase; // page table vbase address |
---|
110 | unsigned int ppn; // user buffer first page PPN |
---|
111 | unsigned int flags; // user buffer protection flags |
---|
112 | paddr_t buf_paddr; // user buffer physical address (if no IOMMU), |
---|
113 | |
---|
114 | // check buffer alignment |
---|
115 | if ((unsigned int) buf_vaddr & 0x3) |
---|
116 | { |
---|
117 | _puts("\n[IOC ERROR] in _ioc_access() : buffer not word aligned\n"); |
---|
118 | _exit(); |
---|
119 | } |
---|
120 | |
---|
121 | // check channel |
---|
122 | if ( (USE_IOC_HBA == 0) && (channel > 0) ) |
---|
123 | { |
---|
124 | _puts("\n[IOC ERROR] in _ioc_access() : channel must be 0 when HBA not used\n"); |
---|
125 | _exit(); |
---|
126 | } |
---|
127 | |
---|
128 | unsigned int length = count << 9; // count * 512 bytes |
---|
129 | |
---|
130 | // computing memory buffer physical address |
---|
131 | if ( (mode == IOC_BOOT_MODE) && ((_get_mmu_mode() & 0x4) == 0) ) // identity |
---|
132 | { |
---|
133 | buf_paddr = (paddr_t)buf_vaddr; |
---|
134 | } |
---|
135 | else // V2P translation required |
---|
136 | { |
---|
137 | // get page table virtual address |
---|
138 | pt_vbase = _get_context_slot(CTX_PTAB_ID); |
---|
139 | |
---|
140 | // get user buffer first page ppn and flags |
---|
141 | _v2p_translate( (page_table_t*)pt_vbase, |
---|
142 | buf_vaddr >> 12, |
---|
143 | &ppn, |
---|
144 | &flags ); |
---|
145 | |
---|
146 | // check access rights |
---|
147 | if ( (mode == IOC_USER_MODE) && ((flags & PTE_U) == 0) ) |
---|
148 | { |
---|
149 | _puts("\n[IOC ERROR] in _ioc_access() : buffer not user accessible\n"); |
---|
150 | _exit(); |
---|
151 | } |
---|
152 | |
---|
153 | if ( ((flags & PTE_W) == 0 ) && to_mem ) |
---|
154 | { |
---|
155 | _puts("\n[IOC ERROR] in _ioc_access() : buffer not writable\n"); |
---|
156 | _exit(); |
---|
157 | } |
---|
158 | |
---|
159 | buf_paddr = (((paddr_t)ppn) << 12) | (buf_vaddr & 0xFFF); |
---|
160 | } |
---|
161 | |
---|
162 | // cache coherence for both L1 & L2 caches |
---|
163 | |
---|
164 | if ( to_mem ) // memory write : invalidate data caches |
---|
165 | { |
---|
166 | // L1 cache (only if L1 cache coherence not guaranteed by hardware) |
---|
167 | if ( GIET_NO_HARD_CC ) _dcache_buf_invalidate( buf_vaddr, length ); |
---|
168 | |
---|
169 | // L2 cache (only if we use an IO-Bridge component in architecture)) |
---|
170 | if ( USE_IOB ) _mmc_inval( buf_paddr, length ); |
---|
171 | } |
---|
172 | else // memory read : update data caches |
---|
173 | { |
---|
174 | // L1 cache : nothing to do for L1 write-through |
---|
175 | |
---|
176 | // L2 cache (only if we use an IO-Bridge component in architecture)) |
---|
177 | if ( USE_IOB ) _mmc_sync( buf_paddr, length ); |
---|
178 | } |
---|
179 | |
---|
180 | // select the proper physical device |
---|
181 | |
---|
182 | #if ( USE_IOC_BDV ) |
---|
183 | if (to_mem) error = _bdv_read ( mode, lba, buf_paddr, count); |
---|
184 | else error = _bdv_write( mode, lba, buf_paddr, count); |
---|
185 | #elif ( USE_IOC_SPI ) |
---|
186 | if (to_mem) error = _sdc_read (mode, lba, buf_paddr, count); |
---|
187 | else error = _sdc_write(mode, lba, buf_paddr, count); |
---|
188 | #elif ( USE_IOC_HBA ) |
---|
189 | if (to_mem) error = _hba_read (channel, mode, lba, buf_paddr, count); |
---|
190 | else error = _hba_write(channel, mode, lba, buf_paddr, count); |
---|
191 | #elif ( USE_IOC_RDK ) |
---|
192 | if (to_mem) error = _rdk_read (lba, buf_vaddr, count); |
---|
193 | else error = _rdk_write(lba, buf_vaddr, count); |
---|
194 | #endif |
---|
195 | |
---|
196 | return error; |
---|
197 | } // end _ioc_access() |
---|
198 | |
---|
199 | ////////////////////////////////////////////// |
---|
200 | unsigned int _ioc_init( unsigned int channel ) |
---|
201 | { |
---|
202 | |
---|
203 | #if ( USE_IOC_BDV ) |
---|
204 | |
---|
205 | return _bdv_init(); |
---|
206 | |
---|
207 | #elif ( USE_IOC_SPI ) |
---|
208 | |
---|
209 | return _sdc_init(); |
---|
210 | |
---|
211 | #elif ( USE_IOC_HBA ) |
---|
212 | |
---|
213 | return _hba_init( channel ); |
---|
214 | |
---|
215 | #elif ( USE_IOC_RDK ) |
---|
216 | |
---|
217 | return _rdk_init(); |
---|
218 | |
---|
219 | #endif |
---|
220 | |
---|
221 | } |
---|
222 | |
---|
223 | ////////////////////////////////////////////// |
---|
224 | unsigned int _ioc_read( unsigned int channel, |
---|
225 | unsigned int mode, |
---|
226 | unsigned int lba, |
---|
227 | void* buffer, |
---|
228 | unsigned int count) |
---|
229 | { |
---|
230 | return _ioc_access( 1, // read access |
---|
231 | channel, |
---|
232 | mode, |
---|
233 | lba, |
---|
234 | (unsigned int) buffer, |
---|
235 | count ); |
---|
236 | } |
---|
237 | |
---|
238 | ////////////////////////////////////////////// |
---|
239 | unsigned int _ioc_write( unsigned int channel, |
---|
240 | unsigned int mode, |
---|
241 | unsigned int lba, |
---|
242 | const void* buffer, |
---|
243 | unsigned int count ) |
---|
244 | { |
---|
245 | return _ioc_access( 0, // write access |
---|
246 | channel, |
---|
247 | mode, |
---|
248 | lba, |
---|
249 | (unsigned int) buffer, |
---|
250 | count ); |
---|
251 | } |
---|
252 | |
---|
253 | ///////////////////////////////////////////////////// |
---|
254 | unsigned int _ioc_get_status( unsigned int channel ) |
---|
255 | { |
---|
256 | |
---|
257 | #if ( USE_IOC_BDV ) |
---|
258 | |
---|
259 | return _bdv_get_status( ); |
---|
260 | |
---|
261 | #elif ( USE_IOC_SPI ) |
---|
262 | |
---|
263 | return _sdc_get_status( ); |
---|
264 | |
---|
265 | #elif ( USE_IOC_HBA ) |
---|
266 | |
---|
267 | return _hba_get_status( channel ); |
---|
268 | |
---|
269 | #elif ( USE_IOC_RDK ) |
---|
270 | |
---|
271 | return _rdk_get_status(); |
---|
272 | |
---|
273 | #endif |
---|
274 | |
---|
275 | } |
---|
276 | |
---|
277 | ////////////////////////////////// |
---|
278 | unsigned int _ioc_get_block_size() |
---|
279 | { |
---|
280 | |
---|
281 | #if ( USE_IOC_BDV ) |
---|
282 | |
---|
283 | return _bdv_get_block_size(); |
---|
284 | |
---|
285 | #elif ( USE_IOC_SPI ) |
---|
286 | |
---|
287 | return _sdc_get_block_size(); |
---|
288 | |
---|
289 | #elif ( USE_IOC_HBA ) |
---|
290 | |
---|
291 | return _hba_get_block_size(); |
---|
292 | |
---|
293 | #elif ( USE_IOC_RDK ) |
---|
294 | |
---|
295 | return 512; |
---|
296 | |
---|
297 | #endif |
---|
298 | |
---|
299 | } |
---|
300 | |
---|
301 | |
---|
302 | // Local Variables: |
---|
303 | // tab-width: 4 |
---|
304 | // c-basic-offset: 4 |
---|
305 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
306 | // indent-tabs-mode: nil |
---|
307 | // End: |
---|
308 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
309 | |
---|