source: soft/giet_vm/giet_drivers/ioc_driver.c @ 413

Last change on this file since 413 was 413, checked in by alain, 10 years ago

Introducing support for the PIC_MASK register in pic_driver.

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