Re: [PATCH 4/5 v3] Add RapidIO support to powerpc architecture.
From: Kumar Gala <hidden>
Date: 2007-07-27 08:21:38
Also in:
lkml
On Jul 26, 2007, at 3:42 AM, Zhang Wei wrote:
This patch adds the RapidIO support to the powerpc architecture. Some files are moved from ppc. OF-tree and OF-device supports are added. New silicons such as MPC8548, MPC8641 with serial RapidIO controller are all supported. Memory driver hardware operations are added. Global mport variables are changed to master port private variables. Multi master ports are supported. Signed-off-by: Zhang Wei <redacted> --- arch/powerpc/Kconfig | 8 + arch/powerpc/kernel/Makefile | 1 + arch/powerpc/kernel/rio.c | 64 ++ arch/powerpc/sysdev/Makefile | 1 + arch/powerpc/sysdev/fsl_rio.c | 1455 ++++++++++++++++++++++++++++++ +++++++++++
how much of this moved from ppc85xx_rio.c?
quoted hunk ↗ jump to hunk
arch/powerpc/sysdev/fsl_rio.h | 20 + 6 files changed, 1549 insertions(+), 0 deletions(-) create mode 100644 arch/powerpc/kernel/rio.c create mode 100644 arch/powerpc/sysdev/fsl_rio.c create mode 100644 arch/powerpc/sysdev/fsl_rio.hdiff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 00099ef..45f32f1 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig@@ -492,6 +492,14 @@ source "drivers/pci/Kconfig" source "drivers/pcmcia/Kconfig" +config RAPIDIO + bool "RapidIO support" if MPC8540 || MPC8560 || MPC8641 || MPC8548 + help + If you say Y here, the kernel will include drivers and + infrastructure code to support RapidIO interconnect devices.
why not make this depend on something like HAS_RAPIDIO and let the boards select HAS_RAPIDIO if they have it
quoted hunk ↗ jump to hunk
+ +source "drivers/rapidio/Kconfig" + source "drivers/pci/hotplug/Kconfig" endmenudiff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index 42c42ec..02d4100 100644--- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile@@ -70,6 +70,7 @@ pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o isa-bridge.o pci32-$(CONFIG_PPC32) := pci_32.o obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) pci-common.o obj-$(CONFIG_PCI_MSI) += msi.o +obj-$(CONFIG_RAPIDIO) += rio.o
should probably live in sysdev/rio.c
quoted hunk ↗ jump to hunk
kexec-$(CONFIG_PPC64) := machine_kexec_64.o kexec-$(CONFIG_PPC32) := machine_kexec_32.o obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y)diff --git a/arch/powerpc/kernel/rio.c b/arch/powerpc/kernel/rio.c new file mode 100644 index 0000000..8d41e93 --- /dev/null +++ b/arch/powerpc/kernel/rio.c@@ -0,0 +1,64 @@ +/* + * RapidIO PowerPC support + * + * Copyright (C) 2007 Freescale Semiconductor, Inc. All rightsreserved. + * Zhang Wei [off-list ref], Jun 2007 + * + * 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. + * + * New RapidIO peer-to-peer network initialize with of-device supoort. + * + */ + +#include <linux/init.h> +#include <linux/kernel.h> +#include <linux/rio.h> + +#include <asm/rio.h> +#include <asm/of_device.h> +#include <asm/of_platform.h> + +#include <../sysdev/fsl_rio.h> + + +/* The probe function for RapidIO peer-to-peer network. + */ +static int __devinit of_rio_rpn_probe(struct of_device *dev, + const struct of_device_id *match) +{ + int rc; + printk(KERN_INFO "Setting up RapidIO peer-to-peer network %s\n", + dev->node->full_name); + + rc = fsl_rio_setup(dev); + if (rc) + goto out; + + /* Enumerate all registered ports */ + rc = rio_init_mports(); +out: + return rc; +}; + +static struct of_device_id of_rio_rpn_ids[] = { + { + .compatible = "fsl,rapidio-delta", + }, + {}, +}; + +static struct of_platform_driver of_rio_rpn_driver = { + .name = "of-rio", + .match_table = of_rio_rpn_ids, + .probe = of_rio_rpn_probe, +}; + +static __init int of_rio_rpn_init(void) +{ + return of_register_platform_driver(&of_rio_rpn_driver); +}