blob: 071feaa30adc6094a995738a0b812a7f0b7b5a34 [file] [log] [blame]
Russell Kinga09e64f2008-08-05 16:14:15 +01001/*
2 * arch/arm/mach-ep93xx/include/mach/ts72xx.h
3 */
4
5/*
6 * TS72xx memory map:
7 *
8 * virt phys size
Petr Štetiar505ed6f2011-06-17 11:11:59 +01009 * febff000 22000000 4K model number register (bits 0-2)
Russell Kinga09e64f2008-08-05 16:14:15 +010010 * febfe000 22400000 4K options register
11 * febfd000 22800000 4K options register #2
Russell Kinga09e64f2008-08-05 16:14:15 +010012 * febf9000 10800000 4K TS-5620 RTC index register
13 * febf8000 11700000 4K TS-5620 RTC data register
14 */
15
16#define TS72XX_MODEL_PHYS_BASE 0x22000000
Arnd Bergmann29fe6512012-09-14 23:34:32 +020017#define TS72XX_MODEL_VIRT_BASE IOMEM(0xfebff000)
Russell Kinga09e64f2008-08-05 16:14:15 +010018#define TS72XX_MODEL_SIZE 0x00001000
19
20#define TS72XX_MODEL_TS7200 0x00
21#define TS72XX_MODEL_TS7250 0x01
22#define TS72XX_MODEL_TS7260 0x02
Petr Štetiar2a004c62011-06-17 11:09:07 +010023#define TS72XX_MODEL_TS7300 0x03
24#define TS72XX_MODEL_TS7400 0x04
Petr Štetiar505ed6f2011-06-17 11:11:59 +010025#define TS72XX_MODEL_MASK 0x07
Russell Kinga09e64f2008-08-05 16:14:15 +010026
27
28#define TS72XX_OPTIONS_PHYS_BASE 0x22400000
Arnd Bergmann29fe6512012-09-14 23:34:32 +020029#define TS72XX_OPTIONS_VIRT_BASE IOMEM(0xfebfe000)
Russell Kinga09e64f2008-08-05 16:14:15 +010030#define TS72XX_OPTIONS_SIZE 0x00001000
31
32#define TS72XX_OPTIONS_COM2_RS485 0x02
33#define TS72XX_OPTIONS_MAX197 0x01
34
35
36#define TS72XX_OPTIONS2_PHYS_BASE 0x22800000
Arnd Bergmann29fe6512012-09-14 23:34:32 +020037#define TS72XX_OPTIONS2_VIRT_BASE IOMEM(0xfebfd000)
Russell Kinga09e64f2008-08-05 16:14:15 +010038#define TS72XX_OPTIONS2_SIZE 0x00001000
39
40#define TS72XX_OPTIONS2_TS9420 0x04
41#define TS72XX_OPTIONS2_TS9420_BOOT 0x02
42
43
Arnd Bergmann29fe6512012-09-14 23:34:32 +020044#define TS72XX_RTC_INDEX_VIRT_BASE IOMEM(0xfebf9000)
Russell Kinga09e64f2008-08-05 16:14:15 +010045#define TS72XX_RTC_INDEX_PHYS_BASE 0x10800000
46#define TS72XX_RTC_INDEX_SIZE 0x00001000
47
Arnd Bergmann29fe6512012-09-14 23:34:32 +020048#define TS72XX_RTC_DATA_VIRT_BASE IOMEM(0xfebf8000)
Russell Kinga09e64f2008-08-05 16:14:15 +010049#define TS72XX_RTC_DATA_PHYS_BASE 0x11700000
50#define TS72XX_RTC_DATA_SIZE 0x00001000
51
Mika Westerberg12926dc2009-11-29 17:03:03 +020052#define TS72XX_WDT_CONTROL_PHYS_BASE 0x23800000
53#define TS72XX_WDT_FEED_PHYS_BASE 0x23c00000
Russell Kinga09e64f2008-08-05 16:14:15 +010054
55#ifndef __ASSEMBLY__
Russell Kinga09e64f2008-08-05 16:14:15 +010056
Petr Štetiar505ed6f2011-06-17 11:11:59 +010057static inline int ts72xx_model(void)
58{
59 return __raw_readb(TS72XX_MODEL_VIRT_BASE) & TS72XX_MODEL_MASK;
60}
61
Russell Kinga09e64f2008-08-05 16:14:15 +010062static inline int board_is_ts7200(void)
63{
Petr Štetiar505ed6f2011-06-17 11:11:59 +010064 return ts72xx_model() == TS72XX_MODEL_TS7200;
Russell Kinga09e64f2008-08-05 16:14:15 +010065}
66
67static inline int board_is_ts7250(void)
68{
Petr Štetiar505ed6f2011-06-17 11:11:59 +010069 return ts72xx_model() == TS72XX_MODEL_TS7250;
Russell Kinga09e64f2008-08-05 16:14:15 +010070}
71
72static inline int board_is_ts7260(void)
73{
Petr Štetiar505ed6f2011-06-17 11:11:59 +010074 return ts72xx_model() == TS72XX_MODEL_TS7260;
Russell Kinga09e64f2008-08-05 16:14:15 +010075}
76
Petr Štetiar2a004c62011-06-17 11:09:07 +010077static inline int board_is_ts7300(void)
78{
Petr Štetiar505ed6f2011-06-17 11:11:59 +010079 return ts72xx_model() == TS72XX_MODEL_TS7300;
Petr Štetiar2a004c62011-06-17 11:09:07 +010080}
81
82static inline int board_is_ts7400(void)
83{
Petr Štetiar505ed6f2011-06-17 11:11:59 +010084 return ts72xx_model() == TS72XX_MODEL_TS7400;
Petr Štetiar2a004c62011-06-17 11:09:07 +010085}
86
Russell Kinga09e64f2008-08-05 16:14:15 +010087static inline int is_max197_installed(void)
88{
89 return !!(__raw_readb(TS72XX_OPTIONS_VIRT_BASE) &
90 TS72XX_OPTIONS_MAX197);
91}
92
93static inline int is_ts9420_installed(void)
94{
95 return !!(__raw_readb(TS72XX_OPTIONS2_VIRT_BASE) &
96 TS72XX_OPTIONS2_TS9420);
97}
98#endif