Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
[oweals/u-boot.git] / board / ttcontrol / vision2 / vision2.c
index ce4cb78e9811f7e2f276b9dc8f7c3b7c7246f71f..ebca7b6f368cfc07289c6ca26b0112b2f958037c 100644 (file)
@@ -29,7 +29,7 @@
 #include <asm/arch/mx5x_pins.h>
 #include <asm/arch/crm_regs.h>
 #include <asm/arch/iomux.h>
-#include <mxc_gpio.h>
+#include <asm/gpio.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/errno.h>
 #include <i2c.h>
 #include <fsl_esdhc.h>
 #include <fsl_pmic.h>
 #include <mc13892.h>
+#include <linux/fb.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 
 static u32 system_rev;
 
+extern int mx51_fb_init(struct fb_videomode *mode);
+
+static struct fb_videomode nec_nl6448bc26_09c = {
+       "NEC_NL6448BC26-09C",
+       60,     /* Refresh */
+       640,    /* xres */
+       480,    /* yres */
+       37650,  /* pixclock = 26.56Mhz */
+       48,     /* left margin */
+       16,     /* right margin */
+       31,     /* upper margin */
+       12,     /* lower margin */
+       96,     /* hsync-len */
+       2,      /* vsync-len */
+       0,      /* sync */
+       FB_VMODE_NONINTERLACED, /* vmode */
+       0,      /* flag */
+};
+
 #ifdef CONFIG_HW_WATCHDOG
 #include <watchdog.h>
-
 void hw_watchdog_reset(void)
 {
        int val;
 
        /* toggle watchdog trigger pin */
-       val = mxc_gpio_get(66);
+       val = gpio_get_value(66);
        val = val ? 0 : 1;
-       mxc_gpio_set(66, val);
+       gpio_set_value(66, val);
 }
 #endif
 
@@ -140,19 +159,8 @@ u32 get_board_rev(void)
 
 int dram_init(void)
 {
-#ifdef CONFIG_SYS_ARM_WITHOUT_RELOC
-       gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
-       gd->bd->bi_dram[0].size = get_ram_size((long *)PHYS_SDRAM_1,
-               PHYS_SDRAM_1_SIZE);
-#if (CONFIG_NR_DRAM_BANKS > 1)
-       gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
-       gd->bd->bi_dram[1].size = get_ram_size((long *)PHYS_SDRAM_2,
-               PHYS_SDRAM_2_SIZE);
-#endif
-#else
        gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1,
                PHYS_SDRAM_1_SIZE);
-#endif
 
        return 0;
 }
@@ -161,11 +169,11 @@ static void setup_weim(void)
 {
        struct weim  *pweim = (struct weim *)WEIM_BASE_ADDR;
 
-       pweim->csgcr1 = 0x004100b9;
-       pweim->csgcr2 = 0x00000001;
-       pweim->csrcr1 = 0x0a018000;
-       pweim->csrcr2 = 0;
-       pweim->cswcr1 = 0x0704a240;
+       pweim->cs0gcr1 = 0x004100b9;
+       pweim->cs0gcr2 = 0x00000001;
+       pweim->cs0rcr1 = 0x0a018000;
+       pweim->cs0rcr2 = 0;
+       pweim->cs0wcr1 = 0x0704a240;
 }
 
 static void setup_uart(void)
@@ -225,30 +233,22 @@ static void reset_peripherals(int reset)
        if (reset) {
 
                /* reset_n is on NANDF_D15 */
-               mxc_gpio_set(89, 0);
-               mxc_gpio_direction(89, MXC_GPIO_DIRECTION_OUT);
+               gpio_direction_output(89, 0);
 
 #ifdef CONFIG_VISION2_HW_1_0
                /*
                 * set FEC Configuration lines
                 * set levels of FEC config lines
                 */
-               mxc_gpio_set(75, 0);
-               mxc_gpio_set(74, 1);
-               mxc_gpio_set(95, 1);
-               mxc_gpio_direction(75, MXC_GPIO_DIRECTION_OUT);
-               mxc_gpio_direction(74, MXC_GPIO_DIRECTION_OUT);
-               mxc_gpio_direction(95, MXC_GPIO_DIRECTION_OUT);
+               gpio_direction_output(75, 0);
+               gpio_direction_output(74, 1);
+               gpio_direction_output(95, 1);
 
                /* set direction of FEC config lines */
-               mxc_gpio_set(59, 0);
-               mxc_gpio_set(60, 0);
-               mxc_gpio_set(61, 0);
-               mxc_gpio_set(55, 1);
-               mxc_gpio_direction(59, MXC_GPIO_DIRECTION_OUT);
-               mxc_gpio_direction(60, MXC_GPIO_DIRECTION_OUT);
-               mxc_gpio_direction(61, MXC_GPIO_DIRECTION_OUT);
-               mxc_gpio_direction(55, MXC_GPIO_DIRECTION_OUT);
+               gpio_direction_output(59, 0);
+               gpio_direction_output(60, 0);
+               gpio_direction_output(61, 0);
+               gpio_direction_output(55, 1);
 
                /* FEC_RXD1 - sel GPIO (2-23) for configuration -> 1 */
                mxc_request_iomux(MX51_PIN_EIM_EB3, IOMUX_CONFIG_ALT1);
@@ -275,7 +275,7 @@ static void reset_peripherals(int reset)
                        PAD_CTL_DRV_VOT_HIGH | PAD_CTL_DRV_MAX);
        } else {
                /* set FEC Control lines */
-               mxc_gpio_direction(89, MXC_GPIO_DIRECTION_IN);
+               gpio_direction_input(89);
                udelay(500);
 
 #ifdef CONFIG_VISION2_HW_1_0
@@ -423,35 +423,30 @@ static void setup_gpios(void)
        mxc_request_iomux(MX51_PIN_CSPI1_RDY, IOMUX_CONFIG_ALT3);
        mxc_iomux_set_pad(MX51_PIN_CSPI1_RDY, 0x82);
 
+       /* PWM Output GPIO1_2 */
+       mxc_request_iomux(MX51_PIN_GPIO1_2, IOMUX_CONFIG_ALT1);
+
        /*
         * Set GPIO1_4 to high and output; it is used to reset
         * the system on reboot
         */
-       mxc_gpio_set(4, 1);
-       mxc_gpio_direction(4, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(4, 1);
 
-       mxc_gpio_set(7, 0);
-       mxc_gpio_direction(7, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(7, 0);
        for (i = 65; i < 71; i++) {
-               mxc_gpio_set(i, 0);
-               mxc_gpio_direction(i, MXC_GPIO_DIRECTION_OUT);
+               gpio_direction_output(i, 0);
        }
 
-       mxc_gpio_set(94, 0);
-       mxc_gpio_direction(94, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(94, 0);
 
        /* Set POWER_OFF high */
-       mxc_gpio_set(91, 1);
-       mxc_gpio_direction(91, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(91, 1);
 
-       mxc_gpio_set(90, 0);
-       mxc_gpio_direction(90, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(90, 0);
 
-       mxc_gpio_set(122, 0);
-       mxc_gpio_direction(122, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(122, 0);
 
-       mxc_gpio_set(121, 1);
-       mxc_gpio_direction(121, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(121, 1);
 
        WATCHDOG_RESET();
 }
@@ -540,7 +535,7 @@ int get_mmc_getcd(u8 *cd, struct mmc *mmc)
        struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv;
 
        if (cfg->esdhc_base == MMC_SDHC1_BASE_ADDR)
-               *cd = mxc_gpio_get(0);
+               *cd = gpio_get_value(0);
        else
                *cd = 0;
 
@@ -612,8 +607,7 @@ int board_early_init_f(void)
        init_drive_strength();
 
        /* Setup debug led */
-       mxc_gpio_set(6, 0);
-       mxc_gpio_direction(6, MXC_GPIO_DIRECTION_OUT);
+       gpio_direction_output(6, 0);
        mxc_request_iomux(MX51_PIN_GPIO1_6, IOMUX_CONFIG_ALT0);
        mxc_iomux_set_pad(MX51_PIN_GPIO1_6, PAD_CTL_DRV_MAX | PAD_CTL_SRE_FAST);
 
@@ -630,12 +624,35 @@ int board_early_init_f(void)
        return 0;
 }
 
+static void backlight(int on)
+{
+       if (on) {
+               gpio_set_value(65, 1);
+               udelay(10000);
+               gpio_set_value(68, 1);
+       } else {
+               gpio_set_value(65, 0);
+               gpio_set_value(68, 0);
+       }
+}
+
+void lcd_enable(void)
+{
+       int ret;
+
+       mxc_request_iomux(MX51_PIN_DI1_PIN2, IOMUX_CONFIG_ALT0);
+       mxc_request_iomux(MX51_PIN_DI1_PIN3, IOMUX_CONFIG_ALT0);
+
+       gpio_set_value(2, 1);
+       mxc_request_iomux(MX51_PIN_GPIO1_2, IOMUX_CONFIG_ALT0);
+
+       ret = mx51_fb_init(&nec_nl6448bc26_09c);
+       if (ret)
+               puts("LCD cannot be configured\n");
+}
+
 int board_init(void)
 {
-#ifdef CONFIG_SYS_ARM_WITHOUT_RELOC
-       board_early_init_f();
-#endif
-       gd->bd->bi_arch_number = MACH_TYPE_TTC_VISION2; /* board id for linux */
        /* address of boot parameters */
        gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
 
@@ -664,48 +681,26 @@ int board_late_init(void)
 
 int checkboard(void)
 {
-       u32 system_rev = get_cpu_rev();
-       u32 cause;
-       struct src *src_regs = (struct src *)SRC_BASE_ADDR;
-
-       puts("Board: TTControl Vision II CPU V");
-
-       switch (system_rev & 0xff) {
-       case CHIP_REV_3_0:
-               puts("3.0 [");
-               break;
-       case CHIP_REV_2_5:
-               puts("2.5 [");
-               break;
-       case CHIP_REV_2_0:
-               puts("2.0 [");
-               break;
-       case CHIP_REV_1_1:
-               puts("1.1 [");
-               break;
-       case CHIP_REV_1_0:
-       default:
-               puts("1.0 [");
-               break;
-       }
+       puts("Board: TTControl Vision II CPU V\n");
 
-       cause = src_regs->srsr;
-       switch (cause) {
-       case 0x0001:
-               puts("POR");
-               break;
-       case 0x0009:
-               puts("RST");
-               break;
-       case 0x0010:
-       case 0x0011:
-               puts("WDOG");
-               break;
-       default:
-               printf("unknown 0x%x", cause);
-       }
-       puts("]\n");
+       return 0;
+}
+
+int do_vision_lcd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
+{
+       int on;
+
+       if (argc < 2)
+               return cmd_usage(cmdtp);
+
+       on = (strcmp(argv[1], "on") == 0);
+       backlight(on);
 
        return 0;
 }
 
+U_BOOT_CMD(
+       lcdbl, CONFIG_SYS_MAXARGS, 1, do_vision_lcd,
+       "Vision2 Backlight",
+       "lcdbl [on|off]\n"
+);