Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756157AbbBPQGt (ORCPT ); Mon, 16 Feb 2015 11:06:49 -0500 Received: from mail-by2on0131.outbound.protection.outlook.com ([207.46.100.131]:2912 "EHLO na01-by2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755969AbbBPQGq (ORCPT ); Mon, 16 Feb 2015 11:06:46 -0500 From: Emil Medve To: , CC: Emil Medve Subject: [RFC v2 00/10] Freescale DPAA B/QMan drivers Date: Mon, 16 Feb 2015 09:46:11 -0600 Message-ID: <1424101581-22109-1-git-send-email-Emilian.Medve@Freescale.com> X-Mailer: git-send-email 2.3.0 X-EOPAttributedMessage: 0 Authentication-Results: spf=fail (sender IP is 192.88.168.50) smtp.mailfrom=Emilian.Medve@Freescale.com; freescale.mail.onmicrosoft.com; dkim=none (message not signed) header.d=none; X-Forefront-Antispam-Report: CIP:192.88.168.50;CTRY:US;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10019020)(6009001)(339900001)(47776003)(50466002)(50226001)(48376002)(85426001)(46102003)(229853001)(104016003)(106466001)(62966003)(6806004)(105606002)(77156002)(50986999)(77096005)(36756003)(92566002)(86362001)(87936001)(2101003);DIR:OUT;SFP:1102;SCL:1;SRVR:DM2PR0301MB0751;H:tx30smr01.am.freescale.net;FPR:;SPF:Fail;MLV:sfv;LANG:en; MIME-Version: 1.0 Content-Type: text/plain X-Microsoft-Antispam: UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:DM2PR0301MB0751; X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004);SRVR:DM2PR0301MB0751; X-Forefront-PRVS: 0489CFBAC9 X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:;SRVR:DM2PR0301MB0751; X-OriginatorOrg: freescale.com X-MS-Exchange-CrossTenant-OriginalArrivalTime: 16 Feb 2015 15:51:20.3085 (UTC) X-MS-Exchange-CrossTenant-Id: 710a03f5-10f6-4d38-9ff4-a80b81da590d X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=710a03f5-10f6-4d38-9ff4-a80b81da590d;Ip=[192.88.168.50] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: DM2PR0301MB0751 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4926 Lines: 107 v2: Moved out of staging into soc/freescale Hello, This is the se attempt to publish the . They are not to be applied yet. These are the Freescale DPAA B/QMan drivers. At this stage, this is more or less the drivers from the Freescale PowerPC SDK roughly squashed and split in a sequence of component patches. They still needs some work and cleanup before we expect to have them applied, but we appreciate early feedback To do: Add a maintainer(s) entry Add module(s) support Some important clean-ups Cheers, Geoff Thorpe (8): fsl_bman: Add drivers for the Freescale DPAA BMan fsl_qman: Add drivers for the Freescale DPAA QMan powerpc/mpc85xx: Add platform support for the Freescale DPAA BMan powerpc/mpc85xx: Add platform support for the Freescale DPAA QMan fsl_bman: Add self-tester fsl_qman: Add self-tester fsl_bman: Add debugfs support fsl_qman: Add debugfs support Hai-Ying Wang (2): fsl_bman: Add HOTPLUG_CPU support fsl_qman: Add HOTPLUG_CPU support arch/powerpc/Kconfig | 5 + arch/powerpc/configs/mpc85xx_defconfig | 1 + arch/powerpc/configs/mpc85xx_smp_defconfig | 1 + arch/powerpc/platforms/85xx/Kconfig | 1 + arch/powerpc/platforms/85xx/corenet_generic.c | 22 + arch/powerpc/platforms/85xx/p1023_rdb.c | 20 + drivers/soc/Kconfig | 1 + drivers/soc/Makefile | 1 + drivers/soc/freescale/Kconfig | 187 ++ drivers/soc/freescale/Makefile | 21 + drivers/soc/freescale/bman.c | 611 ++++++ drivers/soc/freescale/bman.h | 524 +++++ drivers/soc/freescale/bman_api.c | 1055 ++++++++++ drivers/soc/freescale/bman_debugfs.c | 119 ++ drivers/soc/freescale/bman_portal.c | 373 ++++ drivers/soc/freescale/bman_priv.h | 149 ++ drivers/soc/freescale/bman_test.c | 56 + drivers/soc/freescale/bman_test.h | 44 + drivers/soc/freescale/bman_test_api.c | 181 ++ drivers/soc/freescale/bman_test_thresh.c | 196 ++ drivers/soc/freescale/dpaa_alloc.c | 573 ++++++ drivers/soc/freescale/dpaa_sys.h | 294 +++ drivers/soc/freescale/qbman_driver.c | 85 + drivers/soc/freescale/qman.c | 991 ++++++++++ drivers/soc/freescale/qman.h | 1302 ++++++++++++ drivers/soc/freescale/qman_api.c | 2624 +++++++++++++++++++++++++ drivers/soc/freescale/qman_debugfs.c | 1326 +++++++++++++ drivers/soc/freescale/qman_portal.c | 548 ++++++ drivers/soc/freescale/qman_priv.h | 283 +++ drivers/soc/freescale/qman_test.c | 57 + drivers/soc/freescale/qman_test.h | 43 + drivers/soc/freescale/qman_test_api.c | 213 ++ drivers/soc/freescale/qman_test_stash.c | 497 +++++ drivers/soc/freescale/qman_utils.c | 129 ++ include/linux/fsl_bman.h | 517 +++++ include/linux/fsl_qman.h | 1955 ++++++++++++++++++ 36 files changed, 15005 insertions(+) create mode 100644 drivers/soc/freescale/Kconfig create mode 100644 drivers/soc/freescale/Makefile create mode 100644 drivers/soc/freescale/bman.c create mode 100644 drivers/soc/freescale/bman.h create mode 100644 drivers/soc/freescale/bman_api.c create mode 100644 drivers/soc/freescale/bman_debugfs.c create mode 100644 drivers/soc/freescale/bman_portal.c create mode 100644 drivers/soc/freescale/bman_priv.h create mode 100644 drivers/soc/freescale/bman_test.c create mode 100644 drivers/soc/freescale/bman_test.h create mode 100644 drivers/soc/freescale/bman_test_api.c create mode 100644 drivers/soc/freescale/bman_test_thresh.c create mode 100644 drivers/soc/freescale/dpaa_alloc.c create mode 100644 drivers/soc/freescale/dpaa_sys.h create mode 100644 drivers/soc/freescale/qbman_driver.c create mode 100644 drivers/soc/freescale/qman.c create mode 100644 drivers/soc/freescale/qman.h create mode 100644 drivers/soc/freescale/qman_api.c create mode 100644 drivers/soc/freescale/qman_debugfs.c create mode 100644 drivers/soc/freescale/qman_portal.c create mode 100644 drivers/soc/freescale/qman_priv.h create mode 100644 drivers/soc/freescale/qman_test.c create mode 100644 drivers/soc/freescale/qman_test.h create mode 100644 drivers/soc/freescale/qman_test_api.c create mode 100644 drivers/soc/freescale/qman_test_stash.c create mode 100644 drivers/soc/freescale/qman_utils.c create mode 100644 include/linux/fsl_bman.h create mode 100644 include/linux/fsl_qman.h -- 2.3.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/