diff options
Diffstat (limited to 'arch/mips/pci/pcie-octeon.c')
-rw-r--r-- | arch/mips/pci/pcie-octeon.c | 37 |
1 files changed, 31 insertions, 6 deletions
diff --git a/arch/mips/pci/pcie-octeon.c b/arch/mips/pci/pcie-octeon.c index 6aa5c542d52d..861361e0c9af 100644 --- a/arch/mips/pci/pcie-octeon.c +++ b/arch/mips/pci/pcie-octeon.c | |||
@@ -402,6 +402,10 @@ static void __cvmx_pcie_rc_initialize_config_space(int pcie_port) | |||
402 | npei_ctl_status2.s.mps = 0; | 402 | npei_ctl_status2.s.mps = 0; |
403 | /* Max read request size = 128 bytes for best Octeon DMA performance */ | 403 | /* Max read request size = 128 bytes for best Octeon DMA performance */ |
404 | npei_ctl_status2.s.mrrs = 0; | 404 | npei_ctl_status2.s.mrrs = 0; |
405 | if (pcie_port) | ||
406 | npei_ctl_status2.s.c1_b1_s = 3; /* Port1 BAR1 Size 256MB */ | ||
407 | else | ||
408 | npei_ctl_status2.s.c0_b1_s = 3; /* Port0 BAR1 Size 256MB */ | ||
405 | cvmx_write_csr(CVMX_PEXP_NPEI_CTL_STATUS2, npei_ctl_status2.u64); | 409 | cvmx_write_csr(CVMX_PEXP_NPEI_CTL_STATUS2, npei_ctl_status2.u64); |
406 | 410 | ||
407 | /* ECRC Generation (PCIE*_CFG070[GE,CE]) */ | 411 | /* ECRC Generation (PCIE*_CFG070[GE,CE]) */ |
@@ -666,6 +670,8 @@ static int __cvmx_pcie_rc_initialize_link(int pcie_port) | |||
666 | static int cvmx_pcie_rc_initialize(int pcie_port) | 670 | static int cvmx_pcie_rc_initialize(int pcie_port) |
667 | { | 671 | { |
668 | int i; | 672 | int i; |
673 | int base; | ||
674 | u64 addr_swizzle; | ||
669 | union cvmx_ciu_soft_prst ciu_soft_prst; | 675 | union cvmx_ciu_soft_prst ciu_soft_prst; |
670 | union cvmx_pescx_bist_status pescx_bist_status; | 676 | union cvmx_pescx_bist_status pescx_bist_status; |
671 | union cvmx_pescx_bist_status2 pescx_bist_status2; | 677 | union cvmx_pescx_bist_status2 pescx_bist_status2; |
@@ -674,6 +680,7 @@ static int cvmx_pcie_rc_initialize(int pcie_port) | |||
674 | union cvmx_npei_mem_access_subidx mem_access_subid; | 680 | union cvmx_npei_mem_access_subidx mem_access_subid; |
675 | union cvmx_npei_dbg_data npei_dbg_data; | 681 | union cvmx_npei_dbg_data npei_dbg_data; |
676 | union cvmx_pescx_ctl_status2 pescx_ctl_status2; | 682 | union cvmx_pescx_ctl_status2 pescx_ctl_status2; |
683 | union cvmx_npei_bar1_indexx bar1_index; | ||
677 | 684 | ||
678 | /* | 685 | /* |
679 | * Make sure we aren't trying to setup a target mode interface | 686 | * Make sure we aren't trying to setup a target mode interface |
@@ -918,12 +925,30 @@ static int cvmx_pcie_rc_initialize(int pcie_port) | |||
918 | /* Set Octeon's BAR0 to decode 0-16KB. It overlaps with Bar2 */ | 925 | /* Set Octeon's BAR0 to decode 0-16KB. It overlaps with Bar2 */ |
919 | cvmx_write_csr(CVMX_PESCX_P2N_BAR0_START(pcie_port), 0); | 926 | cvmx_write_csr(CVMX_PESCX_P2N_BAR0_START(pcie_port), 0); |
920 | 927 | ||
921 | /* | 928 | /* BAR1 follows BAR2 with a gap. */ |
922 | * Disable Octeon's BAR1. It isn't needed in RC mode since | 929 | cvmx_write_csr(CVMX_PESCX_P2N_BAR1_START(pcie_port), CVMX_PCIE_BAR1_RC_BASE); |
923 | * BAR2 maps all of memory. BAR2 also maps 256MB-512MB into | 930 | |
924 | * the 2nd 256MB of memory. | 931 | bar1_index.u32 = 0; |
925 | */ | 932 | bar1_index.s.addr_idx = (CVMX_PCIE_BAR1_PHYS_BASE >> 22); |
926 | cvmx_write_csr(CVMX_PESCX_P2N_BAR1_START(pcie_port), -1); | 933 | bar1_index.s.ca = 1; /* Not Cached */ |
934 | bar1_index.s.end_swp = 1; /* Endian Swap mode */ | ||
935 | bar1_index.s.addr_v = 1; /* Valid entry */ | ||
936 | |||
937 | base = pcie_port ? 16 : 0; | ||
938 | |||
939 | /* Big endian swizzle for 32-bit PEXP_NCB register. */ | ||
940 | #ifdef __MIPSEB__ | ||
941 | addr_swizzle = 4; | ||
942 | #else | ||
943 | addr_swizzle = 0; | ||
944 | #endif | ||
945 | for (i = 0; i < 16; i++) { | ||
946 | cvmx_write64_uint32((CVMX_PEXP_NPEI_BAR1_INDEXX(base) ^ addr_swizzle), | ||
947 | bar1_index.u32); | ||
948 | base++; | ||
949 | /* 256MB / 16 >> 22 == 4 */ | ||
950 | bar1_index.s.addr_idx += (((1ull << 28) / 16ull) >> 22); | ||
951 | } | ||
927 | 952 | ||
928 | /* | 953 | /* |
929 | * Set Octeon's BAR2 to decode 0-2^39. Bar0 and Bar1 take | 954 | * Set Octeon's BAR2 to decode 0-2^39. Bar0 and Bar1 take |