blob: 7e9a21dddd4d19473279b988f34a5e7d2640318f [file] [log] [blame]
Ian Molton7dc96412008-08-19 12:14:21 +01001/*
2 * Hardware definitions for the Toshiba eseries PDAs
3 *
4 * Copyright (c) 2003 Ian Molton <spyro@f2s.com>
5 *
6 * This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 *
11 */
12
13#include <linux/kernel.h>
14#include <linux/init.h>
Ian Molton0ec3cf62008-08-19 13:01:28 +010015#include <linux/device.h>
16#include <linux/platform_device.h>
17#include <linux/fb.h>
18
19#include <video/w100fb.h>
Ian Molton7dc96412008-08-19 12:14:21 +010020
21#include <asm/setup.h>
22#include <asm/mach/arch.h>
23#include <asm/mach-types.h>
24
25#include <mach/mfp-pxa25x.h>
26#include <mach/hardware.h>
27
28#include "generic.h"
29#include "eseries.h"
30
Ian Molton0ec3cf62008-08-19 13:01:28 +010031/* ---------------------- E750 LCD definitions -------------------- */
32
33static struct w100_gen_regs e750_lcd_regs = {
34 .lcd_format = 0x00008003,
35 .lcdd_cntl1 = 0x00000000,
36 .lcdd_cntl2 = 0x0003ffff,
37 .genlcd_cntl1 = 0x00fff003,
38 .genlcd_cntl2 = 0x003c0f03,
39 .genlcd_cntl3 = 0x000143aa,
40};
41
42static struct w100_mode e750_lcd_mode = {
43 .xres = 240,
44 .yres = 320,
45 .left_margin = 21,
46 .right_margin = 22,
47 .upper_margin = 5,
48 .lower_margin = 4,
49 .crtc_ss = 0x80150014,
50 .crtc_ls = 0x8014000d,
51 .crtc_gs = 0xc1000005,
52 .crtc_vpos_gs = 0x00020147,
53 .crtc_rev = 0x0040010a,
54 .crtc_dclk = 0xa1700030,
55 .crtc_gclk = 0x80cc0015,
56 .crtc_goe = 0x80cc0015,
57 .crtc_ps1_active = 0x61060017,
58 .pll_freq = 57,
59 .pixclk_divider = 4,
60 .pixclk_divider_rotated = 4,
61 .pixclk_src = CLK_SRC_XTAL,
62 .sysclk_divider = 1,
63 .sysclk_src = CLK_SRC_PLL,
64};
65
66static struct w100_gpio_regs e750_w100_gpio_info = {
67 .init_data1 = 0x01192f1b,
68 .gpio_dir1 = 0xd5ffdeff,
69 .gpio_oe1 = 0x000020bf,
70 .init_data2 = 0x010f010f,
71 .gpio_dir2 = 0xffffffff,
72 .gpio_oe2 = 0x000001cf,
73};
74
75static struct w100fb_mach_info e750_fb_info = {
76 .modelist = &e750_lcd_mode,
77 .num_modes = 1,
78 .regs = &e750_lcd_regs,
79 .gpio = &e750_w100_gpio_info,
80 .xtal_freq = 14318000,
81 .xtal_dbl = 1,
82};
83
84static struct resource e750_fb_resources[] = {
85 [0] = {
86 .start = 0x0c000000,
87 .end = 0x0cffffff,
88 .flags = IORESOURCE_MEM,
89 },
90};
91
92static struct platform_device e750_fb_device = {
93 .name = "w100fb",
94 .id = -1,
95 .dev = {
96 .platform_data = &e750_fb_info,
97 },
98 .num_resources = ARRAY_SIZE(e750_fb_resources),
99 .resource = e750_fb_resources,
100};
101
102/* ----------------------------------------------------------------------- */
103
104static struct platform_device *devices[] __initdata = {
105 &e750_fb_device,
106};
107
108static void __init e750_init(void)
109{
110 platform_add_devices(devices, ARRAY_SIZE(devices));
111}
112
Ian Molton7dc96412008-08-19 12:14:21 +0100113MACHINE_START(E750, "Toshiba e750")
114 /* Maintainer: Ian Molton (spyro@f2s.com) */
115 .phys_io = 0x40000000,
116 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
117 .boot_params = 0xa0000100,
118 .map_io = pxa_map_io,
119 .init_irq = pxa25x_init_irq,
120 .fixup = eseries_fixup,
Ian Molton0ec3cf62008-08-19 13:01:28 +0100121 .init_machine = e750_init,
Ian Molton7dc96412008-08-19 12:14:21 +0100122 .timer = &pxa_timer,
123MACHINE_END
124