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-sh/hp6xx |
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-sh/hp6xx')
-rw-r--r-- | include/asm-sh/hp6xx/hp6xx.h | 31 | ||||
-rw-r--r-- | include/asm-sh/hp6xx/ide.h | 8 | ||||
-rw-r--r-- | include/asm-sh/hp6xx/io.h | 10 |
3 files changed, 49 insertions, 0 deletions
diff --git a/include/asm-sh/hp6xx/hp6xx.h b/include/asm-sh/hp6xx/hp6xx.h new file mode 100644 index 000000000000..a26247fd3d87 --- /dev/null +++ b/include/asm-sh/hp6xx/hp6xx.h | |||
@@ -0,0 +1,31 @@ | |||
1 | #ifndef __ASM_SH_HP6XX_H | ||
2 | #define __ASM_SH_HP6XX_H | ||
3 | |||
4 | /* | ||
5 | * Copyright (C) 2003 Andriy Skulysh | ||
6 | */ | ||
7 | |||
8 | #define HP680_TS_IRQ IRQ3_IRQ | ||
9 | |||
10 | #define DAC_LCD_BRIGHTNESS 0 | ||
11 | #define DAC_SPEAKER_VOLUME 1 | ||
12 | |||
13 | #define PHDR_TS_PEN_DOWN 0x08 | ||
14 | |||
15 | #define SCPDR_TS_SCAN_ENABLE 0x20 | ||
16 | #define SCPDR_TS_SCAN_Y 0x02 | ||
17 | #define SCPDR_TS_SCAN_X 0x01 | ||
18 | |||
19 | #define SCPCR_TS_ENABLE 0x405 | ||
20 | #define SCPCR_TS_MASK 0xc0f | ||
21 | |||
22 | #define ADC_CHANNEL_TS_Y 1 | ||
23 | #define ADC_CHANNEL_TS_X 2 | ||
24 | |||
25 | #define HD64461_GPADR_SPEAKER 0x01 | ||
26 | #define HD64461_GPADR_PCMCIA0 (0x02|0x08) | ||
27 | #define HD64461_GPBDR_LCDOFF 0x01 | ||
28 | #define HD64461_GPBDR_LED_RED 0x80 | ||
29 | |||
30 | |||
31 | #endif /* __ASM_SH_HP6XX_H */ | ||
diff --git a/include/asm-sh/hp6xx/ide.h b/include/asm-sh/hp6xx/ide.h new file mode 100644 index 000000000000..570395a5ebe5 --- /dev/null +++ b/include/asm-sh/hp6xx/ide.h | |||
@@ -0,0 +1,8 @@ | |||
1 | #ifndef __ASM_SH_HP6XX_IDE_H | ||
2 | #define __ASM_SH_HP6XX_IDE_H | ||
3 | |||
4 | #define IRQ_CFCARD 93 | ||
5 | #define IRQ_PCMCIA 94 | ||
6 | |||
7 | #endif /* __ASM_SH_HP6XX_IDE_H */ | ||
8 | |||
diff --git a/include/asm-sh/hp6xx/io.h b/include/asm-sh/hp6xx/io.h new file mode 100644 index 000000000000..731798003550 --- /dev/null +++ b/include/asm-sh/hp6xx/io.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef __ASM_SH_HP6XX_IO_H | ||
2 | #define __ASM_SH_HP6XX_IO_H | ||
3 | |||
4 | /* | ||
5 | * Nothing special here.. just use the generic cchip io routines. | ||
6 | */ | ||
7 | #include <asm/hd64461/io.h> | ||
8 | |||
9 | #endif /* __ASM_SH_HP6XX_IO_H */ | ||
10 | |||