1 | /////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : mmc_driver.h |
---|
3 | // Date : 01/11/2013 |
---|
4 | // Author : alain greiner |
---|
5 | // Copyright (c) UPMC-LIP6 |
---|
6 | /////////////////////////////////////////////////////////////////////////////////// |
---|
7 | |
---|
8 | #ifndef _GIET_MMC_DRIVERS_H_ |
---|
9 | #define _GIET_MMC_DRIVERS_H_ |
---|
10 | |
---|
11 | /////////////////////////////////////////////////////////////////////////////////// |
---|
12 | // TSAR Memory Cache configuration registers offsets and commands |
---|
13 | /////////////////////////////////////////////////////////////////////////////////// |
---|
14 | |
---|
15 | enum SoclibMemCacheConfigRegs |
---|
16 | { |
---|
17 | MEMC_LOCK, |
---|
18 | MEMC_ADDR_LO, |
---|
19 | MEMC_ADDR_HI, |
---|
20 | MEMC_BUF_LENGTH, |
---|
21 | MEMC_CMD_TYPE |
---|
22 | }; |
---|
23 | |
---|
24 | enum SoclibMemCacheConfigCmd |
---|
25 | { |
---|
26 | MEMC_CMD_NOP, |
---|
27 | MEMC_CMD_INVAL, |
---|
28 | MEMC_CMD_SYNC |
---|
29 | }; |
---|
30 | |
---|
31 | #define MMC_REG(func,idx) ((func<<7)|idx) |
---|
32 | |
---|
33 | /////////////////////////////////////////////////////////////////////////////////// |
---|
34 | // MEMC access functions (for TSAR architecture) |
---|
35 | /////////////////////////////////////////////////////////////////////////////////// |
---|
36 | |
---|
37 | extern void _mmc_inval( unsigned long long buf_paddr, |
---|
38 | unsigned int buf_length ); |
---|
39 | |
---|
40 | extern void _mmc_sync( unsigned long long buf_paddr, |
---|
41 | unsigned int buf_length); |
---|
42 | |
---|
43 | extern void _mmc_isr( unsigned int irq_type, |
---|
44 | unsigned int irq_id, |
---|
45 | unsigned int channel ); |
---|
46 | |
---|
47 | /////////////////////////////////////////////////////////////////////////////////// |
---|
48 | |
---|
49 | #endif |
---|
50 | |
---|
51 | // Local Variables: |
---|
52 | // tab-width: 4 |
---|
53 | // c-basic-offset: 4 |
---|
54 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
55 | // indent-tabs-mode: nil |
---|
56 | // End: |
---|
57 | // vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
58 | |
---|