blob: dd036f1661dbd297133c2c770eaf831ae5866abe [file] [log] [blame]
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +09001/*
2 * linux/arch/sh/boards/renesas/sh7763rdp/setup.c
3 *
4 * Renesas Solutions sh7763rdp board
5 *
6 * Copyright (C) 2008 Renesas Solutions Corp.
7 * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8 *
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License. See the file "COPYING" in the main directory of this archive
11 * for more details.
12 */
13#include <linux/init.h>
14#include <linux/platform_device.h>
15#include <linux/interrupt.h>
16#include <linux/input.h>
17#include <linux/mtd/physmap.h>
Nobuhiro Iwamatsu674063c2008-08-08 14:30:06 +090018#include <linux/fb.h>
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +090019#include <linux/io.h>
Yoshihiro Shimodacf8e56b2011-09-28 16:49:14 +090020#include <linux/sh_eth.h>
Paul Mundt7639a452008-10-20 13:02:48 +090021#include <mach/sh7763rdp.h>
Nobuhiro Iwamatsu674063c2008-08-08 14:30:06 +090022#include <asm/sh7760fb.h>
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +090023
24/* NOR Flash */
25static struct mtd_partition sh7763rdp_nor_flash_partitions[] = {
26 {
27 .name = "U-Boot",
28 .offset = 0,
29 .size = (2 * 128 * 1024),
30 .mask_flags = MTD_WRITEABLE, /* Read-only */
31 }, {
32 .name = "Linux-Kernel",
33 .offset = MTDPART_OFS_APPEND,
34 .size = (20 * 128 * 1024),
35 }, {
36 .name = "Root Filesystem",
37 .offset = MTDPART_OFS_APPEND,
38 .size = MTDPART_SIZ_FULL,
39 },
40};
41
42static struct physmap_flash_data sh7763rdp_nor_flash_data = {
43 .width = 2,
44 .parts = sh7763rdp_nor_flash_partitions,
45 .nr_parts = ARRAY_SIZE(sh7763rdp_nor_flash_partitions),
46};
47
48static struct resource sh7763rdp_nor_flash_resources[] = {
49 [0] = {
50 .name = "NOR Flash",
51 .start = 0,
52 .end = (64 * 1024 * 1024),
53 .flags = IORESOURCE_MEM,
54 },
55};
56
57static struct platform_device sh7763rdp_nor_flash_device = {
58 .name = "physmap-flash",
59 .resource = sh7763rdp_nor_flash_resources,
60 .num_resources = ARRAY_SIZE(sh7763rdp_nor_flash_resources),
61 .dev = {
62 .platform_data = &sh7763rdp_nor_flash_data,
63 },
64};
65
Nobuhiro Iwamatsuda788002009-03-17 05:53:26 +000066/*
67 * SH-Ether
68 *
69 * SH Ether of SH7763 has multi IRQ handling.
70 * (57,58,59 -> 57)
71 */
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +090072static struct resource sh_eth_resources[] = {
73 {
74 .start = 0xFEE00800, /* use eth1 */
75 .end = 0xFEE00F7C - 1,
76 .flags = IORESOURCE_MEM,
77 }, {
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +000078 .start = 0xFEE01800, /* TSU */
79 .end = 0xFEE01FFF,
80 .flags = IORESOURCE_MEM,
81 }, {
Nobuhiro Iwamatsuda788002009-03-17 05:53:26 +000082 .start = 57, /* irq number */
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +090083 .flags = IORESOURCE_IRQ,
84 },
85};
86
87static struct sh_eth_plat_data sh7763_eth_pdata = {
88 .phy = 1,
89 .edmac_endian = EDMAC_LITTLE_ENDIAN,
Yoshihiro Shimoda9055f892011-03-08 08:00:04 +000090 .register_type = SH_ETH_REG_GIGABIT,
91 .phy_interface = PHY_INTERFACE_MODE_MII,
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +090092};
93
94static struct platform_device sh7763rdp_eth_device = {
95 .name = "sh-eth",
96 .resource = sh_eth_resources,
97 .num_resources = ARRAY_SIZE(sh_eth_resources),
98 .dev = {
99 .platform_data = &sh7763_eth_pdata,
100 },
101};
102
Nobuhiro Iwamatsu674063c2008-08-08 14:30:06 +0900103/* SH7763 LCDC */
104static struct resource sh7763rdp_fb_resources[] = {
105 {
106 .start = 0xFFE80000,
107 .end = 0xFFE80442 - 1,
108 .flags = IORESOURCE_MEM,
109 },
110};
111
112static struct fb_videomode sh7763fb_videomode = {
113 .refresh = 60,
114 .name = "VGA Monitor",
115 .xres = 640,
116 .yres = 480,
117 .pixclock = 10000,
118 .left_margin = 80,
119 .right_margin = 24,
120 .upper_margin = 30,
121 .lower_margin = 1,
122 .hsync_len = 96,
123 .vsync_len = 1,
124 .sync = 0,
125 .vmode = FB_VMODE_NONINTERLACED,
126 .flag = FBINFO_FLAG_DEFAULT,
127};
128
129static struct sh7760fb_platdata sh7763fb_def_pdata = {
130 .def_mode = &sh7763fb_videomode,
131 .ldmtr = (LDMTR_TFT_COLOR_16|LDMTR_MCNT),
132 .lddfr = LDDFR_16BPP_RGB565,
133 .ldpmmr = 0x0000,
134 .ldpspr = 0xFFFF,
135 .ldaclnr = 0x0001,
136 .ldickr = 0x1102,
137 .rotate = 0,
138 .novsync = 0,
139 .blank = NULL,
140};
141
142static struct platform_device sh7763rdp_fb_device = {
143 .name = "sh7760-lcdc",
144 .resource = sh7763rdp_fb_resources,
145 .num_resources = ARRAY_SIZE(sh7763rdp_fb_resources),
146 .dev = {
147 .platform_data = &sh7763fb_def_pdata,
148 },
149};
150
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900151static struct platform_device *sh7763rdp_devices[] __initdata = {
152 &sh7763rdp_nor_flash_device,
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +0900153 &sh7763rdp_eth_device,
Nobuhiro Iwamatsu674063c2008-08-08 14:30:06 +0900154 &sh7763rdp_fb_device,
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900155};
156
157static int __init sh7763rdp_devices_setup(void)
158{
159 return platform_add_devices(sh7763rdp_devices,
160 ARRAY_SIZE(sh7763rdp_devices));
161}
Nobuhiro Iwamatsu0a766a62008-08-08 14:29:58 +0900162device_initcall(sh7763rdp_devices_setup);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900163
164static void __init sh7763rdp_setup(char **cmdline_p)
165{
166 /* Board version check */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900167 if (__raw_readw(CPLD_BOARD_ID_ERV_REG) == 0xECB1)
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900168 printk(KERN_INFO "RTE Standard Configuration\n");
169 else
170 printk(KERN_INFO "RTA Standard Configuration\n");
171
172 /* USB pin select bits (clear bit 5-2 to 0) */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900173 __raw_writew((__raw_readw(PORT_PSEL2) & 0xFFC3), PORT_PSEL2);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900174 /* USBH setup port I controls to other (clear bits 4-9 to 0) */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900175 __raw_writew(__raw_readw(PORT_PICR) & 0xFC0F, PORT_PICR);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900176
177 /* Select USB Host controller */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900178 __raw_writew(0x00, USB_USBHSC);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900179
180 /* For LCD */
181 /* set PTJ7-1, bits 15-2 of PJCR to 0 */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900182 __raw_writew(__raw_readw(PORT_PJCR) & 0x0003, PORT_PJCR);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900183 /* set PTI5, bits 11-10 of PICR to 0 */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900184 __raw_writew(__raw_readw(PORT_PICR) & 0xF3FF, PORT_PICR);
185 __raw_writew(0, PORT_PKCR);
186 __raw_writew(0, PORT_PLCR);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900187 /* set PSEL2 bits 14-8, 5-4, of PSEL2 to 0 */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900188 __raw_writew((__raw_readw(PORT_PSEL2) & 0x00C0), PORT_PSEL2);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900189 /* set PSEL3 bits 14-12, 6-4, 2-0 of PSEL3 to 0 */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900190 __raw_writew((__raw_readw(PORT_PSEL3) & 0x0700), PORT_PSEL3);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900191
192 /* For HAC */
193 /* bit3-0 0100:HAC & SSI1 enable */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900194 __raw_writew((__raw_readw(PORT_PSEL1) & 0xFFF0) | 0x0004, PORT_PSEL1);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900195 /* bit14 1:SSI_HAC_CLK enable */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900196 __raw_writew(__raw_readw(PORT_PSEL4) | 0x4000, PORT_PSEL4);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900197
198 /* SH-Ether */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900199 __raw_writew((__raw_readw(PORT_PSEL1) & ~0xff00) | 0x2400, PORT_PSEL1);
200 __raw_writew(0x0, PORT_PFCR);
201 __raw_writew(0x0, PORT_PFCR);
202 __raw_writew(0x0, PORT_PFCR);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900203
204 /* MMC */
205 /*selects SCIF and MMC other functions */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900206 __raw_writew(0x0001, PORT_PSEL0);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900207 /* MMC clock operates */
Paul Mundt9d56dd32010-01-26 12:58:40 +0900208 __raw_writel(__raw_readl(MSTPCR1) & ~0x8, MSTPCR1);
209 __raw_writew(__raw_readw(PORT_PACR) & ~0x3000, PORT_PACR);
210 __raw_writew(__raw_readw(PORT_PCCR) & ~0xCFC3, PORT_PCCR);
Nobuhiro Iwamatsu4cec1a32008-06-06 17:04:56 +0900211}
212
213static struct sh_machine_vector mv_sh7763rdp __initmv = {
214 .mv_name = "sh7763drp",
215 .mv_setup = sh7763rdp_setup,
216 .mv_nr_irqs = 112,
217 .mv_init_irq = init_sh7763rdp_IRQ,
218};