]> git.baikalelectronics.ru Git - uboot.git/commitdiff
qemu-ppce500: Move CONFIG_SYS_PCI_MAP_{START, END} to board code
authorTom Rini <trini@konsulko.com>
Mon, 20 Jun 2022 12:07:57 +0000 (08:07 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 5 Jul 2022 21:05:00 +0000 (17:05 -0400)
These CONFIG options are only used on this board, in the board file
itself.  Remove these from the CONFIG namespace and define in the board
file.

Signed-off-by: Tom Rini <trini@konsulko.com>
board/emulation/qemu-ppce500/qemu-ppce500.c
include/configs/qemu-ppce500.h

index 348fcf3bb09997a4b041c81da58280a5fe3a2773..99edaa3b4215925f7879992d6bb5295315657d35 100644 (file)
 
 DECLARE_GLOBAL_DATA_PTR;
 
+/* Virtual address range for PCI region maps */
+#define SYS_PCI_MAP_START      0x80000000
+#define SYS_PCI_MAP_END                0xe0000000
+
 static void *get_fdt_virt(void)
 {
        if (gd->flags & GD_FLG_RELOC)
@@ -101,7 +105,7 @@ static int pci_map_region(phys_addr_t paddr, phys_size_t size, ulong *pmap_addr)
        map_addr += size - 1;
        map_addr &= ~(size - 1);
 
-       if (map_addr + size >= CONFIG_SYS_PCI_MAP_END)
+       if (map_addr + size >= SYS_PCI_MAP_END)
                return -1;
 
        /* Map virtual memory for range */
@@ -137,7 +141,7 @@ int misc_init_r(void)
        pci_get_regions(dev, &io, &mem, &pre);
 
        /* Start MMIO and PIO range maps above RAM */
-       map_addr = CONFIG_SYS_PCI_MAP_START;
+       map_addr = SYS_PCI_MAP_START;
 
        /* Map MMIO range */
        ret = pci_map_region(mem->phys_start, mem->size, &map_addr);
index 006593acfddd6778203443022f9738e422e79dbd..451ae0e1e6df7741836f40d4c9575c42dc359d86 100644 (file)
@@ -25,10 +25,6 @@ extern unsigned long long get_phys_ccsrbar_addr_early(void);
 #define CONFIG_SYS_CCSRBAR_PHYS_LOW CONFIG_SYS_CCSRBAR
 #endif
 
-/* Virtual address range for PCI region maps */
-#define CONFIG_SYS_PCI_MAP_START       0x80000000
-#define CONFIG_SYS_PCI_MAP_END         0xe0000000
-
 /* Virtual address to a temporary map if we need it (max 128MB) */
 #define CONFIG_SYS_TMPVIRT             0xe8000000