diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-arm/arch-integrator/cm.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-arm/arch-integrator/cm.h')
-rw-r--r-- | include/asm-arm/arch-integrator/cm.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/asm-arm/arch-integrator/cm.h b/include/asm-arm/arch-integrator/cm.h new file mode 100644 index 000000000000..d31c1a71f781 --- /dev/null +++ b/include/asm-arm/arch-integrator/cm.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * update the core module control register. | ||
3 | */ | ||
4 | void cm_control(u32, u32); | ||
5 | |||
6 | #define CM_CTRL_LED (1 << 0) | ||
7 | #define CM_CTRL_nMBDET (1 << 1) | ||
8 | #define CM_CTRL_REMAP (1 << 2) | ||
9 | #define CM_CTRL_RESET (1 << 3) | ||
10 | |||
11 | /* | ||
12 | * Integrator/AP,PP2 specific | ||
13 | */ | ||
14 | #define CM_CTRL_HIGHVECTORS (1 << 4) | ||
15 | #define CM_CTRL_BIGENDIAN (1 << 5) | ||
16 | #define CM_CTRL_FASTBUS (1 << 6) | ||
17 | #define CM_CTRL_SYNC (1 << 7) | ||
18 | |||
19 | /* | ||
20 | * ARM926/946/966 Integrator/CP specific | ||
21 | */ | ||
22 | #define CM_CTRL_LCDBIASEN (1 << 8) | ||
23 | #define CM_CTRL_LCDBIASUP (1 << 9) | ||
24 | #define CM_CTRL_LCDBIASDN (1 << 10) | ||
25 | #define CM_CTRL_LCDMUXSEL_MASK (7 << 11) | ||
26 | #define CM_CTRL_LCDMUXSEL_GENLCD (1 << 11) | ||
27 | #define CM_CTRL_LCDMUXSEL_SHARPLCD1 (3 << 11) | ||
28 | #define CM_CTRL_LCDMUXSEL_SHARPLCD2 (4 << 11) | ||
29 | #define CM_CTRL_LCDMUXSEL_VGA (7 << 11) | ||
30 | #define CM_CTRL_LCDEN0 (1 << 14) | ||
31 | #define CM_CTRL_LCDEN1 (1 << 15) | ||
32 | #define CM_CTRL_STATIC1 (1 << 16) | ||
33 | #define CM_CTRL_STATIC2 (1 << 17) | ||
34 | #define CM_CTRL_STATIC (1 << 18) | ||
35 | #define CM_CTRL_n24BITEN (1 << 19) | ||
36 | #define CM_CTRL_EBIWP (1 << 20) | ||