Blame view

arch/arm/mach-s3c/mach-vr1000.c 8.69 KB
84b217010   Krzysztof Kozlowski   ARM: S3C24XX: Add...
1
2
3
4
5
6
7
  // SPDX-License-Identifier: GPL-2.0
  //
  // Copyright (c) 2003-2008 Simtec Electronics
  //   Ben Dooks <ben@simtec.co.uk>
  //
  // Machine support for Thorcom VR1000 board. Designed for Thorcom by
  // Simtec Electronics, http://www.simtec.co.uk/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
11
12
13
14
  
  #include <linux/kernel.h>
  #include <linux/types.h>
  #include <linux/interrupt.h>
  #include <linux/list.h>
  #include <linux/timer.h>
  #include <linux/init.h>
ec976d6eb   Ben Dooks   [ARM] S3C24XX: GP...
15
  #include <linux/gpio.h>
f7f611f2b   Linus Walleij   ARM: s3c24xx: led...
16
  #include <linux/gpio/machine.h>
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
17
  #include <linux/dm9000.h>
60d6698bb   Ben Dooks   [ARM] VR1000: Add...
18
  #include <linux/i2c.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
19
20
21
22
23
  
  #include <linux/serial.h>
  #include <linux/tty.h>
  #include <linux/serial_8250.h>
  #include <linux/serial_reg.h>
334a1c70b   Tushar Behera   ARM: SAMSUNG: Rep...
24
  #include <linux/serial_s3c.h>
fced80c73   Russell King   [ARM] Convert asm...
25
  #include <linux/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
29
  
  #include <asm/mach/arch.h>
  #include <asm/mach/map.h>
  #include <asm/mach/irq.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
31
  #include <asm/irq.h>
  #include <asm/mach-types.h>
436d42c61   Arnd Bergmann   ARM: samsung: mov...
32
  #include <linux/platform_data/leds-s3c24xx.h>
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
33
34
  #include <linux/platform_data/i2c-s3c2410.h>
  #include <linux/platform_data/asoc-s3c24xx_simtec.h>
c6ff132d4   Arnd Bergmann   ARM: s3c: make he...
35
36
37
  #include "regs-gpio.h"
  #include "gpio-samsung.h"
  #include "gpio-cfg.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38

c6ff132d4   Arnd Bergmann   ARM: s3c: make he...
39
40
  #include "cpu.h"
  #include "devs.h"
9d529c6e7   Ben Dooks   [ARM] S3C24XX: Ad...
41

bbd7e5e1e   Kukjin Kim   ARM: S3C24XX: mak...
42
  #include "bast.h"
71b9114d2   Arnd Bergmann   ARM: s3c: move in...
43
  #include "s3c24xx.h"
bbd7e5e1e   Kukjin Kim   ARM: S3C24XX: mak...
44
  #include "simtec.h"
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
45
  #include "vr1000.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
49
50
51
52
53
  
  /* macros for virtual address mods for the io space entries */
  #define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
  #define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
  #define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
  #define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
  
  /* macros to modify the physical addresses for io space */
df1ec6dee   Ben Dooks   [ARM] 3125/2: VR1...
54
55
56
57
  #define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
  #define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
  #define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
  #define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
59
60
  
  static struct map_desc vr1000_iodesc[] __initdata = {
    /* ISA IO areas */
df1ec6dee   Ben Dooks   [ARM] 3125/2: VR1...
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
    {
  	  .virtual	= (u32)S3C24XX_VA_ISA_BYTE,
  	  .pfn		= PA_CS2(BAST_PA_ISAIO),
  	  .length	= SZ_16M,
  	  .type		= MT_DEVICE,
    }, {
  	  .virtual	= (u32)S3C24XX_VA_ISA_WORD,
  	  .pfn		= PA_CS3(BAST_PA_ISAIO),
  	  .length	= SZ_16M,
  	  .type		= MT_DEVICE,
    },
  
    /*  CPLD control registers, and external interrupt controls */
    {
  	  .virtual	= (u32)VR1000_VA_CTRL1,
  	  .pfn		= __phys_to_pfn(VR1000_PA_CTRL1),
  	  .length	= SZ_1M,
  	  .type		= MT_DEVICE,
    }, {
  	  .virtual	= (u32)VR1000_VA_CTRL2,
  	  .pfn		= __phys_to_pfn(VR1000_PA_CTRL2),
  	  .length	= SZ_1M,
  	  .type		= MT_DEVICE,
    }, {
  	  .virtual	= (u32)VR1000_VA_CTRL3,
  	  .pfn		= __phys_to_pfn(VR1000_PA_CTRL3),
  	  .length	= SZ_1M,
  	  .type		= MT_DEVICE,
    }, {
  	  .virtual	= (u32)VR1000_VA_CTRL4,
  	  .pfn		= __phys_to_pfn(VR1000_PA_CTRL4),
  	  .length	= SZ_1M,
  	  .type		= MT_DEVICE,
    },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
96
97
98
99
  };
  
  #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
  #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
  #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
66a9b49a3   Ben Dooks   [ARM] 3557/1: S3C...
100
  static struct s3c2410_uartcfg vr1000_uartcfgs[] __initdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
102
103
104
105
106
  	[0] = {
  		.hwport	     = 0,
  		.flags	     = 0,
  		.ucon	     = UCON,
  		.ulcon	     = ULCON,
  		.ufcon	     = UFCON,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
110
111
112
113
  	},
  	[1] = {
  		.hwport	     = 1,
  		.flags	     = 0,
  		.ucon	     = UCON,
  		.ulcon	     = ULCON,
  		.ufcon	     = UFCON,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
116
117
118
119
120
121
  	},
  	/* port 2 is not actually used */
  	[2] = {
  		.hwport	     = 2,
  		.flags	     = 0,
  		.ucon	     = UCON,
  		.ulcon	     = ULCON,
  		.ufcon	     = UFCON,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
125
126
127
128
129
130
131
132
133
  	}
  };
  
  /* definitions for the vr1000 extra 16550 serial ports */
  
  #define VR1000_BAUDBASE (3692307)
  
  #define VR1000_SERIAL_MAPBASE(x) (VR1000_PA_SERIAL + 0x80 + ((x) << 5))
  
  static struct plat_serial8250_port serial_platform_data[] = {
  	[0] = {
  		.mapbase	= VR1000_SERIAL_MAPBASE(0),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
134
  		.irq		= VR1000_IRQ_SERIAL + 0,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
137
138
139
140
141
  		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
  		.iotype		= UPIO_MEM,
  		.regshift	= 0,
  		.uartclk	= VR1000_BAUDBASE,
  	},
  	[1] = {
  		.mapbase	= VR1000_SERIAL_MAPBASE(1),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
142
  		.irq		= VR1000_IRQ_SERIAL + 1,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
143
144
145
146
147
148
149
  		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
  		.iotype		= UPIO_MEM,
  		.regshift	= 0,
  		.uartclk	= VR1000_BAUDBASE,
  	},
  	[2] = {
  		.mapbase	= VR1000_SERIAL_MAPBASE(2),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
150
  		.irq		= VR1000_IRQ_SERIAL + 2,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
155
156
157
  		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
  		.iotype		= UPIO_MEM,
  		.regshift	= 0,
  		.uartclk	= VR1000_BAUDBASE,
  	},
  	[3] = {
  		.mapbase	= VR1000_SERIAL_MAPBASE(3),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
158
  		.irq		= VR1000_IRQ_SERIAL + 3,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
159
160
161
162
163
164
165
166
167
168
  		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
  		.iotype		= UPIO_MEM,
  		.regshift	= 0,
  		.uartclk	= VR1000_BAUDBASE,
  	},
  	{ },
  };
  
  static struct platform_device serial_device = {
  	.name			= "serial8250",
6df29debb   Russell King   [SERIAL] Use an e...
169
  	.id			= PLAT8250_DEV_PLATFORM,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
170
171
172
173
  	.dev			= {
  		.platform_data	= serial_platform_data,
  	},
  };
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
174
175
176
  /* DM9000 ethernet devices */
  
  static struct resource vr1000_dm9k0_resource[] = {
940e46ae2   Tushar Behera   ARM: S3C24XX: Use...
177
178
  	[0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000, 4),
  	[1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x40, 0x40),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
179
  	[2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000A, 1, NULL, IORESOURCE_IRQ \
940e46ae2   Tushar Behera   ARM: S3C24XX: Use...
180
  						| IORESOURCE_IRQ_HIGHLEVEL),
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
181
182
183
  };
  
  static struct resource vr1000_dm9k1_resource[] = {
940e46ae2   Tushar Behera   ARM: S3C24XX: Use...
184
185
  	[0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x80, 4),
  	[1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0xC0, 0x40),
db8304ede   Kukjin Kim   ARM: S3C24XX: mak...
186
  	[2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000N, 1, NULL, IORESOURCE_IRQ \
940e46ae2   Tushar Behera   ARM: S3C24XX: Use...
187
  						| IORESOURCE_IRQ_HIGHLEVEL),
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
188
189
190
191
192
  };
  
  /* for the moment we limit ourselves to 16bit IO until some
   * better IO routines can be written and tested
  */
9f693d7b1   Ben Dooks   [ARM] 2979/2: S3C...
193
  static struct dm9000_plat_data vr1000_dm9k_platdata = {
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  	.flags		= DM9000_PLATF_16BITONLY,
  };
  
  static struct platform_device vr1000_dm9k0 = {
  	.name		= "dm9000",
  	.id		= 0,
  	.num_resources	= ARRAY_SIZE(vr1000_dm9k0_resource),
  	.resource	= vr1000_dm9k0_resource,
  	.dev		= {
  		.platform_data = &vr1000_dm9k_platdata,
  	}
  };
  
  static struct platform_device vr1000_dm9k1 = {
  	.name		= "dm9000",
  	.id		= 1,
  	.num_resources	= ARRAY_SIZE(vr1000_dm9k1_resource),
  	.resource	= vr1000_dm9k1_resource,
  	.dev		= {
  		.platform_data = &vr1000_dm9k_platdata,
  	}
  };
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
216
  /* LEDS */
f7f611f2b   Linus Walleij   ARM: s3c24xx: led...
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
  static struct gpiod_lookup_table vr1000_led1_gpio_table = {
  	.dev_id = "s3c24xx_led.1",
  	.table = {
  		GPIO_LOOKUP("GPB", 0, NULL, GPIO_ACTIVE_HIGH),
  		{ },
  	},
  };
  
  static struct gpiod_lookup_table vr1000_led2_gpio_table = {
  	.dev_id = "s3c24xx_led.2",
  	.table = {
  		GPIO_LOOKUP("GPB", 1, NULL, GPIO_ACTIVE_HIGH),
  		{ },
  	},
  };
  
  static struct gpiod_lookup_table vr1000_led3_gpio_table = {
  	.dev_id = "s3c24xx_led.3",
  	.table = {
  		GPIO_LOOKUP("GPB", 2, NULL, GPIO_ACTIVE_HIGH),
  		{ },
  	},
  };
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
240
241
  static struct s3c24xx_led_platdata vr1000_led1_pdata = {
  	.name		= "led1",
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
242
243
244
245
246
  	.def_trigger	= "",
  };
  
  static struct s3c24xx_led_platdata vr1000_led2_pdata = {
  	.name		= "led2",
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
247
248
249
250
251
  	.def_trigger	= "",
  };
  
  static struct s3c24xx_led_platdata vr1000_led3_pdata = {
  	.name		= "led3",
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
  	.def_trigger	= "",
  };
  
  static struct platform_device vr1000_led1 = {
  	.name		= "s3c24xx_led",
  	.id		= 1,
  	.dev		= {
  		.platform_data	= &vr1000_led1_pdata,
  	},
  };
  
  static struct platform_device vr1000_led2 = {
  	.name		= "s3c24xx_led",
  	.id		= 2,
  	.dev		= {
  		.platform_data	= &vr1000_led2_pdata,
  	},
  };
  
  static struct platform_device vr1000_led3 = {
  	.name		= "s3c24xx_led",
abac08d73   Ben Dooks   [ARM] 4059/1: VR1...
273
  	.id		= 3,
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
274
275
276
277
  	.dev		= {
  		.platform_data	= &vr1000_led3_pdata,
  	},
  };
60d6698bb   Ben Dooks   [ARM] VR1000: Add...
278
279
280
281
282
283
  /* I2C devices. */
  
  static struct i2c_board_info vr1000_i2c_devs[] __initdata = {
  	{
  		I2C_BOARD_INFO("tlv320aic23", 0x1a),
  	}, {
9c3871ca5   Ben Dooks   [ARM] VR1000: Add...
284
285
  		I2C_BOARD_INFO("tmp101", 0x48),
  	}, {
60d6698bb   Ben Dooks   [ARM] VR1000: Add...
286
287
288
  		I2C_BOARD_INFO("m41st87", 0x68),
  	},
  };
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
289
  /* devices for this board */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
290
291
  
  static struct platform_device *vr1000_devices[] __initdata = {
51cb12898   Heiko Stuebner   ARM: S3C24XX: ena...
292
  	&s3c2410_device_dclk,
b813248c6   Ben Dooks   ARM: S3C: Rename ...
293
  	&s3c_device_ohci,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
294
295
  	&s3c_device_lcd,
  	&s3c_device_wdt,
3e1b776c2   Ben Dooks   [ARM] S3C: Make i...
296
  	&s3c_device_i2c0,
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
297
  	&s3c_device_adc,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
  	&serial_device,
d97a666f3   Ben Dooks   [PATCH] ARM: 2729...
299
  	&vr1000_dm9k0,
b2eba6bb4   Ben Dooks   [ARM] 3998/1: VR1...
300
301
302
303
  	&vr1000_dm9k1,
  	&vr1000_led1,
  	&vr1000_led2,
  	&vr1000_led3,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305
306
  static void vr1000_power_off(void)
  {
7614e1d9b   Ben Dooks   ARM: VR1000: Upda...
307
  	gpio_direction_output(S3C2410_GPB(9), 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
  }
5fe10ab19   Ben Dooks   [ARM] 2928/1: S3C...
309
  static void __init vr1000_map_io(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
311
312
313
  	pm_power_off = vr1000_power_off;
  
  	s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
314
  	s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs));
a1342f6a9   Krzysztof Kozlowski   ARM: s3c: Avoid n...
315
  	s3c24xx_set_timer_source(S3C24XX_PWM3, S3C24XX_PWM4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
316
  }
07ee5e7c3   Heiko Stuebner   ARM: S3C24XX: con...
317
318
319
  static void __init vr1000_init_time(void)
  {
  	s3c2410_init_clocks(12000000);
a1342f6a9   Krzysztof Kozlowski   ARM: s3c: Avoid n...
320
  	s3c24xx_timer_init();
07ee5e7c3   Heiko Stuebner   ARM: S3C24XX: con...
321
  }
57e5171c9   Ben Dooks   [ARM] 4325/1: S3C...
322
323
  static void __init vr1000_init(void)
  {
3e1b776c2   Ben Dooks   [ARM] S3C: Make i...
324
  	s3c_i2c0_set_platdata(NULL);
f7f611f2b   Linus Walleij   ARM: s3c24xx: led...
325
326
327
328
329
330
331
332
  
  	/* Disable pull-up on LED lines and register GPIO lookups */
  	s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
  	s3c_gpio_setpull(S3C2410_GPB(1), S3C_GPIO_PULL_NONE);
  	s3c_gpio_setpull(S3C2410_GPB(2), S3C_GPIO_PULL_NONE);
  	gpiod_add_lookup_table(&vr1000_led1_gpio_table);
  	gpiod_add_lookup_table(&vr1000_led2_gpio_table);
  	gpiod_add_lookup_table(&vr1000_led3_gpio_table);
57e5171c9   Ben Dooks   [ARM] 4325/1: S3C...
333
  	platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices));
9d529c6e7   Ben Dooks   [ARM] S3C24XX: Ad...
334

60d6698bb   Ben Dooks   [ARM] VR1000: Add...
335
336
  	i2c_register_board_info(0, vr1000_i2c_devs,
  				ARRAY_SIZE(vr1000_i2c_devs));
9d529c6e7   Ben Dooks   [ARM] S3C24XX: Ad...
337
  	nor_simtec_init();
4d3a3469d   Ben Dooks   ARM: S3C24XX: mac...
338
  	simtec_audio_add(NULL, true, NULL);
7614e1d9b   Ben Dooks   ARM: VR1000: Upda...
339
340
  
  	WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
57e5171c9   Ben Dooks   [ARM] 4325/1: S3C...
341
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
342
343
  
  MACHINE_START(VR1000, "Thorcom-VR1000")
e9dea0c65   Russell King   [PATCH] ARM: Remo...
344
  	/* Maintainer: Ben Dooks <ben@simtec.co.uk> */
69d50710c   Nicolas Pitre   ARM: mach-s3c24*:...
345
  	.atag_offset	= 0x100,
6904b2465   Ben Dooks   [PATCH] ARM: 2765...
346
  	.map_io		= vr1000_map_io,
57e5171c9   Ben Dooks   [ARM] 4325/1: S3C...
347
  	.init_machine	= vr1000_init,
f182aa1df   Heiko Stuebner   ARM: S3C24XX: mov...
348
  	.init_irq	= s3c2410_init_irq,
07ee5e7c3   Heiko Stuebner   ARM: S3C24XX: con...
349
  	.init_time	= vr1000_init_time,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
350
  MACHINE_END