]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - board/freescale/mpc8610hpcd/mpc8610hpcd.c
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[karo-tx-uboot.git] / board / freescale / mpc8610hpcd / mpc8610hpcd.c
index 159e7d1d8190f6b23e11b3df1547bf7912ab0108..2bcd5e6b659f6ee7c4d3ffab0598269bf6c0e678 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2007 Freescale Semiconductor, Inc.
+ * Copyright 2007,2009-2011 Freescale Semiconductor, Inc.
  *
  * See file CREDITS for list of people who contributed to this
  * project.
@@ -25,8 +25,9 @@
 #include <pci.h>
 #include <asm/processor.h>
 #include <asm/immap_86xx.h>
-#include <asm/immap_fsl_pci.h>
+#include <asm/fsl_pci.h>
 #include <asm/fsl_ddr_sdram.h>
+#include <asm/fsl_serdes.h>
 #include <i2c.h>
 #include <asm/io.h>
 #include <libfdt.h>
 #include <spd_sdram.h>
 #include <netdev.h>
 
-#include "../common/pixis.h"
-
 void sdram_init(void);
-long int fixed_sdram(void);
-void mpc8610hpcd_diu_init(void);
+phys_size_t fixed_sdram(void);
+int mpc8610hpcd_diu_init(void);
 
 
 /* called before any console output */
@@ -55,16 +54,17 @@ int board_early_init_f(void)
 int misc_init_r(void)
 {
        u8 tmp_val, version;
+       u8 *pixis_base = (u8 *)PIXIS_BASE;
 
        /*Do not use 8259PIC*/
-       tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
-       out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x80);
+       tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
+       out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
 
        /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
-       version = in8(PIXIS_BASE + PIXIS_PVER);
+       version = in_8(pixis_base + PIXIS_PVER);
        if(version >= 0x07) {
-               tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
-               out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xbf);
+               tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
+               out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
        }
 
        /* Using this for DIU init before the driver in linux takes over
@@ -76,18 +76,14 @@ int misc_init_r(void)
        /* Verify if enabled */
        tmp_val = 0;
        i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
-       debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
+       debug("DVI Encoder Read: 0x%02x\n", tmp_val);
 
        tmp_val = 0x10;
        i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
        /* Verify if enabled */
        tmp_val = 0;
        i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
-       debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
-
-#ifdef CONFIG_FSL_DIU_FB
-       mpc8610hpcd_diu_init();
-#endif
+       debug("DVI Encoder Read: 0x%02x\n", tmp_val);
 
        return 0;
 }
@@ -96,11 +92,33 @@ int checkboard(void)
 {
        volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
        volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
+       u8 *pixis_base = (u8 *)PIXIS_BASE;
 
-       printf ("Board: MPC8610HPCD, System ID: 0x%02x, "
-               "System Version: 0x%02x, FPGA Version: 0x%02x\n",
-               in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
-               in8(PIXIS_BASE + PIXIS_PVER));
+       printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
+               "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
+               in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
+               in_8(pixis_base + PIXIS_PVER));
+
+       /*
+        * The MPC8610 HPCD workbook says that LBMAP=11 is the "normal" boot
+        * bank and LBMAP=00 is the alternate bank.  However, the pixis
+        * altbank code can only set bits, not clear them, so we treat 00 as
+        * the normal bank and 11 as the alternate.
+        */
+       switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
+       case 0:
+               puts("vBank: Standard\n");
+               break;
+       case 0x40:
+               puts("Promjet\n");
+               break;
+       case 0x80:
+               puts("NAND\n");
+               break;
+       case 0xC0:
+               puts("vBank: Alternate\n");
+               break;
+       }
 
        mcm->abcr |= 0x00010000; /* 0 */
        mcm->hpmr3 = 0x80000008; /* 4c */
@@ -117,7 +135,7 @@ int checkboard(void)
 phys_size_t
 initdram(int board_type)
 {
-       long dram_size = 0;
+       phys_size_t dram_size = 0;
 
 #if defined(CONFIG_SPD_EEPROM)
        dram_size = fsl_ddr_sdram();
@@ -125,12 +143,9 @@ initdram(int board_type)
        dram_size = fixed_sdram();
 #endif
 
-#if defined(CONFIG_SYS_RAMBOOT)
-       puts(" DDR: ");
-       return dram_size;
-#endif
+       setup_ddr_bat(dram_size);
 
-       puts(" DDR: ");
+       debug(" DDR: ");
        return dram_size;
 }
 
@@ -140,7 +155,7 @@ initdram(int board_type)
  * Fixed sdram init -- doesn't use serial presence detect.
  */
 
-long int fixed_sdram(void)
+phys_size_t fixed_sdram(void)
 {
 #if !defined(CONFIG_SYS_RAMBOOT)
        volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
@@ -154,7 +169,7 @@ long int fixed_sdram(void)
        ddr->timing_cfg_0 = 0x00260802;
        ddr->timing_cfg_1 = 0x3935d322;
        ddr->timing_cfg_2 = 0x14904cc8;
-       ddr->sdram_mode_1 = 0x00480432;
+       ddr->sdram_mode = 0x00480432;
        ddr->sdram_mode_2 = 0x00000000;
        ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
        ddr->sdram_data_init = 0xDEADBEEF;
@@ -170,7 +185,7 @@ long int fixed_sdram(void)
 
        udelay(500);
 
-       ddr->sdram_cfg_1 = 0xc3000000; /* 0xe3008000;*/
+       ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
 
 
 #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
@@ -212,225 +227,59 @@ static struct pci_config_table pci_fsl86xxads_config_table[] = {
 #endif
 
 
-static struct pci_controller pci1_hose = {
-#ifndef CONFIG_PCI_PNP
-config_table:pci_mpc86xxcts_config_table
-#endif
-};
+static struct pci_controller pci1_hose;
 #endif /* CONFIG_PCI */
 
-#ifdef CONFIG_PCIE1
-static struct pci_controller pcie1_hose;
-#endif
-
-#ifdef CONFIG_PCIE2
-static struct pci_controller pcie2_hose;
-#endif
-
-int first_free_busno = 0;
-
-extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
-extern void fsl_pci_init(struct pci_controller *hose);
-
 void pci_init_board(void)
 {
        volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
        volatile ccsr_gur_t *gur = &immap->im_gur;
-       uint devdisr = gur->devdisr;
-       uint io_sel = (gur->pordevsr & MPC8610_PORDEVSR_IO_SEL)
-               >> MPC8610_PORDEVSR_IO_SEL_SHIFT;
-       uint host_agent = (gur->porbmsr & MPC8610_PORBMSR_HA)
-               >> MPC8610_PORBMSR_HA_SHIFT;
-
-       printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
-               devdisr, io_sel, host_agent);
-
-#ifdef CONFIG_PCIE1
- {
-       volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
-       struct pci_controller *hose = &pcie1_hose;
-       int pcie_configured = (io_sel == 1) || (io_sel == 4);
-       int pcie_ep = (host_agent == 0) || (host_agent == 2) ||
-               (host_agent == 5);
-       struct pci_region *r = hose->regions;
-
-       if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) {
-               printf(" PCIe 1 connected to Uli as %s (base address %x)\n",
-                       pcie_ep ? "End Point" : "Root Complex",
-                       (uint)pci);
-               if (pci->pme_msg_det)
-                       pci->pme_msg_det = 0xffffffff;
-
-               /* inbound */
-               r += fsl_pci_setup_inbound_windows(r);
-
-               /* outbound memory */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCIE1_MEM_BASE,
-                        CONFIG_SYS_PCIE1_MEM_PHYS,
-                        CONFIG_SYS_PCIE1_MEM_SIZE,
-                        PCI_REGION_MEM);
-
-               /* outbound io */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCIE1_IO_BASE,
-                        CONFIG_SYS_PCIE1_IO_PHYS,
-                        CONFIG_SYS_PCIE1_IO_SIZE,
-                        PCI_REGION_IO);
-
-               hose->region_count = r - hose->regions;
-
-               hose->first_busno = first_free_busno;
-               pci_setup_indirect(hose, (int)&pci->cfg_addr,
-                                (int)&pci->cfg_data);
-
-               fsl_pci_init(hose);
-
-               first_free_busno = hose->last_busno + 1;
-               printf(" PCI-Express 1 on bus %02x - %02x\n",
-                       hose->first_busno, hose->last_busno);
-
-       } else
-               puts(" PCI-Express 1: Disabled\n");
- }
-#else
-       puts("PCI-Express 1: Disabled\n");
-#endif /* CONFIG_PCIE1 */
-
-
-#ifdef CONFIG_PCIE2
- {
-       volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
-       struct pci_controller *hose = &pcie2_hose;
-       struct pci_region *r = hose->regions;
-
-       int pcie_configured = (io_sel == 0) || (io_sel == 4);
-       int pcie_ep = (host_agent == 0) || (host_agent == 1) ||
-               (host_agent == 4);
-
-       if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) {
-               printf(" PCI-Express 2 connected to slot as %s" \
-                       " (base address %x)\n",
-                       pcie_ep ? "End Point" : "Root Complex",
-                       (uint)pci);
-               if (pci->pme_msg_det)
-                       pci->pme_msg_det = 0xffffffff;
-
-               /* inbound */
-               r += fsl_pci_setup_inbound_windows(r);
-
-               /* outbound memory */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCIE2_MEM_BASE,
-                        CONFIG_SYS_PCIE2_MEM_PHYS,
-                        CONFIG_SYS_PCIE2_MEM_SIZE,
-                        PCI_REGION_MEM);
-
-               /* outbound io */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCIE2_IO_BASE,
-                        CONFIG_SYS_PCIE2_IO_PHYS,
-                        CONFIG_SYS_PCIE2_IO_SIZE,
-                        PCI_REGION_IO);
-
-               hose->region_count = r - hose->regions;
-
-               hose->first_busno = first_free_busno;
-               pci_setup_indirect(hose, (int)&pci->cfg_addr,
-                                (int)&pci->cfg_data);
-
-               fsl_pci_init(hose);
-
-               first_free_busno = hose->last_busno + 1;
-               printf(" PCI-Express 2 on bus %02x - %02x\n",
-                       hose->first_busno, hose->last_busno);
-       } else
-               puts(" PCI-Express 2: Disabled\n");
- }
-#else
-       puts("PCI-Express 2: Disabled\n");
-#endif /* CONFIG_PCIE2 */
+       struct fsl_pci_info pci_info;
+       u32 devdisr;
+       int first_free_busno;
+       int pci_agent;
 
+       devdisr = in_be32(&gur->devdisr);
+
+       first_free_busno = fsl_pcie_init_board(0);
 
 #ifdef CONFIG_PCI1
- {
-       volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
-       struct pci_controller *hose = &pci1_hose;
-       int pci_agent = (host_agent >= 4) && (host_agent <= 6);
-       struct pci_region *r = hose->regions;
-
-       if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) {
-               printf(" PCI connected to PCI slots as %s" \
-                       " (base address %x)\n",
+       if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
+               SET_STD_PCI_INFO(pci_info, 1);
+               set_next_law(pci_info.mem_phys,
+                       law_size_bits(pci_info.mem_size), pci_info.law);
+               set_next_law(pci_info.io_phys,
+                       law_size_bits(pci_info.io_size), pci_info.law);
+
+               pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
+               printf("PCI: connected to PCI slots as %s" \
+                       " (base address %lx)\n",
                        pci_agent ? "Agent" : "Host",
-                       (uint)pci);
-
-               /* inbound */
-               r += fsl_pci_setup_inbound_windows(r);
-
-               /* outbound memory */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCI1_MEM_BASE,
-                        CONFIG_SYS_PCI1_MEM_PHYS,
-                        CONFIG_SYS_PCI1_MEM_SIZE,
-                        PCI_REGION_MEM);
-
-               /* outbound io */
-               pci_set_region(r++,
-                        CONFIG_SYS_PCI1_IO_BASE,
-                        CONFIG_SYS_PCI1_IO_PHYS,
-                        CONFIG_SYS_PCI1_IO_SIZE,
-                        PCI_REGION_IO);
-
-               hose->region_count = r - hose->regions;
-
-               hose->first_busno = first_free_busno;
-               pci_setup_indirect(hose, (int) &pci->cfg_addr,
-                                (int) &pci->cfg_data);
-
-               fsl_pci_init(hose);
-
-               first_free_busno = hose->last_busno + 1;
-               printf(" PCI on bus %02x - %02x\n",
-                       hose->first_busno, hose->last_busno);
+                       pci_info.regs);
+#ifndef CONFIG_PCI_PNP
+               pci1_hose.config_table = pci_mpc86xxcts_config_table;
+#endif
+               first_free_busno = fsl_pci_init_port(&pci_info,
+                                       &pci1_hose, first_free_busno);
+       } else {
+               printf("PCI: disabled\n");
+       }
 
+       puts("\n");
+#else
+       setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
+#endif
 
-       } else
-               puts(" PCI: Disabled\n");
- }
-#endif /* CONFIG_PCI1 */
+       fsl_pcie_init_board(first_free_busno);
 }
 
 #if defined(CONFIG_OF_BOARD_SETUP)
-extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
-                       struct pci_controller *hose);
-
 void
 ft_board_setup(void *blob, bd_t *bd)
 {
-       do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
-                            "timebase-frequency", bd->bi_busfreq / 4, 1);
-       do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
-                            "bus-frequency", bd->bi_busfreq, 1);
-       do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
-                            "clock-frequency", bd->bi_intfreq, 1);
-       do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
-                            "bus-frequency", bd->bi_busfreq, 1);
-
-       do_fixup_by_compat_u32(blob, "ns16550",
-                              "clock-frequency", bd->bi_busfreq, 1);
-
-       fdt_fixup_memory(blob, bd->bi_memstart, bd->bi_memsize);
+       ft_cpu_setup(blob, bd);
 
-#ifdef CONFIG_PCI1
-       ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
-#endif
-#ifdef CONFIG_PCIE1
-       ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
-#endif
-#ifdef CONFIG_PCIE2
-       ft_fsl_pci_setup(blob, "pci2", &pcie2_hose);
-#endif
+       FT_FSL_PCI_SETUP;
 }
 #endif
 
@@ -444,10 +293,9 @@ get_board_sys_clk(ulong dummy)
 {
        u8 i;
        ulong val = 0;
-       ulong a;
+       u8 *pixis_base = (u8 *)PIXIS_BASE;
 
-       a = PIXIS_BASE + PIXIS_SPD;
-       i = in8(a);
+       i = in_8(pixis_base + PIXIS_SPD);
        i &= 0x07;
 
        switch (i) {
@@ -484,3 +332,13 @@ int board_eth_init(bd_t *bis)
 {
        return pci_eth_init(bis);
 }
+
+void board_reset(void)
+{
+       u8 *pixis_base = (u8 *)PIXIS_BASE;
+
+       out_8(pixis_base + PIXIS_RST, 0);
+
+       while (1)
+               ;
+}