mach-vr1000.c 8.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2003-2008 Simtec Electronics
L
Linus Torvalds 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *   Ben Dooks <ben@simtec.co.uk>
 *
 * Machine support for Thorcom VR1000 board. Designed for Thorcom by
 * Simtec Electronics, http://www.simtec.co.uk/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
*/

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/interrupt.h>
#include <linux/list.h>
#include <linux/timer.h>
#include <linux/init.h>
20
#include <linux/gpio.h>
21
#include <linux/dm9000.h>
22
#include <linux/i2c.h>
L
Linus Torvalds 已提交
23 24 25 26 27

#include <linux/serial.h>
#include <linux/tty.h>
#include <linux/serial_8250.h>
#include <linux/serial_reg.h>
28
#include <linux/io.h>
L
Linus Torvalds 已提交
29 30 31 32 33 34 35 36

#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/irq.h>

#include <asm/irq.h>
#include <asm/mach-types.h>

37
#include <linux/platform_data/leds-s3c24xx.h>
38 39 40 41 42
#include <linux/platform_data/i2c-s3c2410.h>
#include <linux/platform_data/asoc-s3c24xx_simtec.h>

#include <mach/hardware.h>
#include <mach/regs-gpio.h>
L
Linus Torvalds 已提交
43

44
#include <plat/clock.h>
45
#include <plat/cpu.h>
46 47
#include <plat/devs.h>
#include <plat/regs-serial.h>
48
#include <plat/samsung-time.h>
49

50
#include "bast.h"
51
#include "common.h"
52
#include "simtec.h"
53
#include "vr1000.h"
L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62

/* 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 */

63 64 65 66
#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))
L
Linus Torvalds 已提交
67 68 69

static struct map_desc vr1000_iodesc[] __initdata = {
  /* ISA IO areas */
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 95 96 97 98 99 100 101 102 103
  {
	  .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,
  },
L
Linus Torvalds 已提交
104 105 106 107 108 109
};

#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

110
static struct s3c2410_uartcfg vr1000_uartcfgs[] __initdata = {
L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
	[0] = {
		.hwport	     = 0,
		.flags	     = 0,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
	[1] = {
		.hwport	     = 1,
		.flags	     = 0,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	},
	/* port 2 is not actually used */
	[2] = {
		.hwport	     = 2,
		.flags	     = 0,
		.ucon	     = UCON,
		.ulcon	     = ULCON,
		.ufcon	     = UFCON,
	}
};

/* 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),
144
		.irq		= VR1000_IRQ_SERIAL + 0,
L
Linus Torvalds 已提交
145 146 147 148 149 150 151
		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
		.iotype		= UPIO_MEM,
		.regshift	= 0,
		.uartclk	= VR1000_BAUDBASE,
	},
	[1] = {
		.mapbase	= VR1000_SERIAL_MAPBASE(1),
152
		.irq		= VR1000_IRQ_SERIAL + 1,
L
Linus Torvalds 已提交
153 154 155 156 157 158 159
		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
		.iotype		= UPIO_MEM,
		.regshift	= 0,
		.uartclk	= VR1000_BAUDBASE,
	},
	[2] = {
		.mapbase	= VR1000_SERIAL_MAPBASE(2),
160
		.irq		= VR1000_IRQ_SERIAL + 2,
L
Linus Torvalds 已提交
161 162 163 164 165 166 167
		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
		.iotype		= UPIO_MEM,
		.regshift	= 0,
		.uartclk	= VR1000_BAUDBASE,
	},
	[3] = {
		.mapbase	= VR1000_SERIAL_MAPBASE(3),
168
		.irq		= VR1000_IRQ_SERIAL + 3,
L
Linus Torvalds 已提交
169 170 171 172 173 174 175 176 177 178
		.flags		= UPF_BOOT_AUTOCONF | UPF_IOREMAP,
		.iotype		= UPIO_MEM,
		.regshift	= 0,
		.uartclk	= VR1000_BAUDBASE,
	},
	{ },
};

static struct platform_device serial_device = {
	.name			= "serial8250",
179
	.id			= PLAT8250_DEV_PLATFORM,
L
Linus Torvalds 已提交
180 181 182 183 184
	.dev			= {
		.platform_data	= serial_platform_data,
	},
};

185 186 187
/* DM9000 ethernet devices */

static struct resource vr1000_dm9k0_resource[] = {
188 189
	[0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000, 4),
	[1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x40, 0x40),
190
	[2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000A, 1, NULL, IORESOURCE_IRQ \
191
						| IORESOURCE_IRQ_HIGHLEVEL),
192 193 194
};

static struct resource vr1000_dm9k1_resource[] = {
195 196
	[0] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0x80, 4),
	[1] = DEFINE_RES_MEM(S3C2410_CS5 + VR1000_PA_DM9000 + 0xC0, 0x40),
197
	[2] = DEFINE_RES_NAMED(VR1000_IRQ_DM9000N, 1, NULL, IORESOURCE_IRQ \
198
						| IORESOURCE_IRQ_HIGHLEVEL),
199 200 201 202 203 204
};

/* for the moment we limit ourselves to 16bit IO until some
 * better IO routines can be written and tested
*/

205
static struct dm9000_plat_data vr1000_dm9k_platdata = {
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	.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,
	}
};

229 230 231 232
/* LEDS */

static struct s3c24xx_led_platdata vr1000_led1_pdata = {
	.name		= "led1",
233
	.gpio		= S3C2410_GPB(0),
234 235 236 237 238
	.def_trigger	= "",
};

static struct s3c24xx_led_platdata vr1000_led2_pdata = {
	.name		= "led2",
239
	.gpio		= S3C2410_GPB(1),
240 241 242 243 244
	.def_trigger	= "",
};

static struct s3c24xx_led_platdata vr1000_led3_pdata = {
	.name		= "led3",
245
	.gpio		= S3C2410_GPB(2),
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
	.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",
267
	.id		= 3,
268 269 270 271 272
	.dev		= {
		.platform_data	= &vr1000_led3_pdata,
	},
};

273 274 275 276 277
/* I2C devices. */

static struct i2c_board_info vr1000_i2c_devs[] __initdata = {
	{
		I2C_BOARD_INFO("tlv320aic23", 0x1a),
278 279
	}, {
		I2C_BOARD_INFO("tmp101", 0x48),
280 281 282 283 284
	}, {
		I2C_BOARD_INFO("m41st87", 0x68),
	},
};

285
/* devices for this board */
L
Linus Torvalds 已提交
286 287

static struct platform_device *vr1000_devices[] __initdata = {
288
	&s3c_device_ohci,
L
Linus Torvalds 已提交
289 290
	&s3c_device_lcd,
	&s3c_device_wdt,
291
	&s3c_device_i2c0,
292
	&s3c_device_adc,
L
Linus Torvalds 已提交
293
	&serial_device,
294
	&vr1000_dm9k0,
295 296 297 298
	&vr1000_dm9k1,
	&vr1000_led1,
	&vr1000_led2,
	&vr1000_led3,
L
Linus Torvalds 已提交
299 300
};

301
static struct clk *vr1000_clocks[] __initdata = {
L
Linus Torvalds 已提交
302 303 304 305 306 307 308 309 310
	&s3c24xx_dclk0,
	&s3c24xx_dclk1,
	&s3c24xx_clkout0,
	&s3c24xx_clkout1,
	&s3c24xx_uclk,
};

static void vr1000_power_off(void)
{
311
	gpio_direction_output(S3C2410_GPB(9), 1);
L
Linus Torvalds 已提交
312 313
}

314
static void __init vr1000_map_io(void)
L
Linus Torvalds 已提交
315 316 317
{
	/* initialise clock sources */

318
	s3c24xx_dclk0.parent = &clk_upll;
L
Linus Torvalds 已提交
319 320 321 322 323 324 325 326 327 328
	s3c24xx_dclk0.rate   = 12*1000*1000;

	s3c24xx_dclk1.parent = NULL;
	s3c24xx_dclk1.rate   = 3692307;

	s3c24xx_clkout0.parent  = &s3c24xx_dclk0;
	s3c24xx_clkout1.parent  = &s3c24xx_dclk1;

	s3c24xx_uclk.parent  = &s3c24xx_clkout1;

329 330
	s3c24xx_register_clocks(vr1000_clocks, ARRAY_SIZE(vr1000_clocks));

L
Linus Torvalds 已提交
331 332 333 334 335
	pm_power_off = vr1000_power_off;

	s3c24xx_init_io(vr1000_iodesc, ARRAY_SIZE(vr1000_iodesc));
	s3c24xx_init_clocks(0);
	s3c24xx_init_uarts(vr1000_uartcfgs, ARRAY_SIZE(vr1000_uartcfgs));
336
	samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
L
Linus Torvalds 已提交
337 338
}

339 340
static void __init vr1000_init(void)
{
341
	s3c_i2c0_set_platdata(NULL);
342
	platform_add_devices(vr1000_devices, ARRAY_SIZE(vr1000_devices));
343

344 345 346
	i2c_register_board_info(0, vr1000_i2c_devs,
				ARRAY_SIZE(vr1000_i2c_devs));

347
	nor_simtec_init();
348
	simtec_audio_add(NULL, true, NULL);
349 350

	WARN_ON(gpio_request(S3C2410_GPB(9), "power off"));
351
}
L
Linus Torvalds 已提交
352 353

MACHINE_START(VR1000, "Thorcom-VR1000")
354
	/* Maintainer: Ben Dooks <ben@simtec.co.uk> */
355
	.atag_offset	= 0x100,
356
	.map_io		= vr1000_map_io,
357
	.init_machine	= vr1000_init,
358
	.init_irq	= s3c2410_init_irq,
359
	.init_time	= samsung_timer_init,
360
	.restart	= s3c2410_restart,
L
Linus Torvalds 已提交
361
MACHINE_END