From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753820AbbCYQ7h (ORCPT ); Wed, 25 Mar 2015 12:59:37 -0400 Received: from mga09.intel.com ([134.134.136.24]:6888 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751990AbbCYQ7f (ORCPT ); Wed, 25 Mar 2015 12:59:35 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,465,1422950400"; d="scan'208";a="670494069" From: Daniel Baluta To: jic23@kernel.org Cc: jlbec@evilplan.org, lars@metafoo.de, knaack.h@gmx.de, pmeerw@pmeerw.net, linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, octavian.purdila@intel.com, daniel.baluta@intel.com Subject: [PATCH 0/3] Add configfs support for software triggers in IIO Date: Wed, 25 Mar 2015 19:00:29 +0200 Message-Id: <1427302832-9336-1-git-send-email-daniel.baluta@intel.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset adds initial support for configfs in IIO. It is structured in the following way: * patch 1 - adds configfs infrastructure creating an "iio" configfs subystem + an initial "triggers" group. * patch 2 - adds the first "real" trigger type - hrtimer. * patch 3 - adds Documentation Daniel Baluta (3): iio: configfs: Add configfs support to IIO iio: trigger: Add support for highres timer trigger iio: Documentation: Add initial documentaton for IIO Documentation/iio/iio_configfs.txt | 74 ++++++++ drivers/iio/Kconfig | 8 + drivers/iio/Makefile | 1 + drivers/iio/industrialio-configfs.c | 301 +++++++++++++++++++++++++++++++ drivers/iio/trigger/Kconfig | 8 + drivers/iio/trigger/Makefile | 2 + drivers/iio/trigger/iio-trig-hrtimer.c | 146 +++++++++++++++ include/linux/iio/iio_configfs_trigger.h | 49 +++++ 8 files changed, 589 insertions(+) create mode 100644 Documentation/iio/iio_configfs.txt create mode 100644 drivers/iio/industrialio-configfs.c create mode 100644 drivers/iio/trigger/iio-trig-hrtimer.c create mode 100644 include/linux/iio/iio_configfs_trigger.h -- 1.9.1