1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : iob_driver.h |
---|
3 | // Date : 01/11/2013 |
---|
4 | // Author : alain greiner |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _GIET_IOB_DRIVER_H_ |
---|
9 | #define _GIET_IOB_DRIVER_H_ |
---|
10 | |
---|
11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
12 | // TSAR IOB (vci_io_bridge) registers offsets |
---|
13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
14 | |
---|
15 | enum IOB_registers |
---|
16 | { |
---|
17 | IOB_IOMMU_PTPR = 0, /* R/W : Page Table Pointer Register */ |
---|
18 | IOB_IOMMU_ACTIVE = 1, /* R/W : IOMMU activated if not 0 */ |
---|
19 | IOB_IOMMU_BVAR = 2, /* R : Bad Virtual Address (unmapped) */ |
---|
20 | IOB_IOMMU_ETR = 3, /* R : Error Type */ |
---|
21 | IOB_IOMMU_BAD_ID = 4, /* R : Faulty Peripheral Index */ |
---|
22 | IOB_INVAL_PTE = 5, /* W : Invalidate a PTE (virtual address) */ |
---|
23 | IOB_IT_ADDR_IOMMU_LO = 6, /* W/R : 32 LSB bits for IOMMU IT*/ |
---|
24 | IOB_IT_ADDR_IOMMU_HI = 7, /* W/R : 32 MSB bits for IOMMU IT */ |
---|
25 | IOB_IT_ADDRESS_BEGIN = 8, /* R/W : Peripheral IT address (2 32 bits registers) */ |
---|
26 | }; |
---|
27 | |
---|
28 | /////////////////////////////////////////////////////////////////////////////////// |
---|
29 | // TSAR IOB access functions |
---|
30 | /////////////////////////////////////////////////////////////////////////////////// |
---|
31 | |
---|
32 | extern unsigned int _iob_inval_tlb_entry( unsigned int vaddr ); |
---|
33 | |
---|
34 | extern unsigned int _iob_set_iommu_ptpr( unsigned int value ); |
---|
35 | |
---|
36 | /////////////////////////////////////////////////////////////////////////////////// |
---|
37 | |
---|
38 | #endif |
---|
39 | |
---|
40 | // Local Variables: |
---|
41 | // tab-width: 4 |
---|
42 | // c-basic-offset: 4 |
---|
43 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
44 | // indent-tabs-mode: nil |
---|
45 | // End: |
---|
46 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
47 | |
---|