2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000, 2001 Blue Mug, Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
2012-10-10 23:45:33 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/init.h>
|
2012-11-17 21:57:18 +08:00
|
|
|
#include <linux/gpio.h>
|
|
|
|
#include <linux/delay.h>
|
2010-05-23 02:47:18 +08:00
|
|
|
#include <linux/memblock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/types.h>
|
2013-05-14 01:07:34 +08:00
|
|
|
#include <linux/i2c-gpio.h>
|
2012-11-17 21:57:07 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/platform_device.h>
|
2014-08-19 20:31:14 +08:00
|
|
|
#include <linux/pwm.h>
|
|
|
|
#include <linux/pwm_backlight.h>
|
2014-04-14 05:54:58 +08:00
|
|
|
#include <linux/memblock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-17 21:57:21 +08:00
|
|
|
#include <linux/mtd/physmap.h>
|
|
|
|
#include <linux/mtd/partitions.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/setup.h>
|
2012-10-10 23:45:33 +08:00
|
|
|
#include <asm/mach/map.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/mach/arch.h>
|
2012-10-10 23:45:33 +08:00
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
2012-11-17 21:57:18 +08:00
|
|
|
#include <video/platform_lcd.h>
|
|
|
|
|
2012-10-10 23:45:33 +08:00
|
|
|
#include <mach/hardware.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include "common.h"
|
2013-04-26 23:47:29 +08:00
|
|
|
#include "devices.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-11-17 21:57:07 +08:00
|
|
|
#define VIDEORAM_SIZE SZ_128K
|
|
|
|
|
2012-11-17 21:57:18 +08:00
|
|
|
#define EDB7211_LCD_DC_DC_EN CLPS711X_GPIO(3, 1)
|
|
|
|
#define EDB7211_LCDEN CLPS711X_GPIO(3, 2)
|
2012-11-17 21:57:20 +08:00
|
|
|
#define EDB7211_LCDBL CLPS711X_GPIO(3, 3)
|
2012-11-17 21:57:18 +08:00
|
|
|
|
2013-05-14 01:07:34 +08:00
|
|
|
#define EDB7211_I2C_SDA CLPS711X_GPIO(3, 4)
|
|
|
|
#define EDB7211_I2C_SCL CLPS711X_GPIO(3, 5)
|
|
|
|
|
2012-11-17 21:57:21 +08:00
|
|
|
#define EDB7211_FLASH0_BASE (CS0_PHYS_BASE)
|
|
|
|
#define EDB7211_FLASH1_BASE (CS1_PHYS_BASE)
|
2013-05-14 01:07:30 +08:00
|
|
|
|
2012-11-17 21:57:07 +08:00
|
|
|
#define EDB7211_CS8900_BASE (CS2_PHYS_BASE + 0x300)
|
|
|
|
#define EDB7211_CS8900_IRQ (IRQ_EINT3)
|
|
|
|
|
2013-05-14 01:07:30 +08:00
|
|
|
/* The extra 8 lines of the keyboard matrix */
|
|
|
|
#define EDB7211_EXTKBD_BASE (CS3_PHYS_BASE)
|
|
|
|
|
2013-05-14 01:07:34 +08:00
|
|
|
static struct i2c_gpio_platform_data edb7211_i2c_pdata __initdata = {
|
|
|
|
.sda_pin = EDB7211_I2C_SDA,
|
|
|
|
.scl_pin = EDB7211_I2C_SCL,
|
|
|
|
.scl_is_output_only = 1,
|
|
|
|
};
|
|
|
|
|
2012-11-17 21:57:07 +08:00
|
|
|
static struct resource edb7211_cs8900_resource[] __initdata = {
|
|
|
|
DEFINE_RES_MEM(EDB7211_CS8900_BASE, SZ_1K),
|
|
|
|
DEFINE_RES_IRQ(EDB7211_CS8900_IRQ),
|
|
|
|
};
|
2012-10-10 23:45:33 +08:00
|
|
|
|
2012-11-17 21:57:21 +08:00
|
|
|
static struct mtd_partition edb7211_flash_partitions[] __initdata = {
|
|
|
|
{
|
|
|
|
.name = "Flash",
|
|
|
|
.offset = 0,
|
|
|
|
.size = MTDPART_SIZ_FULL,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct physmap_flash_data edb7211_flash_pdata __initdata = {
|
|
|
|
.width = 4,
|
|
|
|
.parts = edb7211_flash_partitions,
|
|
|
|
.nr_parts = ARRAY_SIZE(edb7211_flash_partitions),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource edb7211_flash_resources[] __initdata = {
|
|
|
|
DEFINE_RES_MEM(EDB7211_FLASH0_BASE, SZ_8M),
|
|
|
|
DEFINE_RES_MEM(EDB7211_FLASH1_BASE, SZ_8M),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device edb7211_flash_pdev __initdata = {
|
|
|
|
.name = "physmap-flash",
|
|
|
|
.id = 0,
|
|
|
|
.resource = edb7211_flash_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(edb7211_flash_resources),
|
|
|
|
.dev = {
|
|
|
|
.platform_data = &edb7211_flash_pdata,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-11-17 21:57:18 +08:00
|
|
|
static void edb7211_lcd_power_set(struct plat_lcd_data *pd, unsigned int power)
|
|
|
|
{
|
|
|
|
if (power) {
|
|
|
|
gpio_set_value(EDB7211_LCDEN, 1);
|
|
|
|
udelay(100);
|
|
|
|
gpio_set_value(EDB7211_LCD_DC_DC_EN, 1);
|
|
|
|
} else {
|
|
|
|
gpio_set_value(EDB7211_LCD_DC_DC_EN, 0);
|
|
|
|
udelay(100);
|
|
|
|
gpio_set_value(EDB7211_LCDEN, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct plat_lcd_data edb7211_lcd_power_pdata = {
|
|
|
|
.set_power = edb7211_lcd_power_set,
|
|
|
|
};
|
|
|
|
|
2014-08-19 20:31:14 +08:00
|
|
|
static struct pwm_lookup edb7211_pwm_lookup[] = {
|
|
|
|
PWM_LOOKUP("clps711x-pwm", 0, "pwm-backlight.0", NULL,
|
|
|
|
0, PWM_POLARITY_NORMAL),
|
|
|
|
};
|
2012-11-17 21:57:20 +08:00
|
|
|
|
2014-08-19 20:31:14 +08:00
|
|
|
static struct platform_pwm_backlight_data pwm_bl_pdata = {
|
|
|
|
.dft_brightness = 0x01,
|
|
|
|
.max_brightness = 0x0f,
|
|
|
|
.enable_gpio = EDB7211_LCDBL,
|
2012-11-17 21:57:20 +08:00
|
|
|
};
|
|
|
|
|
2014-08-19 20:31:14 +08:00
|
|
|
static struct resource clps711x_pwm_res =
|
|
|
|
DEFINE_RES_MEM(CLPS711X_PHYS_BASE + PMPCON, SZ_4);
|
|
|
|
|
2012-11-17 21:57:18 +08:00
|
|
|
static struct gpio edb7211_gpios[] __initconst = {
|
|
|
|
{ EDB7211_LCD_DC_DC_EN, GPIOF_OUT_INIT_LOW, "LCD DC-DC" },
|
|
|
|
{ EDB7211_LCDEN, GPIOF_OUT_INIT_LOW, "LCD POWER" },
|
|
|
|
};
|
|
|
|
|
2010-05-23 01:18:57 +08:00
|
|
|
/* Reserve screen memory region at the start of main system memory. */
|
|
|
|
static void __init edb7211_reserve(void)
|
|
|
|
{
|
2012-10-10 23:45:33 +08:00
|
|
|
memblock_reserve(PHYS_OFFSET, VIDEORAM_SIZE);
|
2010-05-23 01:18:57 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
static void __init
|
2014-04-14 05:54:58 +08:00
|
|
|
fixup_edb7211(struct tag *tags, char **cmdline)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Bank start addresses are not present in the information
|
|
|
|
* passed in from the boot loader. We could potentially
|
|
|
|
* detect them, but instead we hard-code them.
|
|
|
|
*
|
|
|
|
* Banks sizes _are_ present in the param block, but we're
|
|
|
|
* not using that information yet.
|
|
|
|
*/
|
2014-04-14 05:54:58 +08:00
|
|
|
memblock_add(0xc0000000, SZ_8M);
|
|
|
|
memblock_add(0xc1000000, SZ_8M);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-04-26 23:47:29 +08:00
|
|
|
static void __init edb7211_init_late(void)
|
2012-11-17 21:57:07 +08:00
|
|
|
{
|
2012-11-17 21:57:18 +08:00
|
|
|
gpio_request_array(edb7211_gpios, ARRAY_SIZE(edb7211_gpios));
|
|
|
|
|
2012-11-17 21:57:21 +08:00
|
|
|
platform_device_register(&edb7211_flash_pdev);
|
2014-08-19 20:31:14 +08:00
|
|
|
|
2014-07-24 01:07:18 +08:00
|
|
|
platform_device_register_data(NULL, "platform-lcd", 0,
|
2012-11-17 21:57:18 +08:00
|
|
|
&edb7211_lcd_power_pdata,
|
|
|
|
sizeof(edb7211_lcd_power_pdata));
|
2014-08-19 20:31:14 +08:00
|
|
|
|
|
|
|
platform_device_register_simple("clps711x-pwm", PLATFORM_DEVID_NONE,
|
|
|
|
&clps711x_pwm_res, 1);
|
|
|
|
pwm_add_table(edb7211_pwm_lookup, ARRAY_SIZE(edb7211_pwm_lookup));
|
|
|
|
|
|
|
|
platform_device_register_data(&platform_bus, "pwm-backlight", 0,
|
|
|
|
&pwm_bl_pdata, sizeof(pwm_bl_pdata));
|
|
|
|
|
2012-11-17 21:57:09 +08:00
|
|
|
platform_device_register_simple("video-clps711x", 0, NULL, 0);
|
2012-11-17 21:57:07 +08:00
|
|
|
platform_device_register_simple("cs89x0", 0, edb7211_cs8900_resource,
|
|
|
|
ARRAY_SIZE(edb7211_cs8900_resource));
|
2014-07-24 01:07:18 +08:00
|
|
|
platform_device_register_data(NULL, "i2c-gpio", 0,
|
2013-05-14 01:07:34 +08:00
|
|
|
&edb7211_i2c_pdata,
|
|
|
|
sizeof(edb7211_i2c_pdata));
|
2012-11-17 21:57:07 +08:00
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
MACHINE_START(EDB7211, "CL-EDB7211 (EP7211 eval board)")
|
2005-07-04 00:38:58 +08:00
|
|
|
/* Maintainer: Jon McClintock */
|
2012-10-10 23:45:33 +08:00
|
|
|
.atag_offset = VIDEORAM_SIZE + 0x100,
|
2005-07-04 00:38:58 +08:00
|
|
|
.fixup = fixup_edb7211,
|
2010-05-23 01:18:57 +08:00
|
|
|
.reserve = edb7211_reserve,
|
2013-07-19 02:34:55 +08:00
|
|
|
.map_io = clps711x_map_io,
|
2005-07-04 00:38:58 +08:00
|
|
|
.init_irq = clps711x_init_irq,
|
2012-11-09 03:40:59 +08:00
|
|
|
.init_time = clps711x_timer_init,
|
2014-06-19 23:26:37 +08:00
|
|
|
.init_machine = clps711x_devices_init,
|
2013-04-26 23:47:29 +08:00
|
|
|
.init_late = edb7211_init_late,
|
2011-11-06 01:41:52 +08:00
|
|
|
.restart = clps711x_restart,
|
2005-04-17 06:20:36 +08:00
|
|
|
MACHINE_END
|