mpp.h (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) | mpp.h (48d99f47a81a66bdd61a348c7fe8df5a7afdf5f3) |
---|---|
1#ifndef __ARCH_ORION5X_MPP_H 2#define __ARCH_ORION5X_MPP_H 3 4#define MPP(_num, _sel, _in, _out, _F5181l, _F5182, _F5281) ( \ 5 /* MPP number */ ((_num) & 0xff) | \ 6 /* MPP select value */ (((_sel) & 0xf) << 8) | \ 7 /* may be input signal */ ((!!(_in)) << 12) | \ 8 /* may be output signal */ ((!!(_out)) << 13) | \ --- 51 unchanged lines hidden (view full) --- 60#define MPP7_PCI_CLK MPP(7, 0x5, 0, 0, 1, 0, 0) 61#define MPP7_SATA_LED MPP(7, 0x5, 0, 0, 0, 1, 0) 62 63#define MPP8_UNUSED MPP(8, 0x0, 0, 0, 1, 1, 1) 64#define MPP8_GPIO MPP(8, 0x0, 1, 1, 1, 1, 1) 65#define MPP8_GIGE MPP(8, 0x1, 0, 0, 1, 1, 1) 66 67#define MPP9_UNUSED MPP(9, 0x0, 0, 0, 1, 1, 1) | 1#ifndef __ARCH_ORION5X_MPP_H 2#define __ARCH_ORION5X_MPP_H 3 4#define MPP(_num, _sel, _in, _out, _F5181l, _F5182, _F5281) ( \ 5 /* MPP number */ ((_num) & 0xff) | \ 6 /* MPP select value */ (((_sel) & 0xf) << 8) | \ 7 /* may be input signal */ ((!!(_in)) << 12) | \ 8 /* may be output signal */ ((!!(_out)) << 13) | \ --- 51 unchanged lines hidden (view full) --- 60#define MPP7_PCI_CLK MPP(7, 0x5, 0, 0, 1, 0, 0) 61#define MPP7_SATA_LED MPP(7, 0x5, 0, 0, 0, 1, 0) 62 63#define MPP8_UNUSED MPP(8, 0x0, 0, 0, 1, 1, 1) 64#define MPP8_GPIO MPP(8, 0x0, 1, 1, 1, 1, 1) 65#define MPP8_GIGE MPP(8, 0x1, 0, 0, 1, 1, 1) 66 67#define MPP9_UNUSED MPP(9, 0x0, 0, 0, 1, 1, 1) |
68#define MPP9_GPIO MPP(9, 0x0, 0, 0, 1, 1, 1) 69#define MPP9_GIGE MPP(9, 0x1, 1, 1, 1, 1, 1) | 68#define MPP9_GPIO MPP(9, 0x0, 1, 1, 1, 1, 1) 69#define MPP9_GIGE MPP(9, 0x1, 0, 0, 1, 1, 1) |
70 71#define MPP10_UNUSED MPP(10, 0x0, 0, 0, 1, 1, 1) 72#define MPP10_GPIO MPP(10, 0x0, 1, 1, 1, 1, 1) 73#define MPP10_GIGE MPP(10, 0x1, 0, 0, 1, 1, 1) 74 75#define MPP11_UNUSED MPP(11, 0x0, 0, 0, 1, 1, 1) 76#define MPP11_GPIO MPP(11, 0x0, 1, 1, 1, 1, 1) 77#define MPP11_GIGE MPP(11, 0x1, 0, 0, 1, 1, 1) --- 52 unchanged lines hidden --- | 70 71#define MPP10_UNUSED MPP(10, 0x0, 0, 0, 1, 1, 1) 72#define MPP10_GPIO MPP(10, 0x0, 1, 1, 1, 1, 1) 73#define MPP10_GIGE MPP(10, 0x1, 0, 0, 1, 1, 1) 74 75#define MPP11_UNUSED MPP(11, 0x0, 0, 0, 1, 1, 1) 76#define MPP11_GPIO MPP(11, 0x0, 1, 1, 1, 1, 1) 77#define MPP11_GIGE MPP(11, 0x1, 0, 0, 1, 1, 1) --- 52 unchanged lines hidden --- |