mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
3d5134ee83
This rewrites pretty much from scratch the handling of MMIO and PIO space allocations on powerpc64. The main goals are: - Get rid of imalloc and use more common code where possible - Simplify the current mess so that PIO space is allocated and mapped in a single place for PCI bridges - Handle allocation constraints of PIO for all bridges including hot plugged ones within the 2GB space reserved for IO ports, so that devices on hotplugged busses will now work with drivers that assume IO ports fit in an int. - Cleanup and separate tracking of the ISA space in the reserved low 64K of IO space. No ISA -> Nothing mapped there. I booted a cell blade with IDE on PIO and MMIO and a dual G5 so far, that's it :-) With this patch, all allocations are done using the code in mm/vmalloc.c, though we use the low level __get_vm_area with explicit start/stop constraints in order to manage separate areas for vmalloc/vmap, ioremap, and PCI IOs. This greatly simplifies a lot of things, as you can see in the diffstat of that patch :-) A new pair of functions pcibios_map/unmap_io_space() now replace all of the previous code that used to manipulate PCI IOs space. The allocation is done at mapping time, which is now called from scan_phb's, just before the devices are probed (instead of after, which is by itself a bug fix). The only other caller is the PCI hotplug code for hot adding PCI-PCI bridges (slots). imalloc is gone, as is the "sub-allocation" thing, but I do beleive that hotplug should still work in the sense that the space allocation is always done by the PHB, but if you unmap a child bus of this PHB (which seems to be possible), then the code should properly tear down all the HPTE mappings for that area of the PHB allocated IO space. I now always reserve the first 64K of IO space for the bridge with the ISA bus on it. I have moved the code for tracking ISA in a separate file which should also make it smarter if we ever are capable of hot unplugging or re-plugging an ISA bridge. This should have a side effect on platforms like powermac where VGA IOs will no longer work. This is done on purpose though as they would have worked semi-randomly before. The idea at this point is to isolate drivers that might need to access those and fix them by providing a proper function to obtain an offset to the legacy IOs of a given bus. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
181 lines
4.1 KiB
C
181 lines
4.1 KiB
C
/*
|
|
* Copyright (C) 2006 PA Semi, Inc
|
|
*
|
|
* Authors: Kip Walker, PA Semi
|
|
* Olof Johansson, PA Semi
|
|
*
|
|
* Maintained by: Olof Johansson <olof@lixom.net>
|
|
*
|
|
* Based on arch/powerpc/platforms/maple/pci.c
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* 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 <linux/kernel.h>
|
|
#include <linux/pci.h>
|
|
|
|
#include <asm/pci-bridge.h>
|
|
#include <asm/machdep.h>
|
|
|
|
#include <asm/ppc-pci.h>
|
|
|
|
#define PA_PXP_CFA(bus, devfn, off) (((bus) << 20) | ((devfn) << 12) | (off))
|
|
|
|
static inline int pa_pxp_offset_valid(u8 bus, u8 devfn, int offset)
|
|
{
|
|
/* Device 0 Function 0 is special: It's config space spans function 1 as
|
|
* well, so allow larger offset. It's really a two-function device but the
|
|
* second function does not probe.
|
|
*/
|
|
if (bus == 0 && devfn == 0)
|
|
return offset < 8192;
|
|
else
|
|
return offset < 4096;
|
|
}
|
|
|
|
static void volatile __iomem *pa_pxp_cfg_addr(struct pci_controller *hose,
|
|
u8 bus, u8 devfn, int offset)
|
|
{
|
|
return hose->cfg_data + PA_PXP_CFA(bus, devfn, offset);
|
|
}
|
|
|
|
static int pa_pxp_read_config(struct pci_bus *bus, unsigned int devfn,
|
|
int offset, int len, u32 *val)
|
|
{
|
|
struct pci_controller *hose;
|
|
void volatile __iomem *addr;
|
|
|
|
hose = pci_bus_to_host(bus);
|
|
if (!hose)
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
if (!pa_pxp_offset_valid(bus->number, devfn, offset))
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
addr = pa_pxp_cfg_addr(hose, bus->number, devfn, offset);
|
|
|
|
/*
|
|
* Note: the caller has already checked that offset is
|
|
* suitably aligned and that len is 1, 2 or 4.
|
|
*/
|
|
switch (len) {
|
|
case 1:
|
|
*val = in_8(addr);
|
|
break;
|
|
case 2:
|
|
*val = in_le16(addr);
|
|
break;
|
|
default:
|
|
*val = in_le32(addr);
|
|
break;
|
|
}
|
|
|
|
return PCIBIOS_SUCCESSFUL;
|
|
}
|
|
|
|
static int pa_pxp_write_config(struct pci_bus *bus, unsigned int devfn,
|
|
int offset, int len, u32 val)
|
|
{
|
|
struct pci_controller *hose;
|
|
void volatile __iomem *addr;
|
|
|
|
hose = pci_bus_to_host(bus);
|
|
if (!hose)
|
|
return PCIBIOS_DEVICE_NOT_FOUND;
|
|
|
|
if (!pa_pxp_offset_valid(bus->number, devfn, offset))
|
|
return PCIBIOS_BAD_REGISTER_NUMBER;
|
|
|
|
addr = pa_pxp_cfg_addr(hose, bus->number, devfn, offset);
|
|
|
|
/*
|
|
* Note: the caller has already checked that offset is
|
|
* suitably aligned and that len is 1, 2 or 4.
|
|
*/
|
|
switch (len) {
|
|
case 1:
|
|
out_8(addr, val);
|
|
(void) in_8(addr);
|
|
break;
|
|
case 2:
|
|
out_le16(addr, val);
|
|
(void) in_le16(addr);
|
|
break;
|
|
default:
|
|
out_le32(addr, val);
|
|
(void) in_le32(addr);
|
|
break;
|
|
}
|
|
return PCIBIOS_SUCCESSFUL;
|
|
}
|
|
|
|
static struct pci_ops pa_pxp_ops = {
|
|
pa_pxp_read_config,
|
|
pa_pxp_write_config,
|
|
};
|
|
|
|
static void __init setup_pa_pxp(struct pci_controller *hose)
|
|
{
|
|
hose->ops = &pa_pxp_ops;
|
|
hose->cfg_data = ioremap(0xe0000000, 0x10000000);
|
|
}
|
|
|
|
static int __init add_bridge(struct device_node *dev)
|
|
{
|
|
struct pci_controller *hose;
|
|
|
|
pr_debug("Adding PCI host bridge %s\n", dev->full_name);
|
|
|
|
hose = pcibios_alloc_controller(dev);
|
|
if (!hose)
|
|
return -ENOMEM;
|
|
|
|
hose->first_busno = 0;
|
|
hose->last_busno = 0xff;
|
|
|
|
setup_pa_pxp(hose);
|
|
|
|
printk(KERN_INFO "Found PA-PXP PCI host bridge.\n");
|
|
|
|
/* Interpret the "ranges" property */
|
|
pci_process_bridge_OF_ranges(hose, dev, 1);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void __init pas_pci_init(void)
|
|
{
|
|
struct device_node *np, *root;
|
|
|
|
root = of_find_node_by_path("/");
|
|
if (!root) {
|
|
printk(KERN_CRIT "pas_pci_init: can't find root "
|
|
"of device tree\n");
|
|
return;
|
|
}
|
|
|
|
for (np = NULL; (np = of_get_next_child(root, np)) != NULL;)
|
|
if (np->name && !strcmp(np->name, "pxp") && !add_bridge(np))
|
|
of_node_get(np);
|
|
|
|
of_node_put(root);
|
|
|
|
/* Setup the linkage between OF nodes and PHBs */
|
|
pci_devs_phb_init();
|
|
|
|
/* Use the common resource allocation mechanism */
|
|
pci_probe_only = 1;
|
|
}
|