From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759138Ab0LNKJH (ORCPT ); Tue, 14 Dec 2010 05:09:07 -0500 Received: from smtp.nokia.com ([147.243.1.48]:51946 "EHLO mgw-sa02.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758298Ab0LNKJF (ORCPT ); Tue, 14 Dec 2010 05:09:05 -0500 From: Carlos Chinea To: linux-kernel@vger.kernel.org Cc: linux-omap@vger.kernel.org Subject: [RFC PATCHv4 0/7] HSI framework and drivers Date: Tue, 14 Dec 2010 12:09:36 +0200 Message-Id: <1292321383-30200-1-git-send-email-carlos.chinea@nokia.com> X-Mailer: git-send-email 1.7.1 X-Nokia-AV: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi ! Here you have the fourth round of the HSI framework patches. The patch series introduces the HSI framework, an SSI driver for OMAP and a generic character device for HSI/SSI devices. SSI, which is a legacy version of HSI, is used to connect the application engine with the cellular modem on the Nokia N900. In this round we have added/fixed: - Address some comments from Tony Lindgren and Peter Henn. - Add module support to the HSI framework. - Fix sparse warnings in OMAP SSI driver. - Fix module license. - Remove spurious udev events generated by the HSI framework. - Avoid removal of a controller claimed by a client. - Fix hsi_char client device removal. TODO: - Move OMAP SSI to use omap hwmod I would very glad to continue getting feedback about this proposal. This patch series is based on 2.6.37-rc1. Version 3 of the patch set: https://lkml.org/lkml/2010/10/11/60 Note: checkpatch reports a false positive on patch 1/7. Andras Domokos (3): HSI: hsi_char: Add HSI char device driver HSI: hsi_char: Add HSI char device kernel configuration HSI: hsi_char: Update ioctl-number.txt Carlos Chinea (4): HSI: hsi: Introducing HSI framework HSI: omap_ssi: Introducing OMAP SSI driver HSI: omap_ssi: Add OMAP SSI to the kernel configuration HSI: Add HSI API documentation Documentation/DocBook/device-drivers.tmpl | 17 + Documentation/ioctl/ioctl-number.txt | 1 + arch/arm/mach-omap2/Makefile | 2 + arch/arm/mach-omap2/ssi.c | 134 +++ arch/arm/plat-omap/include/plat/ssi.h | 204 ++++ drivers/Kconfig | 2 + drivers/Makefile | 1 + drivers/hsi/Kconfig | 20 + drivers/hsi/Makefile | 6 + drivers/hsi/clients/Kconfig | 13 + drivers/hsi/clients/Makefile | 5 + drivers/hsi/clients/hsi_char.c | 1094 +++++++++++++++++ drivers/hsi/controllers/Kconfig | 23 + drivers/hsi/controllers/Makefile | 5 + drivers/hsi/controllers/omap_ssi.c | 1853 +++++++++++++++++++++++++++++ drivers/hsi/hsi.c | 496 ++++++++ drivers/hsi/hsi_boardinfo.c | 64 + drivers/hsi/hsi_core.h | 37 + include/linux/Kbuild | 1 + include/linux/hsi/Kbuild | 1 + include/linux/hsi/hsi.h | 389 ++++++ include/linux/hsi/hsi_char.h | 65 + 22 files changed, 4433 insertions(+), 0 deletions(-) create mode 100644 arch/arm/mach-omap2/ssi.c create mode 100644 arch/arm/plat-omap/include/plat/ssi.h create mode 100644 drivers/hsi/Kconfig create mode 100644 drivers/hsi/Makefile create mode 100644 drivers/hsi/clients/Kconfig create mode 100644 drivers/hsi/clients/Makefile create mode 100644 drivers/hsi/clients/hsi_char.c create mode 100644 drivers/hsi/controllers/Kconfig create mode 100644 drivers/hsi/controllers/Makefile create mode 100644 drivers/hsi/controllers/omap_ssi.c create mode 100644 drivers/hsi/hsi.c create mode 100644 drivers/hsi/hsi_boardinfo.c create mode 100644 drivers/hsi/hsi_core.h create mode 100644 include/linux/hsi/Kbuild create mode 100644 include/linux/hsi/hsi.h create mode 100644 include/linux/hsi/hsi_char.h