devices-rsk7203.c 2.5 KB
Newer Older
P
Paul Mundt 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Renesas Technology Europe RSK+ 7203 Support.
 *
 * Copyright (C) 2008 Paul Mundt
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/init.h>
#include <linux/types.h>
#include <linux/platform_device.h>
13
#include <linux/interrupt.h>
P
Paul Mundt 已提交
14 15 16 17
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/physmap.h>
#include <linux/mtd/map.h>
18
#include <linux/smsc911x.h>
M
Magnus Damm 已提交
19
#include <linux/gpio.h>
20
#include <linux/leds.h>
P
Paul Mundt 已提交
21 22
#include <asm/machvec.h>
#include <asm/io.h>
P
Paul Mundt 已提交
23
#include <cpu/sh7203.h>
P
Paul Mundt 已提交
24

25 26 27 28
static struct smsc911x_platform_config smsc911x_config = {
	.phy_interface	= PHY_INTERFACE_MODE_MII,
	.irq_polarity	= SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
	.irq_type	= SMSC911X_IRQ_TYPE_OPEN_DRAIN,
29
	.flags		= SMSC911X_USE_32BIT | SMSC911X_SWAP_FIFO,
30 31
};

32
static struct resource smsc911x_resources[] = {
P
Paul Mundt 已提交
33 34
	[0] = {
		.start		= 0x24000000,
35
		.end		= 0x240000ff,
P
Paul Mundt 已提交
36 37 38 39 40 41 42 43 44
		.flags		= IORESOURCE_MEM,
	},
	[1] = {
		.start		= 64,
		.end		= 64,
		.flags		= IORESOURCE_IRQ,
	},
};

45 46
static struct platform_device smsc911x_device = {
	.name		= "smsc911x",
P
Paul Mundt 已提交
47
	.id		= -1,
48 49
	.num_resources	= ARRAY_SIZE(smsc911x_resources),
	.resource	= smsc911x_resources,
50
	.dev		= {
51
		.platform_data = &smsc911x_config,
52
	},
P
Paul Mundt 已提交
53 54
};

55 56 57 58 59 60 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
static struct gpio_led rsk7203_gpio_leds[] = {
	{
		.name			= "green",
		.gpio			= GPIO_PE10,
		.active_low		= 1,
	}, {
		.name			= "orange",
		.default_trigger	= "nand-disk",
		.gpio			= GPIO_PE12,
		.active_low		= 1,
	}, {
		.name			= "red:timer",
		.default_trigger	= "timer",
		.gpio			= GPIO_PC14,
		.active_low		= 1,
	}, {
		.name			= "red:heartbeat",
		.default_trigger	= "heartbeat",
		.gpio			= GPIO_PE11,
		.active_low		= 1,
	},
};

static struct gpio_led_platform_data rsk7203_gpio_leds_info = {
	.leds		= rsk7203_gpio_leds,
	.num_leds	= ARRAY_SIZE(rsk7203_gpio_leds),
};

static struct platform_device led_device = {
	.name		= "leds-gpio",
	.id		= -1,
	.dev		= {
		.platform_data	= &rsk7203_gpio_leds_info,
	},
};
P
Paul Mundt 已提交
90 91

static struct platform_device *rsk7203_devices[] __initdata = {
92
	&smsc911x_device,
93
	&led_device,
P
Paul Mundt 已提交
94 95 96 97
};

static int __init rsk7203_devices_setup(void)
{
M
Magnus Damm 已提交
98 99 100 101
	/* Select pins for SCIF0 */
	gpio_request(GPIO_FN_TXD0, NULL);
	gpio_request(GPIO_FN_RXD0, NULL);

102 103 104 105
	/* Setup LAN9118: CS1 in 16-bit Big Endian Mode, IRQ0 at Port B */
	ctrl_outl(0x36db0400, 0xfffc0008); /* CS1BCR */
	gpio_request(GPIO_FN_IRQ0_PB, NULL);

P
Paul Mundt 已提交
106 107 108 109
	return platform_add_devices(rsk7203_devices,
				    ARRAY_SIZE(rsk7203_devices));
}
device_initcall(rsk7203_devices_setup);