blob: e6e06099d052beb2a90c1568f07e575fb547dbf6 [file] [log] [blame]
Alexander Shiyan2a552892012-10-10 19:45:33 +04001/*
2 * Copyright (C) 2000, 2001 Blue Mug, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 */
9
10#include <linux/init.h>
Alexander Shiyan87c37b52012-11-17 17:57:18 +040011#include <linux/gpio.h>
12#include <linux/delay.h>
Alexander Shiyan2a552892012-10-10 19:45:33 +040013#include <linux/memblock.h>
14#include <linux/types.h>
Alexander Shiyan362168f2013-05-13 21:07:34 +040015#include <linux/i2c-gpio.h>
Alexander Shiyan200daa32012-11-17 17:57:07 +040016#include <linux/interrupt.h>
Alexander Shiyan94760bf2012-11-17 17:57:20 +040017#include <linux/backlight.h>
Alexander Shiyan200daa32012-11-17 17:57:07 +040018#include <linux/platform_device.h>
Laura Abbott1c2f87c2014-04-13 22:54:58 +010019#include <linux/memblock.h>
Alexander Shiyan2a552892012-10-10 19:45:33 +040020
Alexander Shiyan96754a12012-11-17 17:57:21 +040021#include <linux/mtd/physmap.h>
22#include <linux/mtd/partitions.h>
23
Alexander Shiyan2a552892012-10-10 19:45:33 +040024#include <asm/setup.h>
25#include <asm/mach/map.h>
26#include <asm/mach/arch.h>
27#include <asm/mach-types.h>
28
Alexander Shiyan87c37b52012-11-17 17:57:18 +040029#include <video/platform_lcd.h>
30
Alexander Shiyan2a552892012-10-10 19:45:33 +040031#include <mach/hardware.h>
32
33#include "common.h"
Alexander Shiyane328b882013-04-26 19:47:29 +040034#include "devices.h"
Alexander Shiyan2a552892012-10-10 19:45:33 +040035
Alexander Shiyan200daa32012-11-17 17:57:07 +040036#define VIDEORAM_SIZE SZ_128K
37
Alexander Shiyan87c37b52012-11-17 17:57:18 +040038#define EDB7211_LCD_DC_DC_EN CLPS711X_GPIO(3, 1)
39#define EDB7211_LCDEN CLPS711X_GPIO(3, 2)
Alexander Shiyan94760bf2012-11-17 17:57:20 +040040#define EDB7211_LCDBL CLPS711X_GPIO(3, 3)
Alexander Shiyan87c37b52012-11-17 17:57:18 +040041
Alexander Shiyan362168f2013-05-13 21:07:34 +040042#define EDB7211_I2C_SDA CLPS711X_GPIO(3, 4)
43#define EDB7211_I2C_SCL CLPS711X_GPIO(3, 5)
44
Alexander Shiyan96754a12012-11-17 17:57:21 +040045#define EDB7211_FLASH0_BASE (CS0_PHYS_BASE)
46#define EDB7211_FLASH1_BASE (CS1_PHYS_BASE)
Alexander Shiyan7e4615c2013-05-13 21:07:30 +040047
Alexander Shiyan200daa32012-11-17 17:57:07 +040048#define EDB7211_CS8900_BASE (CS2_PHYS_BASE + 0x300)
49#define EDB7211_CS8900_IRQ (IRQ_EINT3)
50
Alexander Shiyan7e4615c2013-05-13 21:07:30 +040051/* The extra 8 lines of the keyboard matrix */
52#define EDB7211_EXTKBD_BASE (CS3_PHYS_BASE)
53
Alexander Shiyan362168f2013-05-13 21:07:34 +040054static struct i2c_gpio_platform_data edb7211_i2c_pdata __initdata = {
55 .sda_pin = EDB7211_I2C_SDA,
56 .scl_pin = EDB7211_I2C_SCL,
57 .scl_is_output_only = 1,
58};
59
Alexander Shiyan200daa32012-11-17 17:57:07 +040060static struct resource edb7211_cs8900_resource[] __initdata = {
61 DEFINE_RES_MEM(EDB7211_CS8900_BASE, SZ_1K),
62 DEFINE_RES_IRQ(EDB7211_CS8900_IRQ),
63};
Alexander Shiyan2a552892012-10-10 19:45:33 +040064
Alexander Shiyan96754a12012-11-17 17:57:21 +040065static struct mtd_partition edb7211_flash_partitions[] __initdata = {
66 {
67 .name = "Flash",
68 .offset = 0,
69 .size = MTDPART_SIZ_FULL,
70 },
71};
72
73static struct physmap_flash_data edb7211_flash_pdata __initdata = {
74 .width = 4,
75 .parts = edb7211_flash_partitions,
76 .nr_parts = ARRAY_SIZE(edb7211_flash_partitions),
77};
78
79static struct resource edb7211_flash_resources[] __initdata = {
80 DEFINE_RES_MEM(EDB7211_FLASH0_BASE, SZ_8M),
81 DEFINE_RES_MEM(EDB7211_FLASH1_BASE, SZ_8M),
82};
83
84static struct platform_device edb7211_flash_pdev __initdata = {
85 .name = "physmap-flash",
86 .id = 0,
87 .resource = edb7211_flash_resources,
88 .num_resources = ARRAY_SIZE(edb7211_flash_resources),
89 .dev = {
90 .platform_data = &edb7211_flash_pdata,
91 },
92};
93
Alexander Shiyan87c37b52012-11-17 17:57:18 +040094static void edb7211_lcd_power_set(struct plat_lcd_data *pd, unsigned int power)
95{
96 if (power) {
97 gpio_set_value(EDB7211_LCDEN, 1);
98 udelay(100);
99 gpio_set_value(EDB7211_LCD_DC_DC_EN, 1);
100 } else {
101 gpio_set_value(EDB7211_LCD_DC_DC_EN, 0);
102 udelay(100);
103 gpio_set_value(EDB7211_LCDEN, 0);
104 }
105}
106
107static struct plat_lcd_data edb7211_lcd_power_pdata = {
108 .set_power = edb7211_lcd_power_set,
109};
110
Alexander Shiyan94760bf2012-11-17 17:57:20 +0400111static void edb7211_lcd_backlight_set_intensity(int intensity)
112{
Alexander Shiyane337d722013-05-13 21:07:35 +0400113 gpio_set_value(EDB7211_LCDBL, !!intensity);
114 clps_writel((clps_readl(PMPCON) & 0xf0ff) | (intensity << 8), PMPCON);
Alexander Shiyan94760bf2012-11-17 17:57:20 +0400115}
116
117static struct generic_bl_info edb7211_lcd_backlight_pdata = {
118 .name = "lcd-backlight.0",
119 .default_intensity = 0x01,
Alexander Shiyane337d722013-05-13 21:07:35 +0400120 .max_intensity = 0x0f,
Alexander Shiyan94760bf2012-11-17 17:57:20 +0400121 .set_bl_intensity = edb7211_lcd_backlight_set_intensity,
122};
123
Alexander Shiyan87c37b52012-11-17 17:57:18 +0400124static struct gpio edb7211_gpios[] __initconst = {
125 { EDB7211_LCD_DC_DC_EN, GPIOF_OUT_INIT_LOW, "LCD DC-DC" },
126 { EDB7211_LCDEN, GPIOF_OUT_INIT_LOW, "LCD POWER" },
Alexander Shiyan94760bf2012-11-17 17:57:20 +0400127 { EDB7211_LCDBL, GPIOF_OUT_INIT_LOW, "LCD BACKLIGHT" },
Alexander Shiyan87c37b52012-11-17 17:57:18 +0400128};
129
Alexander Shiyan2a552892012-10-10 19:45:33 +0400130/* Reserve screen memory region at the start of main system memory. */
131static void __init edb7211_reserve(void)
132{
133 memblock_reserve(PHYS_OFFSET, VIDEORAM_SIZE);
134}
135
136static void __init
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100137fixup_edb7211(struct tag *tags, char **cmdline)
Alexander Shiyan2a552892012-10-10 19:45:33 +0400138{
139 /*
140 * Bank start addresses are not present in the information
141 * passed in from the boot loader. We could potentially
142 * detect them, but instead we hard-code them.
143 *
144 * Banks sizes _are_ present in the param block, but we're
145 * not using that information yet.
146 */
Laura Abbott1c2f87c2014-04-13 22:54:58 +0100147 memblock_add(0xc0000000, SZ_8M);
148 memblock_add(0xc1000000, SZ_8M);
Alexander Shiyan2a552892012-10-10 19:45:33 +0400149}
150
Alexander Shiyane328b882013-04-26 19:47:29 +0400151static void __init edb7211_init_late(void)
152{
Alexander Shiyan87c37b52012-11-17 17:57:18 +0400153 gpio_request_array(edb7211_gpios, ARRAY_SIZE(edb7211_gpios));
154
Alexander Shiyan96754a12012-11-17 17:57:21 +0400155 platform_device_register(&edb7211_flash_pdev);
Alexander Shiyan87c37b52012-11-17 17:57:18 +0400156 platform_device_register_data(&platform_bus, "platform-lcd", 0,
157 &edb7211_lcd_power_pdata,
158 sizeof(edb7211_lcd_power_pdata));
Alexander Shiyan94760bf2012-11-17 17:57:20 +0400159 platform_device_register_data(&platform_bus, "generic-bl", 0,
160 &edb7211_lcd_backlight_pdata,
161 sizeof(edb7211_lcd_backlight_pdata));
Alexander Shiyandd850f12012-11-17 17:57:09 +0400162 platform_device_register_simple("video-clps711x", 0, NULL, 0);
Alexander Shiyan200daa32012-11-17 17:57:07 +0400163 platform_device_register_simple("cs89x0", 0, edb7211_cs8900_resource,
164 ARRAY_SIZE(edb7211_cs8900_resource));
Alexander Shiyan362168f2013-05-13 21:07:34 +0400165 platform_device_register_data(&platform_bus, "i2c-gpio", 0,
166 &edb7211_i2c_pdata,
167 sizeof(edb7211_i2c_pdata));
Alexander Shiyan200daa32012-11-17 17:57:07 +0400168}
169
Alexander Shiyan2a552892012-10-10 19:45:33 +0400170MACHINE_START(EDB7211, "CL-EDB7211 (EP7211 eval board)")
171 /* Maintainer: Jon McClintock */
172 .atag_offset = VIDEORAM_SIZE + 0x100,
173 .fixup = fixup_edb7211,
Alexander Shiyan2a552892012-10-10 19:45:33 +0400174 .reserve = edb7211_reserve,
Alexander Shiyanea04dd32013-07-18 22:34:55 +0400175 .map_io = clps711x_map_io,
Alexander Shiyan2a552892012-10-10 19:45:33 +0400176 .init_irq = clps711x_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700177 .init_time = clps711x_timer_init,
Alexander Shiyan402277e2014-06-19 19:26:37 +0400178 .init_machine = clps711x_devices_init,
Alexander Shiyane328b882013-04-26 19:47:29 +0400179 .init_late = edb7211_init_late,
Alexander Shiyan2a552892012-10-10 19:45:33 +0400180 .restart = clps711x_restart,
181MACHINE_END