This adds initial support for the Renesas R0P7785LC0011RL board. This patch supports 29bit address mode only. Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>tirimbino
parent
1eca5c9272
commit
cbe9da029d
@ -0,0 +1 @@ |
||||
obj-y := setup.o
|
@ -0,0 +1,302 @@ |
||||
/*
|
||||
* Renesas Technology Corp. R0P7785LC0011RL Support. |
||||
* |
||||
* Copyright (C) 2008 Yoshihiro Shimoda |
||||
* |
||||
* 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/platform_device.h> |
||||
#include <linux/sm501.h> |
||||
#include <linux/sm501-regs.h> |
||||
#include <linux/fb.h> |
||||
#include <linux/mtd/physmap.h> |
||||
#include <linux/delay.h> |
||||
#include <linux/i2c.h> |
||||
#include <linux/i2c-pca-platform.h> |
||||
#include <linux/i2c-algo-pca.h> |
||||
#include <asm/heartbeat.h> |
||||
#include <asm/sh7785lcr.h> |
||||
|
||||
/*
|
||||
* NOTE: This board has 2 physical memory maps. |
||||
* Please look at include/asm-sh/sh7785lcr.h or hardware manual. |
||||
*/ |
||||
static struct resource heartbeat_resources[] = { |
||||
[0] = { |
||||
.start = PLD_LEDCR, |
||||
.end = PLD_LEDCR, |
||||
.flags = IORESOURCE_MEM, |
||||
}, |
||||
}; |
||||
|
||||
static struct heartbeat_data heartbeat_data = { |
||||
.regsize = 8, |
||||
}; |
||||
|
||||
static struct platform_device heartbeat_device = { |
||||
.name = "heartbeat", |
||||
.id = -1, |
||||
.dev = { |
||||
.platform_data = &heartbeat_data, |
||||
}, |
||||
.num_resources = ARRAY_SIZE(heartbeat_resources), |
||||
.resource = heartbeat_resources, |
||||
}; |
||||
|
||||
static struct mtd_partition nor_flash_partitions[] = { |
||||
{ |
||||
.name = "loader", |
||||
.offset = 0x00000000, |
||||
.size = 512 * 1024, |
||||
}, |
||||
{ |
||||
.name = "bootenv", |
||||
.offset = MTDPART_OFS_APPEND, |
||||
.size = 512 * 1024, |
||||
}, |
||||
{ |
||||
.name = "kernel", |
||||
.offset = MTDPART_OFS_APPEND, |
||||
.size = 4 * 1024 * 1024, |
||||
}, |
||||
{ |
||||
.name = "data", |
||||
.offset = MTDPART_OFS_APPEND, |
||||
.size = MTDPART_SIZ_FULL, |
||||
}, |
||||
}; |
||||
|
||||
static struct physmap_flash_data nor_flash_data = { |
||||
.width = 4, |
||||
.parts = nor_flash_partitions, |
||||
.nr_parts = ARRAY_SIZE(nor_flash_partitions), |
||||
}; |
||||
|
||||
static struct resource nor_flash_resources[] = { |
||||
[0] = { |
||||
.start = NOR_FLASH_ADDR, |
||||
.end = NOR_FLASH_ADDR + NOR_FLASH_SIZE - 1, |
||||
.flags = IORESOURCE_MEM, |
||||
} |
||||
}; |
||||
|
||||
static struct platform_device nor_flash_device = { |
||||
.name = "physmap-flash", |
||||
.dev = { |
||||
.platform_data = &nor_flash_data, |
||||
}, |
||||
.num_resources = ARRAY_SIZE(nor_flash_resources), |
||||
.resource = nor_flash_resources, |
||||
}; |
||||
|
||||
static struct resource r8a66597_usb_host_resources[] = { |
||||
[0] = { |
||||
.name = "r8a66597_hcd", |
||||
.start = R8A66597_ADDR, |
||||
.end = R8A66597_ADDR + R8A66597_SIZE - 1, |
||||
.flags = IORESOURCE_MEM, |
||||
}, |
||||
[1] = { |
||||
.name = "r8a66597_hcd", |
||||
.start = 2, |
||||
.end = 2, |
||||
.flags = IORESOURCE_IRQ, |
||||
}, |
||||
}; |
||||
|
||||
static struct platform_device r8a66597_usb_host_device = { |
||||
.name = "r8a66597_hcd", |
||||
.id = -1, |
||||
.dev = { |
||||
.dma_mask = NULL, |
||||
.coherent_dma_mask = 0xffffffff, |
||||
}, |
||||
.num_resources = ARRAY_SIZE(r8a66597_usb_host_resources), |
||||
.resource = r8a66597_usb_host_resources, |
||||
}; |
||||
|
||||
static struct resource sm501_resources[] = { |
||||
[0] = { |
||||
.start = SM107_MEM_ADDR, |
||||
.end = SM107_MEM_ADDR + SM107_MEM_SIZE - 1, |
||||
.flags = IORESOURCE_MEM, |
||||
}, |
||||
[1] = { |
||||
.start = SM107_REG_ADDR, |
||||
.end = SM107_REG_ADDR + SM107_REG_SIZE - 1, |
||||
.flags = IORESOURCE_MEM, |
||||
}, |
||||
[2] = { |
||||
.start = 10, |
||||
.flags = IORESOURCE_IRQ, |
||||
}, |
||||
}; |
||||
|
||||
static struct fb_videomode sm501_default_mode_crt = { |
||||
.pixclock = 35714, /* 28MHz */ |
||||
.xres = 640, |
||||
.yres = 480, |
||||
.left_margin = 105, |
||||
.right_margin = 16, |
||||
.upper_margin = 33, |
||||
.lower_margin = 10, |
||||
.hsync_len = 39, |
||||
.vsync_len = 2, |
||||
.sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, |
||||
}; |
||||
|
||||
static struct fb_videomode sm501_default_mode_pnl = { |
||||
.pixclock = 40000, /* 25MHz */ |
||||
.xres = 640, |
||||
.yres = 480, |
||||
.left_margin = 2, |
||||
.right_margin = 16, |
||||
.upper_margin = 33, |
||||
.lower_margin = 10, |
||||
.hsync_len = 39, |
||||
.vsync_len = 2, |
||||
.sync = 0, |
||||
}; |
||||
|
||||
static struct sm501_platdata_fbsub sm501_pdata_fbsub_pnl = { |
||||
.def_bpp = 16, |
||||
.def_mode = &sm501_default_mode_pnl, |
||||
.flags = SM501FB_FLAG_USE_INIT_MODE | |
||||
SM501FB_FLAG_USE_HWCURSOR | |
||||
SM501FB_FLAG_USE_HWACCEL | |
||||
SM501FB_FLAG_DISABLE_AT_EXIT | |
||||
SM501FB_FLAG_PANEL_NO_VBIASEN, |
||||
}; |
||||
|
||||
static struct sm501_platdata_fbsub sm501_pdata_fbsub_crt = { |
||||
.def_bpp = 16, |
||||
.def_mode = &sm501_default_mode_crt, |
||||
.flags = SM501FB_FLAG_USE_INIT_MODE | |
||||
SM501FB_FLAG_USE_HWCURSOR | |
||||
SM501FB_FLAG_USE_HWACCEL | |
||||
SM501FB_FLAG_DISABLE_AT_EXIT, |
||||
}; |
||||
|
||||
static struct sm501_platdata_fb sm501_fb_pdata = { |
||||
.fb_route = SM501_FB_OWN, |
||||
.fb_crt = &sm501_pdata_fbsub_crt, |
||||
.fb_pnl = &sm501_pdata_fbsub_pnl, |
||||
}; |
||||
|
||||
static struct sm501_initdata sm501_initdata = { |
||||
.gpio_high = { |
||||
.set = 0x00001fe0, |
||||
.mask = 0x0, |
||||
}, |
||||
.devices = 0, |
||||
.mclk = 84 * 1000000, |
||||
.m1xclk = 112 * 1000000, |
||||
}; |
||||
|
||||
static struct sm501_platdata sm501_platform_data = { |
||||
.init = &sm501_initdata, |
||||
.fb = &sm501_fb_pdata, |
||||
}; |
||||
|
||||
static struct platform_device sm501_device = { |
||||
.name = "sm501", |
||||
.id = -1, |
||||
.dev = { |
||||
.platform_data = &sm501_platform_data, |
||||
}, |
||||
.num_resources = ARRAY_SIZE(sm501_resources), |
||||
.resource = sm501_resources, |
||||
}; |
||||
|
||||
static struct resource i2c_resources[] = { |
||||
[0] = { |
||||
.start = PCA9564_ADDR, |
||||
.end = PCA9564_ADDR + PCA9564_SIZE - 1, |
||||
.flags = IORESOURCE_MEM | IORESOURCE_MEM_8BIT, |
||||
}, |
||||
[1] = { |
||||
.start = 12, |
||||
.end = 12, |
||||
.flags = IORESOURCE_IRQ, |
||||
}, |
||||
}; |
||||
|
||||
static struct i2c_pca9564_pf_platform_data i2c_platform_data = { |
||||
.gpio = 0, |
||||
.i2c_clock_speed = I2C_PCA_CON_330kHz, |
||||
.timeout = 100, |
||||
}; |
||||
|
||||
static struct platform_device i2c_device = { |
||||
.name = "i2c-pca-platform", |
||||
.id = -1, |
||||
.dev = { |
||||
.platform_data = &i2c_platform_data, |
||||
}, |
||||
.num_resources = ARRAY_SIZE(i2c_resources), |
||||
.resource = i2c_resources, |
||||
}; |
||||
|
||||
static struct platform_device *sh7785lcr_devices[] __initdata = { |
||||
&heartbeat_device, |
||||
&nor_flash_device, |
||||
&r8a66597_usb_host_device, |
||||
&sm501_device, |
||||
&i2c_device, |
||||
}; |
||||
|
||||
static struct i2c_board_info __initdata sh7785lcr_i2c_devices[] = { |
||||
{ |
||||
I2C_BOARD_INFO("r2025sd", 0x32), |
||||
}, |
||||
}; |
||||
|
||||
static int __init sh7785lcr_devices_setup(void) |
||||
{ |
||||
i2c_register_board_info(0, sh7785lcr_i2c_devices, |
||||
ARRAY_SIZE(sh7785lcr_i2c_devices)); |
||||
|
||||
return platform_add_devices(sh7785lcr_devices, |
||||
ARRAY_SIZE(sh7785lcr_devices)); |
||||
} |
||||
__initcall(sh7785lcr_devices_setup); |
||||
|
||||
/* Initialize IRQ setting */ |
||||
void __init init_sh7785lcr_IRQ(void) |
||||
{ |
||||
plat_irq_setup_pins(IRQ_MODE_IRQ7654); |
||||
plat_irq_setup_pins(IRQ_MODE_IRQ3210); |
||||
} |
||||
|
||||
static void sh7785lcr_power_off(void) |
||||
{ |
||||
ctrl_outb(0x01, P2SEGADDR(PLD_POFCR)); |
||||
} |
||||
|
||||
/* Initialize the board */ |
||||
static void __init sh7785lcr_setup(char **cmdline_p) |
||||
{ |
||||
void __iomem *sm501_reg; |
||||
|
||||
printk(KERN_INFO "Renesas Technology Corp. R0P7785LC0011RL support.\n"); |
||||
|
||||
pm_power_off = sh7785lcr_power_off; |
||||
|
||||
/* sm501 DRAM configuration */ |
||||
sm501_reg = (void __iomem *)0xb3e00000 + SM501_DRAM_CONTROL; |
||||
writel(0x000307c2, sm501_reg); |
||||
} |
||||
|
||||
/*
|
||||
* The Machine Vector |
||||
*/ |
||||
static struct sh_machine_vector mv_sh7785lcr __initmv = { |
||||
.mv_name = "SH7785LCR", |
||||
.mv_setup = sh7785lcr_setup, |
||||
.mv_init_irq = init_sh7785lcr_IRQ, |
||||
}; |
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,46 @@ |
||||
/*
|
||||
* arch/sh/drivers/pci/fixups-sh7785lcr.c |
||||
* |
||||
* R0P7785LC0011RL PCI fixups |
||||
* Copyright (C) 2008 Yoshihiro Shimoda |
||||
* |
||||
* Based on arch/sh/drivers/pci/fixups-r7780rp.c |
||||
* Copyright (C) 2003 Lineo uSolutions, Inc. |
||||
* Copyright (C) 2004 - 2006 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/pci.h> |
||||
#include "pci-sh4.h" |
||||
|
||||
int pci_fixup_pcic(void) |
||||
{ |
||||
pci_write_reg(0x000043ff, SH4_PCIINTM); |
||||
pci_write_reg(0x0000380f, SH4_PCIAINTM); |
||||
|
||||
pci_write_reg(0xfbb00047, SH7780_PCICMD); |
||||
pci_write_reg(0x00000000, SH7780_PCIIBAR); |
||||
|
||||
pci_write_reg(0x00011912, SH7780_PCISVID); |
||||
pci_write_reg(0x08000000, SH7780_PCICSCR0); |
||||
pci_write_reg(0x0000001b, SH7780_PCICSAR0); |
||||
pci_write_reg(0xfd000000, SH7780_PCICSCR1); |
||||
pci_write_reg(0x0000000f, SH7780_PCICSAR1); |
||||
|
||||
pci_write_reg(0xfd000000, SH7780_PCIMBR0); |
||||
pci_write_reg(0x00fc0000, SH7780_PCIMBMR0); |
||||
|
||||
#ifdef CONFIG_32BIT |
||||
pci_write_reg(0xc0000000, SH7780_PCIMBR2); |
||||
pci_write_reg(0x20000000 - SH7780_PCI_IO_SIZE, SH7780_PCIMBMR2); |
||||
#endif |
||||
|
||||
/* Set IOBR for windows containing area specified in pci.h */ |
||||
pci_write_reg((PCIBIOS_MIN_IO & ~(SH7780_PCI_IO_SIZE - 1)), |
||||
SH7780_PCIIOBR); |
||||
pci_write_reg(((SH7780_PCI_IO_SIZE - 1) & (7 << 18)), SH7780_PCIIOBMR); |
||||
|
||||
return 0; |
||||
} |
@ -0,0 +1,66 @@ |
||||
/*
|
||||
* Author: Ian DaSilva (idasilva@mvista.com) |
||||
* |
||||
* Highly leveraged from pci-bigsur.c, written by Dustin McIntire. |
||||
* |
||||
* May be copied or modified under the terms of the GNU General Public |
||||
* License. See linux/COPYING for more information. |
||||
* |
||||
* PCI initialization for the Renesas R0P7785LC0011RL board |
||||
* Based on arch/sh/drivers/pci/ops-r7780rp.c |
||||
* |
||||
*/ |
||||
#include <linux/kernel.h> |
||||
#include <linux/types.h> |
||||
#include <linux/init.h> |
||||
#include <linux/delay.h> |
||||
#include <linux/pci.h> |
||||
#include "pci-sh4.h" |
||||
|
||||
static char irq_tab[] __initdata = { |
||||
65, 66, 67, 68, |
||||
}; |
||||
|
||||
int __init pcibios_map_platform_irq(struct pci_dev *pdev, u8 slot, u8 pin) |
||||
{ |
||||
return irq_tab[slot]; |
||||
} |
||||
|
||||
static struct resource sh7785_io_resource = { |
||||
.name = "SH7785_IO", |
||||
.start = SH7780_PCI_IO_BASE, |
||||
.end = SH7780_PCI_IO_BASE + SH7780_PCI_IO_SIZE - 1, |
||||
.flags = IORESOURCE_IO |
||||
}; |
||||
|
||||
static struct resource sh7785_mem_resource = { |
||||
.name = "SH7785_mem", |
||||
.start = SH7780_PCI_MEMORY_BASE, |
||||
.end = SH7780_PCI_MEMORY_BASE + SH7780_PCI_MEM_SIZE - 1, |
||||
.flags = IORESOURCE_MEM |
||||
}; |
||||
|
||||
struct pci_channel board_pci_channels[] = { |
||||
{ &sh4_pci_ops, &sh7785_io_resource, &sh7785_mem_resource, 0, 0xff }, |
||||
{ NULL, NULL, NULL, 0, 0 }, |
||||
}; |
||||
EXPORT_SYMBOL(board_pci_channels); |
||||
|
||||
static struct sh4_pci_address_map sh7785_pci_map = { |
||||
.window0 = { |
||||
.base = SH7780_CS2_BASE_ADDR, |
||||
.size = 0x04000000, |
||||
}, |
||||
|
||||
.window1 = { |
||||
.base = SH7780_CS3_BASE_ADDR, |
||||
.size = 0x04000000, |
||||
}, |
||||
|
||||
.flags = SH4_PCIC_NO_RESET, |
||||
}; |
||||
|
||||
int __init pcibios_init_platform(void) |
||||
{ |
||||
return sh7780_pcic_init(&sh7785_pci_map); |
||||
} |
@ -0,0 +1,55 @@ |
||||
#ifndef __ASM_SH_RENESAS_SH7785LCR_H |
||||
#define __ASM_SH_RENESAS_SH7785LCR_H |
||||
|
||||
/*
|
||||
* This board has 2 physical memory maps. |
||||
* It can be changed with DIP switch(S2-5). |
||||
* |
||||
* phys address | S2-5 = OFF | S2-5 = ON |
||||
* -----------------------------+---------------+--------------- |
||||
* 0x00000000 - 0x03ffffff(CS0) | NOR Flash | NOR Flash |
||||
* 0x04000000 - 0x05ffffff(CS1) | PLD | PLD |
||||
* 0x06000000 - 0x07ffffff(CS1) | reserved | I2C |
||||
* 0x08000000 - 0x0bffffff(CS2) | USB | DDR SDRAM |
||||
* 0x0c000000 - 0x0fffffff(CS3) | SD | DDR SDRAM |
||||
* 0x10000000 - 0x13ffffff(CS4) | SM107 | SM107 |
||||
* 0x14000000 - 0x17ffffff(CS5) | I2C | USB |
||||
* 0x18000000 - 0x1bffffff(CS6) | reserved | SD |
||||
* 0x40000000 - 0x5fffffff | DDR SDRAM | (cannot use) |
||||
* |
||||
*/ |
||||
|
||||
#define NOR_FLASH_ADDR 0x00000000 |
||||
#define NOR_FLASH_SIZE 0x04000000 |
||||
|
||||
#define PLD_BASE_ADDR 0x04000000 |
||||
#define PLD_PCICR (PLD_BASE_ADDR + 0x00) |
||||
#define PLD_LCD_BK_CONTR (PLD_BASE_ADDR + 0x02) |
||||
#define PLD_LOCALCR (PLD_BASE_ADDR + 0x04) |
||||
#define PLD_POFCR (PLD_BASE_ADDR + 0x06) |
||||
#define PLD_LEDCR (PLD_BASE_ADDR + 0x08) |
||||
#define PLD_SWSR (PLD_BASE_ADDR + 0x0a) |
||||
#define PLD_VERSR (PLD_BASE_ADDR + 0x0c) |
||||
#define PLD_MMSR (PLD_BASE_ADDR + 0x0e) |
||||
|
||||
#define SM107_MEM_ADDR 0x10000000 |
||||
#define SM107_MEM_SIZE 0x00e00000 |
||||
#define SM107_REG_ADDR 0x13e00000 |
||||
#define SM107_REG_SIZE 0x00200000 |
||||
|
||||
#if defined(CONFIG_SH_SH7785LCR_29BIT_PHYSMAPS) |
||||
#define R8A66597_ADDR 0x14000000 /* USB */ |
||||
#define CG200_ADDR 0x18000000 /* SD */ |
||||
#define PCA9564_ADDR 0x06000000 /* I2C */ |
||||
#else |
||||
#define R8A66597_ADDR 0x08000000 |
||||
#define CG200_ADDR 0x0c000000 |
||||
#define PCA9564_ADDR 0x14000000 |
||||
#endif |
||||
|
||||
#define R8A66597_SIZE 0x00000100 |
||||
#define CG200_SIZE 0x00010000 |
||||
#define PCA9564_SIZE 0x00000100 |
||||
|
||||
#endif /* __ASM_SH_RENESAS_SH7785LCR_H */ |
||||
|
Loading…
Reference in new issue