Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755569Ab1DGK7d (ORCPT ); Thu, 7 Apr 2011 06:59:33 -0400 Received: from eu1sys200aog101.obsmtp.com ([207.126.144.111]:35048 "EHLO eu1sys200aog101.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755499Ab1DGK7a (ORCPT ); Thu, 7 Apr 2011 06:59:30 -0400 From: Par-Gunnar Hjalmdahl To: Greg Kroah-Hartman , , Linus Walleij Cc: , , Pavan Savoy , Vitaly Wool , Alan Cox , Arnd Bergmann , Marcel Holtmann , Lukasz Rymanowski , Linus Walleij , Par-Gunnar Hjalmdahl , Lee Jones , Mathieu Poirier , Par-Gunnar Hjalmdahl Subject: [PATCH v4] Add ST-Ericsson CG2900 driver Date: Thu, 7 Apr 2011 12:58:28 +0200 Message-ID: <1302173908-25326-1-git-send-email-par-gunnar.p.hjalmdahl@stericsson.com> X-Mailer: git-send-email 1.7.4.3 MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4113 Lines: 75 This patch adds a driver for the ST-Ericsson CG2900 connectivity controller. It has earlier been tried to add this driver to the mfd and bluetooth areas, but due to continued discussions the driver is placed into staging for the moment. Compared to v3 this patch has the following update: - Kconfig: Removed selecting BT and BTHCIUART when CG2900_UART is enabled. It now depends on BT instead. Par-Gunnar Hjalmdahl (1): staging: Add ST-Ericsson CG2900 driver drivers/staging/Kconfig | 2 + drivers/staging/Makefile | 1 + drivers/staging/cg2900/Kconfig | 70 + drivers/staging/cg2900/Makefile | 12 + drivers/staging/cg2900/TODO | 23 + drivers/staging/cg2900/bluetooth/Makefile | 9 + drivers/staging/cg2900/bluetooth/btcg2900.c | 1203 ++++++++ drivers/staging/cg2900/bluetooth/cg2900_uart.c | 2074 +++++++++++++ drivers/staging/cg2900/bluetooth/hci_ldisc.c | 657 ++++ drivers/staging/cg2900/bluetooth/hci_uart.h | 105 + drivers/staging/cg2900/board-mop500-cg2900.c | 204 ++ drivers/staging/cg2900/devices-cg2900.c | 342 +++ drivers/staging/cg2900/devices-cg2900.h | 31 + drivers/staging/cg2900/include/cg2900.h | 278 ++ drivers/staging/cg2900/include/cg2900_audio.h | 473 +++ drivers/staging/cg2900/include/cg2900_hci.h | 19 + drivers/staging/cg2900/mfd/Makefile | 18 + drivers/staging/cg2900/mfd/cg2900_audio.c | 3462 ++++++++++++++++++++++ drivers/staging/cg2900/mfd/cg2900_char_devices.c | 701 +++++ drivers/staging/cg2900/mfd/cg2900_chip.c | 3415 +++++++++++++++++++++ drivers/staging/cg2900/mfd/cg2900_chip.h | 613 ++++ drivers/staging/cg2900/mfd/cg2900_core.c | 713 +++++ drivers/staging/cg2900/mfd/cg2900_core.h | 51 + drivers/staging/cg2900/mfd/cg2900_lib.c | 281 ++ drivers/staging/cg2900/mfd/cg2900_lib.h | 61 + drivers/staging/cg2900/mfd/cg2900_test.c | 402 +++ drivers/staging/cg2900/mfd/stlc2690_chip.c | 1653 +++++++++++ drivers/staging/cg2900/mfd/stlc2690_chip.h | 47 + 28 files changed, 16920 insertions(+), 0 deletions(-) create mode 100644 drivers/staging/cg2900/Kconfig create mode 100644 drivers/staging/cg2900/Makefile create mode 100644 drivers/staging/cg2900/TODO create mode 100644 drivers/staging/cg2900/bluetooth/Makefile create mode 100644 drivers/staging/cg2900/bluetooth/btcg2900.c create mode 100644 drivers/staging/cg2900/bluetooth/cg2900_uart.c create mode 100644 drivers/staging/cg2900/bluetooth/hci_ldisc.c create mode 100644 drivers/staging/cg2900/bluetooth/hci_uart.h create mode 100644 drivers/staging/cg2900/board-mop500-cg2900.c create mode 100644 drivers/staging/cg2900/devices-cg2900.c create mode 100644 drivers/staging/cg2900/devices-cg2900.h create mode 100644 drivers/staging/cg2900/include/cg2900.h create mode 100644 drivers/staging/cg2900/include/cg2900_audio.h create mode 100644 drivers/staging/cg2900/include/cg2900_hci.h create mode 100644 drivers/staging/cg2900/mfd/Makefile create mode 100644 drivers/staging/cg2900/mfd/cg2900_audio.c create mode 100644 drivers/staging/cg2900/mfd/cg2900_char_devices.c create mode 100644 drivers/staging/cg2900/mfd/cg2900_chip.c create mode 100644 drivers/staging/cg2900/mfd/cg2900_chip.h create mode 100644 drivers/staging/cg2900/mfd/cg2900_core.c create mode 100644 drivers/staging/cg2900/mfd/cg2900_core.h create mode 100644 drivers/staging/cg2900/mfd/cg2900_lib.c create mode 100644 drivers/staging/cg2900/mfd/cg2900_lib.h create mode 100644 drivers/staging/cg2900/mfd/cg2900_test.c create mode 100644 drivers/staging/cg2900/mfd/stlc2690_chip.c create mode 100644 drivers/staging/cg2900/mfd/stlc2690_chip.h -- 1.7.4.3 -- 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/