123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- /*
- * linux/arch/arm/mach-sa1100/assabet.c
- *
- * Author: Nicolas Pitre
- *
- * This file contains all Assabet-specific tweaks.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
- #include <linux/init.h>
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/errno.h>
- #include <linux/ioport.h>
- #include <linux/platform_data/sa11x0-serial.h>
- #include <linux/serial_core.h>
- #include <linux/mfd/ucb1x00.h>
- #include <linux/mtd/mtd.h>
- #include <linux/mtd/partitions.h>
- #include <linux/delay.h>
- #include <linux/mm.h>
- #include <linux/leds.h>
- #include <linux/slab.h>
- #include <video/sa1100fb.h>
- #include <mach/hardware.h>
- #include <asm/mach-types.h>
- #include <asm/setup.h>
- #include <asm/page.h>
- #include <asm/pgtable-hwdef.h>
- #include <asm/pgtable.h>
- #include <asm/tlbflush.h>
- #include <asm/mach/arch.h>
- #include <asm/mach/flash.h>
- #include <asm/mach/irda.h>
- #include <asm/mach/map.h>
- #include <mach/assabet.h>
- #include <linux/platform_data/mfd-mcp-sa11x0.h>
- #include <mach/irqs.h>
- #include "generic.h"
- #define ASSABET_BCR_DB1110 \
- (ASSABET_BCR_SPK_OFF | \
- ASSABET_BCR_LED_GREEN | ASSABET_BCR_LED_RED | \
- ASSABET_BCR_RS232EN | ASSABET_BCR_LCD_12RGB | \
- ASSABET_BCR_IRDA_MD0)
- #define ASSABET_BCR_DB1111 \
- (ASSABET_BCR_SPK_OFF | \
- ASSABET_BCR_LED_GREEN | ASSABET_BCR_LED_RED | \
- ASSABET_BCR_RS232EN | ASSABET_BCR_LCD_12RGB | \
- ASSABET_BCR_CF_BUS_OFF | ASSABET_BCR_STEREO_LB | \
- ASSABET_BCR_IRDA_MD0 | ASSABET_BCR_CF_RST)
- unsigned long SCR_value = ASSABET_SCR_INIT;
- EXPORT_SYMBOL(SCR_value);
- static unsigned long BCR_value = ASSABET_BCR_DB1110;
- void ASSABET_BCR_frob(unsigned int mask, unsigned int val)
- {
- unsigned long flags;
- local_irq_save(flags);
- BCR_value = (BCR_value & ~mask) | val;
- ASSABET_BCR = BCR_value;
- local_irq_restore(flags);
- }
- EXPORT_SYMBOL(ASSABET_BCR_frob);
- static void assabet_ucb1x00_reset(enum ucb1x00_reset state)
- {
- if (state == UCB_RST_PROBE)
- ASSABET_BCR_set(ASSABET_BCR_CODEC_RST);
- }
- /*
- * Assabet flash support code.
- */
- #ifdef ASSABET_REV_4
- /*
- * Phase 4 Assabet has two 28F160B3 flash parts in bank 0:
- */
- static struct mtd_partition assabet_partitions[] = {
- {
- .name = "bootloader",
- .size = 0x00020000,
- .offset = 0,
- .mask_flags = MTD_WRITEABLE,
- }, {
- .name = "bootloader params",
- .size = 0x00020000,
- .offset = MTDPART_OFS_APPEND,
- .mask_flags = MTD_WRITEABLE,
- }, {
- .name = "jffs",
- .size = MTDPART_SIZ_FULL,
- .offset = MTDPART_OFS_APPEND,
- }
- };
- #else
- /*
- * Phase 5 Assabet has two 28F128J3A flash parts in bank 0:
- */
- static struct mtd_partition assabet_partitions[] = {
- {
- .name = "bootloader",
- .size = 0x00040000,
- .offset = 0,
- .mask_flags = MTD_WRITEABLE,
- }, {
- .name = "bootloader params",
- .size = 0x00040000,
- .offset = MTDPART_OFS_APPEND,
- .mask_flags = MTD_WRITEABLE,
- }, {
- .name = "jffs",
- .size = MTDPART_SIZ_FULL,
- .offset = MTDPART_OFS_APPEND,
- }
- };
- #endif
- static struct flash_platform_data assabet_flash_data = {
- .map_name = "cfi_probe",
- .parts = assabet_partitions,
- .nr_parts = ARRAY_SIZE(assabet_partitions),
- };
- static struct resource assabet_flash_resources[] = {
- DEFINE_RES_MEM(SA1100_CS0_PHYS, SZ_32M),
- DEFINE_RES_MEM(SA1100_CS1_PHYS, SZ_32M),
- };
- /*
- * Assabet IrDA support code.
- */
- static int assabet_irda_set_power(struct device *dev, unsigned int state)
- {
- static unsigned int bcr_state[4] = {
- ASSABET_BCR_IRDA_MD0,
- ASSABET_BCR_IRDA_MD1|ASSABET_BCR_IRDA_MD0,
- ASSABET_BCR_IRDA_MD1,
- 0
- };
- if (state < 4) {
- state = bcr_state[state];
- ASSABET_BCR_clear(state ^ (ASSABET_BCR_IRDA_MD1|
- ASSABET_BCR_IRDA_MD0));
- ASSABET_BCR_set(state);
- }
- return 0;
- }
- static void assabet_irda_set_speed(struct device *dev, unsigned int speed)
- {
- if (speed < 4000000)
- ASSABET_BCR_clear(ASSABET_BCR_IRDA_FSEL);
- else
- ASSABET_BCR_set(ASSABET_BCR_IRDA_FSEL);
- }
- static struct irda_platform_data assabet_irda_data = {
- .set_power = assabet_irda_set_power,
- .set_speed = assabet_irda_set_speed,
- };
- static struct ucb1x00_plat_data assabet_ucb1x00_data = {
- .reset = assabet_ucb1x00_reset,
- .gpio_base = -1,
- };
- static struct mcp_plat_data assabet_mcp_data = {
- .mccr0 = MCCR0_ADM,
- .sclk_rate = 11981000,
- .codec_pdata = &assabet_ucb1x00_data,
- };
- static void assabet_lcd_set_visual(u32 visual)
- {
- u_int is_true_color = visual == FB_VISUAL_TRUECOLOR;
- if (machine_is_assabet()) {
- #if 1 // phase 4 or newer Assabet's
- if (is_true_color)
- ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);
- else
- ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);
- #else
- // older Assabet's
- if (is_true_color)
- ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);
- else
- ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);
- #endif
- }
- }
- #ifndef ASSABET_PAL_VIDEO
- static void assabet_lcd_backlight_power(int on)
- {
- if (on)
- ASSABET_BCR_set(ASSABET_BCR_LIGHT_ON);
- else
- ASSABET_BCR_clear(ASSABET_BCR_LIGHT_ON);
- }
- /*
- * Turn on/off the backlight. When turning the backlight on, we wait
- * 500us after turning it on so we don't cause the supplies to droop
- * when we enable the LCD controller (and cause a hard reset.)
- */
- static void assabet_lcd_power(int on)
- {
- if (on) {
- ASSABET_BCR_set(ASSABET_BCR_LCD_ON);
- udelay(500);
- } else
- ASSABET_BCR_clear(ASSABET_BCR_LCD_ON);
- }
- /*
- * The assabet uses a sharp LQ039Q2DS54 LCD module. It is actually
|