1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21extern int sm501_unit_power(struct device *dev,
22 unsigned int unit, unsigned int to);
23
24extern unsigned long sm501_set_clock(struct device *dev,
25 int clksrc, unsigned long freq);
26
27extern unsigned long sm501_find_clock(struct device *dev,
28 int clksrc, unsigned long req_freq);
29
30
31
32
33
34
35extern int sm501_misc_control(struct device *dev,
36 unsigned long set, unsigned long clear);
37
38
39
40
41
42
43
44extern unsigned long sm501_modify_reg(struct device *dev,
45 unsigned long reg,
46 unsigned long set,
47 unsigned long clear);
48
49
50
51
52#define SM501FB_FLAG_USE_INIT_MODE (1<<0)
53#define SM501FB_FLAG_DISABLE_AT_EXIT (1<<1)
54#define SM501FB_FLAG_USE_HWCURSOR (1<<2)
55#define SM501FB_FLAG_USE_HWACCEL (1<<3)
56#define SM501FB_FLAG_PANEL_NO_FPEN (1<<4)
57#define SM501FB_FLAG_PANEL_NO_VBIASEN (1<<5)
58#define SM501FB_FLAG_PANEL_INV_FPEN (1<<6)
59#define SM501FB_FLAG_PANEL_INV_VBIASEN (1<<7)
60
61struct sm501_platdata_fbsub {
62 struct fb_videomode *def_mode;
63 unsigned int def_bpp;
64 unsigned long max_mem;
65 unsigned int flags;
66};
67
68enum sm501_fb_routing {
69 SM501_FB_OWN = 0,
70 SM501_FB_CRT_PANEL = 1,
71};
72
73
74
75#define SM501_FBPD_SWAP_FB_ENDIAN (1<<0)
76
77
78
79
80
81
82struct sm501_platdata_fb {
83 enum sm501_fb_routing fb_route;
84 unsigned int flags;
85 struct sm501_platdata_fbsub *fb_crt;
86 struct sm501_platdata_fbsub *fb_pnl;
87};
88
89
90
91
92
93
94
95
96struct sm501_platdata_gpio_i2c {
97 unsigned int bus_num;
98 unsigned int pin_sda;
99 unsigned int pin_scl;
100 int udelay;
101 int timeout;
102};
103
104
105
106
107
108
109
110struct sm501_reg_init {
111 unsigned long set;
112 unsigned long mask;
113};
114
115#define SM501_USE_USB_HOST (1<<0)
116#define SM501_USE_USB_SLAVE (1<<1)
117#define SM501_USE_SSP0 (1<<2)
118#define SM501_USE_SSP1 (1<<3)
119#define SM501_USE_UART0 (1<<4)
120#define SM501_USE_UART1 (1<<5)
121#define SM501_USE_FBACCEL (1<<6)
122#define SM501_USE_AC97 (1<<7)
123#define SM501_USE_I2S (1<<8)
124#define SM501_USE_GPIO (1<<9)
125
126#define SM501_USE_ALL (0xffffffff)
127
128struct sm501_initdata {
129 struct sm501_reg_init gpio_low;
130 struct sm501_reg_init gpio_high;
131 struct sm501_reg_init misc_timing;
132 struct sm501_reg_init misc_control;
133
134 unsigned long devices;
135 unsigned long mclk;
136 unsigned long m1xclk;
137};
138
139
140
141
142
143
144struct sm501_init_gpio {
145 struct sm501_reg_init gpio_data_low;
146 struct sm501_reg_init gpio_data_high;
147 struct sm501_reg_init gpio_ddr_low;
148 struct sm501_reg_init gpio_ddr_high;
149};
150
151#define SM501_FLAG_SUSPEND_OFF (1<<4)
152
153
154
155
156
157
158
159
160
161struct sm501_platdata {
162 struct sm501_initdata *init;
163 struct sm501_init_gpio *init_gpiop;
164 struct sm501_platdata_fb *fb;
165
166 int flags;
167 int gpio_base;
168
169 int (*get_power)(struct device *dev);
170 int (*set_power)(struct device *dev, unsigned int on);
171
172 struct sm501_platdata_gpio_i2c *gpio_i2c;
173 unsigned int gpio_i2c_nr;
174};
175
176#if defined(CONFIG_PPC32)
177#define smc501_readl(addr) ioread32be((addr))
178#define smc501_writel(val, addr) iowrite32be((val), (addr))
179#else
180#define smc501_readl(addr) readl(addr)
181#define smc501_writel(val, addr) writel(val, addr)
182#endif
183