]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
authorKumar Gala <galak@kernel.crashing.org>
Wed, 2 Sep 2009 14:03:08 +0000 (09:03 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Tue, 8 Sep 2009 14:10:07 +0000 (09:10 -0500)
Refactor the code into a simple bitmask lookup table that determines if
a given PCI controller is enabled and if its in host/root-complex or
agent/end-point mode.

Each processor in the PQ3/MPC86xx family specified different encodings
for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16 files changed:
board/atum8548/atum8548.c
board/freescale/mpc8536ds/mpc8536ds.c
board/freescale/mpc8544ds/mpc8544ds.c
board/freescale/mpc8548cds/mpc8548cds.c
board/freescale/mpc8568mds/mpc8568mds.c
board/freescale/mpc8569mds/mpc8569mds.c
board/freescale/mpc8572ds/mpc8572ds.c
board/freescale/mpc8610hpcd/mpc8610hpcd.c
board/freescale/mpc8641hpcn/mpc8641hpcn.c
board/freescale/p1_p2_rdb/pci.c
board/freescale/p2020ds/p2020ds.c
board/sbc8548/sbc8548.c
board/tqc/tqm85xx/tqm85xx.c
cpu/mpc8xxx/Makefile
cpu/mpc8xxx/pci_cfg.c [new file with mode: 0644]
include/asm-ppc/fsl_pci.h

index 85c0adc70cf6c49de0f2896eb6341fe9f6ebb3a2..a220ad4d7af483b0cd7710333feac7a0a99045b7 100644 (file)
@@ -202,8 +202,8 @@ pci_init_board(void)
  {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep = (host_agent == 5);
-       int pcie_configured  = io_sel & 6;
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -262,7 +262,7 @@ pci_init_board(void)
        struct pci_controller *hose = &pci1_hose;
        struct pci_region *r = hose->regions;
 
-       uint pci_agent = (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
        uint pci_speed = 33333000; /*get_clock_freq (); PCI PSPEED in [4:5] */
        uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;      /* PORDEVSR[15] */
        uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
index 032d7323b5937dd24e0a80a29ee3f2476e9bc290..da729166b14af4cc79d2d6fc65588bbc77fd5ba1 100644 (file)
@@ -216,8 +216,8 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
        struct pci_controller *hose = &pcie3_hose;
-       int pcie_ep = (host_agent == 1);
-       int pcie_configured  = (io_sel == 7);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_3, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_3, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -265,9 +265,8 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep = (host_agent == 5);
-       int pcie_configured  = (io_sel == 2 || io_sel == 3
-                               || io_sel == 5 || io_sel == 7);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -323,8 +322,8 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
        struct pci_controller *hose = &pcie2_hose;
-       int pcie_ep = (host_agent == 3);
-       int pcie_configured  = (io_sel == 5 || io_sel == 7);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -381,7 +380,7 @@ pci_init_board(void)
        struct pci_controller *hose = &pci1_hose;
        struct pci_region *r = hose->regions;
 
-       uint pci_agent = (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI, host_agent);
        uint pci_speed = 66666000; /*get_clock_freq (); PCI PSPEED in [4:5] */
        uint pci_32 = 1;
        uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
index 5a47d0a008e9976982cb5fd59f343b6040a1b70b..244a197049c1dc0a9005df3ecb75bb4484967fd2 100644 (file)
@@ -125,8 +125,8 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
        struct pci_controller *hose = &pcie3_hose;
-       int pcie_ep = (host_agent == 1);
-       int pcie_configured  = io_sel >= 6;
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_3, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_3, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -188,8 +188,8 @@ pci_init_board(void)
  {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep = (host_agent == 5);
-       int pcie_configured  = io_sel >= 2;
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -246,8 +246,8 @@ pci_init_board(void)
  {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
        struct pci_controller *hose = &pcie2_hose;
-       int pcie_ep = (host_agent == 3);
-       int pcie_configured  = io_sel >= 4;
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
@@ -306,7 +306,7 @@ pci_init_board(void)
        struct pci_controller *hose = &pci1_hose;
        struct pci_region *r = hose->regions;
 
-       uint pci_agent = (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI, host_agent);
        uint pci_speed = 66666000; /*get_clock_freq (); PCI PSPEED in [4:5] */
        uint pci_32 = 1;
        uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
index 9df5f822e159c07f321e698f84c720a7e437aa98..80de6f8762b9d8853ffba511c1cfb7ca9f31cdd7 100644 (file)
@@ -283,7 +283,7 @@ pci_init_board(void)
        uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
        uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;   /* PORPLLSR[16] */
 
-       uint pci_agent = (host_agent == 3) || (host_agent == 4 ) || (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
 
        uint pci_speed = get_clock_freq ();     /* PCI PSPEED in [4:5] */
 
@@ -361,10 +361,10 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep =  (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        struct pci_region *r = hose->regions;
 
-       int pcie_configured  = io_sel >= 1;
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
                printf ("\n    PCIE connected to slot as %s (base address %x)",
index fe505b05c15b7873d06aa4a0136d1e6591e53e8e..e2dc69ea933dca055d69d9c48aed0372070f9562 100644 (file)
@@ -422,10 +422,10 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep =  (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        struct pci_region *r = hose->regions;
 
-       int pcie_configured  = io_sel >= 1;
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
                printf ("\n    PCIE connected to slot as %s (base address %x)",
index 63c21dd2a38b0d109d5c05d97e779d68809929df..cc8873117ef7411fa9a67dd4176c35bc34e46a1a 100644 (file)
@@ -331,9 +331,9 @@ pci_init_board(void)
 
        pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        hose = &pcie1_hose;
-       pcie_ep =  (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        r = hose->regions;
-       pcie_configured  = io_sel >= 1;
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
                printf ("\n    PCIE connected to slot as %s (base address %x)",
index 7da70fe993869632aa12d0ae504cf85347a38767..c69934ca62d708ed4fa73c485a8e3eb51b2ec59e 100644 (file)
@@ -186,9 +186,8 @@ void pci_init_board(void)
        {
                volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
                struct pci_controller *hose = &pcie3_hose;
-               int pcie_ep = (host_agent == 0) || (host_agent == 3) ||
-                       (host_agent == 5) || (host_agent == 6);
-               int pcie_configured  = (io_sel == 0x7);
+               int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_3, host_agent);
+               int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_3, io_sel);
                struct pci_region *r = hose->regions;
                u32 temp32;
 
@@ -252,9 +251,8 @@ void pci_init_board(void)
        {
                volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
                struct pci_controller *hose = &pcie2_hose;
-               int pcie_ep = (host_agent == 2) || (host_agent == 4) ||
-                       (host_agent == 6) || (host_agent == 0);
-               int pcie_configured  = (io_sel == 0x3) || (io_sel == 0x7);
+               int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
+               int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
                struct pci_region *r = hose->regions;
 
                if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)){
@@ -301,11 +299,8 @@ void pci_init_board(void)
        {
                volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
                struct pci_controller *hose = &pcie1_hose;
-               int pcie_ep = (host_agent <= 1) || (host_agent == 4) ||
-                       (host_agent == 5);
-               int pcie_configured  = (io_sel == 0x2) || (io_sel == 0x3) ||
-                                       (io_sel == 0x7) || (io_sel == 0xb) ||
-                                       (io_sel == 0xc) || (io_sel == 0xf);
+               int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+               int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
                struct pci_region *r = hose->regions;
 
                if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
index 45000d92b22c7d18b1f9dd06aaa5eb169290f601..98111eb60bdac4b1879bcd999ee909ef0ba27cd1 100644 (file)
@@ -248,9 +248,8 @@ void pci_init_board(void)
  {
        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);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        struct pci_region *r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) {
@@ -298,9 +297,8 @@ void pci_init_board(void)
        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);
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
 
        if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) {
                printf(" PCI-Express 2 connected to slot as %s" \
@@ -345,7 +343,7 @@ void pci_init_board(void)
  {
        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);
+       int pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
        struct pci_region *r = hose->regions;
 
        if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) {
index fab4fae058c2721a6bb26d9b6d1f35a1c158c182..1a08afa69ec2b8b462a32eb81458101747d3d6a8 100644 (file)
@@ -155,15 +155,14 @@ void pci_init_board(void)
        uint devdisr = gur->devdisr;
        uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL)
                >> MPC8641_PORDEVSR_IO_SEL_SHIFT;
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
 #ifdef DEBUG
        uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA)
                >> MPC8641_PORBMSR_HA_SHIFT;
        uint pex1_agent = (host1_agent == 0) || (host1_agent == 1);
 #endif
-       if ((io_sel == 2 || io_sel == 3 || io_sel == 5
-            || io_sel == 6 || io_sel == 7 || io_sel == 0xF)
-           && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
+       if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) {
                debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host");
                debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det);
                if (pci->pme_msg_det) {
index 174a8a7d78f132a9fc0d60b0cb3f2eacb072a618..a3617d570375c439ad7fbf8d335fcaed45fdba0f 100644 (file)
@@ -59,9 +59,8 @@ void pci_init_board(void)
 
 #ifdef CONFIG_PCIE2
        SET_STD_PCIE_INFO(pci_info[num], 2);
-       pcie_ep = (host_agent == 2) || (host_agent == 4) ||
-               (host_agent == 6) || (host_agent == 0);
-       pcie_configured  = (io_sel == 0xE);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
                puts ("\n    PCIE2 connected to Slot 1 as ");
@@ -80,9 +79,8 @@ void pci_init_board(void)
 #ifdef CONFIG_PCIE1
        SET_STD_PCIE_INFO(pci_info[num], 1);
 
-       pcie_ep = (host_agent <= 1) || (host_agent == 4) ||
-               (host_agent == 5);
-       pcie_configured  = (io_sel == 0xE);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)){
                puts ("\n    PCIE1 connected to Slot 2 as ");
index 3fe72cd32c3dcc9a942889db106298c885316f5b..7ad9be88c32976a4f78999084b6ffc69c215c629 100644 (file)
@@ -219,9 +219,8 @@ void pci_init_board(void)
 #ifdef CONFIG_PCIE2
        pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE2_ADDR;
        hose = &pcie2_hose;
-       pcie_ep = (host_agent == 2) || (host_agent == 4) ||
-                 (host_agent == 6) || (host_agent == 0);
-       pcie_configured = (io_sel == 0x2) || (io_sel == 0xe);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_2, host_agent);
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
        r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE2)) {
@@ -287,9 +286,8 @@ void pci_init_board(void)
 #ifdef CONFIG_PCIE3
        pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE3_ADDR;
        hose = &pcie3_hose;
-       pcie_ep = (host_agent == 0) || (host_agent == 3) ||
-               (host_agent == 5) || (host_agent == 6);
-       pcie_configured = (io_sel == 0x2) || (io_sel == 0x4);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_3, host_agent);
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_3, io_sel);
        r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)) {
@@ -336,8 +334,8 @@ void pci_init_board(void)
 #ifdef CONFIG_PCIE1
        pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        hose = &pcie1_hose;
-       pcie_ep = (host_agent <= 1) || (host_agent == 4) || (host_agent == 5);
-       pcie_configured  = (io_sel & 6) || (io_sel == 0xE) || (io_sel == 0xF);
+       pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
+       pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
        r = hose->regions;
 
        if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE)) {
index 1ae4cda8b0e664452bb7b80e838b7ccc7cc7c7ab..e5b21b555e9f212470043a623781165c4189dfd2 100644 (file)
@@ -363,7 +363,7 @@ pci_init_board(void)
        uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
        uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;   /* PORPLLSR[16] */
 
-       uint pci_agent = (host_agent == 3) || (host_agent == 4 ) || (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
 
        uint pci_speed = get_clock_freq ();     /* PCI PSPEED in [4:5] */
 
@@ -441,10 +441,10 @@ pci_init_board(void)
 {
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep =  (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        struct pci_region *r = hose->regions;
 
-       int pcie_configured  = io_sel >= 1;
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
                printf ("\n    PCIE connected to slot as %s (base address %x)",
index 277edcd14e8fec16f2378427d82a3f036cdab346..3931ec5036f93fbd49843f25c2924f5ab41a15d4 100644 (file)
@@ -561,8 +561,7 @@ static inline void init_pci1(void)
        /* PORPLLSR[16] */
        uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
 
-       uint pci_agent = (host_agent == 3) || (host_agent == 4 ) ||
-               (host_agent == 6);
+       uint pci_agent = is_fsl_pci_agent(LAW_TRGT_IF_PCI_1, host_agent);
 
        uint pci_speed = CONFIG_SYS_CLK_FREQ;   /* PCI PSPEED in [4:5] */
 
@@ -630,11 +629,10 @@ static inline void init_pcie1(void)
        uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
        volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *)CONFIG_SYS_PCIE1_ADDR;
        struct pci_controller *hose = &pcie1_hose;
-       int pcie_ep =  (host_agent == 0) || (host_agent == 2 ) ||
-               (host_agent == 3);
+       int pcie_ep = is_fsl_pci_agent(LAW_TRGT_IF_PCIE_1, host_agent);
        struct pci_region *r = hose->regions;
 
-       int pcie_configured  = io_sel >= 1;
+       int pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
 
        if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
                printf ("PCIe:  %s, base address %x",
index 430a75f6f8c2b8369bf6097d4b43bcc05f314af4..5cb6814403d1c8a4504625941a795188633b7807 100644 (file)
@@ -11,6 +11,7 @@ include $(TOPDIR)/config.mk
 LIB    = $(obj)lib8xxx.a
 
 COBJS-y        += cpu.o
+COBJS-$(CONFIG_PCI)    += pci_cfg.o
 
 SRCS   := $(START:.o=.S) $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
 OBJS   := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
diff --git a/cpu/mpc8xxx/pci_cfg.c b/cpu/mpc8xxx/pci_cfg.c
new file mode 100644 (file)
index 0000000..9c7d92c
--- /dev/null
@@ -0,0 +1,225 @@
+/*
+ * Copyright 2009 Freescale Semiconductor, Inc.
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+#include <common.h>
+#include <asm/fsl_law.h>
+#include <pci.h>
+
+struct pci_info {
+       u16     agent;
+       u16     cfg;
+};
+
+/* The agent field is a bit mask in which each bit represents the value of
+ * cfg_host_agt[] signal and the bit is set of the given interface would be
+ * in agent/end-point mode for the given interface.
+ *
+ * The same idea is true of the cfg field.  The bit will be set if the
+ * interface would be enabled based on the value of cfg_IO_ports[] signal
+ *
+ * On MPC86xx/PQ3 based systems:
+ *   we extract cfg_host_agt from GUTS register PORBMSR
+ *   we extract cfg_IO_ports from GUTS register PORDEVSR
+ *
+ * cfg_IO_ports only exist on systems w/PCIe (we set cfg 0 for systems
+ * without PCIe)
+ */
+
+#if defined(CONFIG_MPC8540) || defined(CONFIG_MPC8560)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI] = {
+               .agent = (1 << 0) | (1 << 2),
+               .cfg =   0,
+       },
+};
+#elif defined(CONFIG_MPC8541) || defined(CONFIG_MPC8555)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI] = {
+               .agent = (1 << 0),
+               .cfg =   0,
+       },
+};
+#elif defined(CONFIG_MPC8536)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI] = {
+               .agent = (1 << 6),
+               .cfg =   0,
+       },
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 5),
+               .cfg =   (1 << 2) | (1 << 3) | (1 << 5) | (1 << 7),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 3),
+               .cfg =   (1 << 5) | (1 << 7),
+       },
+       [LAW_TRGT_IF_PCIE_3] = {
+               .agent = (1 << 1),
+               .cfg =   (1 << 7),
+       },
+};
+#elif defined(CONFIG_MPC8544)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI] = {
+               .agent = (1 << 6),
+               .cfg =   0,
+       },
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 5),
+               .cfg =   (1 << 2) | (1 << 3) | (1 << 4) | (1 << 5) |
+                        (1 << 6) | (1 << 7),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 3),
+               .cfg =   (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7),
+       },
+       [LAW_TRGT_IF_PCIE_3] = {
+               .agent = (1 << 1),
+               .cfg =   (1 << 6) | (1 << 7),
+       },
+};
+#elif defined(CONFIG_MPC8548)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI_1] = {
+               .agent = (1 << 4) | (1 << 6),
+               .cfg =   0,
+       },
+       [LAW_TRGT_IF_PCI_2] = {
+               .agent = (1 << 4) | (1 << 6),
+               .cfg =   0,
+       },
+       /* PCI_2 is always host and we dont use iosel to determine enable/disable */
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 2),
+               .cfg =   (1 << 3) | (1 << 4) | (1 << 7),
+       },
+};
+#elif defined(CONFIG_MPC8568)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI] = {
+               .agent = (1 << 0) | (1 << 4) | (1 << 6),
+               .cfg =   0,
+       },
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 2) | (1 << 4),
+               .cfg =   (1 << 3) | (1 << 4) | (1 << 7),
+       },
+};
+#elif defined(CONFIG_MPC8569)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 6),
+               .cfg =   (1 << 0) | (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7) |
+                        (1 << 8) | (1 << 0xc) | (1 << 0xf),
+       },
+};
+#elif defined(CONFIG_MPC8572)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 1) | (1 << 4) | (1 << 5),
+               .cfg =   (1 << 2) | (1 << 3) | (1 << 7) |
+                        (1 << 0xb) | (1 << 0xc) | (1 << 0xf),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 0) | (1 << 2) | (1 << 4) | (1 << 6),
+               .cfg =   (1 << 3) | (1 << 7),
+       },
+       [LAW_TRGT_IF_PCIE_3] = {
+               .agent = (1 << 0) | (1 << 3) | (1 << 5) | (1 << 6),
+               .cfg =   (1 << 7),
+       },
+};
+#elif defined(CONFIG_MPC8610)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCI_1] = {
+               .agent = (1 << 4) | (1 << 5) | (1 << 6),
+               .cfg =   0,
+       },
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 2) | (1 << 5),
+               .cfg =   (1 << 1) | (1 << 4),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 0) | (1 << 1) | (1 << 4),
+               .cfg =   (1 << 0) | (1 << 4),
+       },
+};
+#elif defined(CONFIG_MPC8641)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = 0, /* we dont use agent on 8641 */
+               .cfg =   (1 << 2) | (1 << 3) | (1 << 5) | (1 << 6) |
+                        (1 << 7) | (1 << 0xe) | (1 << 0xf),
+       },
+};
+#elif defined(CONFIG_P1011) || defined(CONFIG_P1020)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 1),
+               .cfg =   (1 << 0) | (1 << 6) | (1 << 0xe) | (1 << 0xf),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 0) | (1 << 2),
+               .cfg =   (1 << 0xe),
+       },
+};
+#elif defined(CONFIG_P2010) || defined(CONFIG_P2020)
+static struct pci_info pci_config_info[] =
+{
+       [LAW_TRGT_IF_PCIE_1] = {
+               .agent = (1 << 0) | (1 << 1) | (1 << 4) | (1 << 5),
+               .cfg =   (1 << 0) | (1 << 2) | (1 << 4) | (1 << 6) |
+                        (1 << 0xd) | (1 << 0xe) | (1 << 0xf),
+       },
+       [LAW_TRGT_IF_PCIE_2] = {
+               .agent = (1 << 0) | (1 << 2) | (1 << 4) | (1 << 6),
+               .cfg =   (1 << 2) | (1 << 0xe),
+       },
+       [LAW_TRGT_IF_PCIE_3] = {
+               .agent = (1 << 0) | (1 << 3) | (1 << 5) | (1 << 6),
+               .cfg =   (1 << 2) | (1 << 4),
+       },
+};
+#else
+#error Need to define pci_config_info for processor
+#endif
+
+int is_fsl_pci_agent(enum law_trgt_if trgt, u32 host_agent)
+{
+       return ((1 << host_agent) & pci_config_info[trgt].agent);
+}
+
+int is_fsl_pci_cfg(enum law_trgt_if trgt, u32 io_sel)
+{
+       return ((1 << io_sel) & pci_config_info[trgt].cfg);
+}
index f625d19ee42e93a70856e4e6bc96e67a4e005e92..b9972dabe37758968ecbd3802b3bd8e4d8121bc8 100644 (file)
 #ifndef __FSL_PCI_H_
 #define __FSL_PCI_H_
 
+#include <asm/fsl_law.h>
+
+int is_fsl_pci_agent(enum law_trgt_if trgt, u32 host_agent);
+int is_fsl_pci_cfg(enum law_trgt_if trgt, u32 io_sel);
+
 void fsl_pci_init(struct pci_controller *hose, u32 cfg_addr, u32 cfg_data);
 void fsl_pci_config_unlock(struct pci_controller *hose);
 void ft_fsl_pci_setup(void *blob, const char *pci_alias,