diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 13:08:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-13 13:08:43 -0400 |
commit | 54cebc68c81eacac41a21bdfe99dc889d3882c60 (patch) | |
tree | da1d3872c6ddf208768e784bd1ea09054a81462d /arch/blackfin/mach-bf537/include | |
parent | fffdedef691a0f6fa7ca1fc0a2a508cbb49def69 (diff) | |
parent | 71de1f8a6365ea65346881e526132563d93696d1 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6: (60 commits)
Blackfin arch: make sure we include the fix for SPORT hysteresis when reprogramming clocks
Blackfin arch: Fix bogus str_ident check in gpio code
Blackfin arch: AD7879 Touchscreen driver
Blackfin arch: introducing bfin_addr_dcachable
Blackfin arch: fix a typo in comments
Blackfin arch: Remove useless head file
Blackfin arch: make sure L2 start and length are always defined (fixes building on BF542)
Blackfin arch: use the Blackfin on-chip ROM to do software reset when possible
Blackfin arch: update anomaly headers to match the latest sheet
Blackfin arch: bfin_reset() is an internal reboot function ... everyone should go through machine_restart()
Blackfin arch: print out error/warning if you are running on the incorrect CPU type
Blackfin arch: remove non-bf54x ifdef logic since this file is only compiled on bf54x parts
Blackfin arch: update board defconfigs
Blackfin arch: Add optional verbose debug
Blackfin arch: emulate a TTY over the EMUDAT/JTAG interface
Blackfin arch: have is_user_addr_valid() check for overflows (like when address is -1)
Blackfin arch: ptrace - fix off-by-one check on end of memory regions
Blackfin arch: Enable framebuffer support for the BF526-EZkit TFT LCD display
Blackfin arch: flash memory map and dm9000 resources updating
Blackfin arch: early prink code still use uart core console functions to parse and set configure option string
...
Diffstat (limited to 'arch/blackfin/mach-bf537/include')
-rw-r--r-- | arch/blackfin/mach-bf537/include/mach/anomaly.h | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf537/include/mach/bf537.h | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/blackfin/mach-bf537/include/mach/anomaly.h b/arch/blackfin/mach-bf537/include/mach/anomaly.h index 8460ab9c324f..c68992494f9e 100644 --- a/arch/blackfin/mach-bf537/include/mach/anomaly.h +++ b/arch/blackfin/mach-bf537/include/mach/anomaly.h | |||
@@ -158,6 +158,8 @@ | |||
158 | #define ANOMALY_05000266 (0) | 158 | #define ANOMALY_05000266 (0) |
159 | #define ANOMALY_05000311 (0) | 159 | #define ANOMALY_05000311 (0) |
160 | #define ANOMALY_05000323 (0) | 160 | #define ANOMALY_05000323 (0) |
161 | #define ANOMALY_05000353 (1) | ||
161 | #define ANOMALY_05000363 (0) | 162 | #define ANOMALY_05000363 (0) |
163 | #define ANOMALY_05000386 (1) | ||
162 | 164 | ||
163 | #endif | 165 | #endif |
diff --git a/arch/blackfin/mach-bf537/include/mach/bf537.h b/arch/blackfin/mach-bf537/include/mach/bf537.h index cfe2a221112e..24d5c9d42323 100644 --- a/arch/blackfin/mach-bf537/include/mach/bf537.h +++ b/arch/blackfin/mach-bf537/include/mach/bf537.h | |||
@@ -30,8 +30,6 @@ | |||
30 | #ifndef __MACH_BF537_H__ | 30 | #ifndef __MACH_BF537_H__ |
31 | #define __MACH_BF537_H__ | 31 | #define __MACH_BF537_H__ |
32 | 32 | ||
33 | #define SUPPORTED_REVID 2 | ||
34 | |||
35 | /* Masks for generic ERROR IRQ demultiplexing used in int-priority-sc.c */ | 33 | /* Masks for generic ERROR IRQ demultiplexing used in int-priority-sc.c */ |
36 | 34 | ||
37 | #define SPI_ERR_MASK (TXCOL | RBSY | MODF | TXE) /* SPI_STAT */ | 35 | #define SPI_ERR_MASK (TXCOL | RBSY | MODF | TXE) /* SPI_STAT */ |
@@ -123,19 +121,19 @@ | |||
123 | 121 | ||
124 | #ifdef CONFIG_BF537 | 122 | #ifdef CONFIG_BF537 |
125 | #define CPU "BF537" | 123 | #define CPU "BF537" |
126 | #define CPUID 0x027c8000 | 124 | #define CPUID 0x27c8 |
127 | #endif | 125 | #endif |
128 | #ifdef CONFIG_BF536 | 126 | #ifdef CONFIG_BF536 |
129 | #define CPU "BF536" | 127 | #define CPU "BF536" |
130 | #define CPUID 0x027c8000 | 128 | #define CPUID 0x27c8 |
131 | #endif | 129 | #endif |
132 | #ifdef CONFIG_BF534 | 130 | #ifdef CONFIG_BF534 |
133 | #define CPU "BF534" | 131 | #define CPU "BF534" |
134 | #define CPUID 0x027c6000 | 132 | #define CPUID 0x27c6 |
135 | #endif | 133 | #endif |
134 | |||
136 | #ifndef CPU | 135 | #ifndef CPU |
137 | #define CPU "UNKNOWN" | 136 | #error Unknown CPU type - This kernel doesn't seem to be configured properly |
138 | #define CPUID 0x0 | ||
139 | #endif | 137 | #endif |
140 | 138 | ||
141 | #endif /* __MACH_BF537_H__ */ | 139 | #endif /* __MACH_BF537_H__ */ |