From patchwork Fri Jun 6 10:44:43 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 4311131 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id C58F1BEEAA for ; Fri, 6 Jun 2014 10:43:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DB712201CD for ; Fri, 6 Jun 2014 10:43:36 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EBADE201C8 for ; Fri, 6 Jun 2014 10:43:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752587AbaFFKmm (ORCPT ); Fri, 6 Jun 2014 06:42:42 -0400 Received: from mail-ig0-f169.google.com ([209.85.213.169]:56342 "EHLO mail-ig0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752251AbaFFKmk (ORCPT ); Fri, 6 Jun 2014 06:42:40 -0400 Received: by mail-ig0-f169.google.com with SMTP id a13so697747igq.0 for ; Fri, 06 Jun 2014 03:42:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=6OhfXblHqC5qCv3ag9knEOx4bd6rrepkj5Fb2STmIjM=; b=0669PSKwYNcrNDxfiT44dgcUAMlmfHS1S3KZOixNKvFn/Ge/v1ymiSsN6wIOGMwyN9 pEs1CakpUJ9/HxUJg0axQIgN7aGvMvEDdtUqbGFHLqC+Og3xTwt/ePko6IxkMN55nCqm MJYiCR9sdNN8x66ARfQp1vOHB5frXyWTousWbKsK0l60GbKWFl06/RZRXSot1KQRydBB /rRr9Ghas/q1fmG3wb7MBlT6aOv8D9x3kOoFmPp9qBk2AIFu0yBsk9LbFNejrpqnjrem EHfPwrURGoiSuz785ygsUCroruMBHmlNHEfJvcNZUq3BZSpANZXIVqpzS0EwzrU7UKH8 jiTA== X-Received: by 10.42.68.18 with SMTP id v18mr4660095ici.1.1402051360182; Fri, 06 Jun 2014 03:42:40 -0700 (PDT) Received: from [127.0.0.1] (s214090.ppp.asahi-net.or.jp. [220.157.214.90]) by mx.google.com with ESMTPSA id ci4sm34252045pbb.50.2014.06.06.03.42.37 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 06 Jun 2014 03:42:39 -0700 (PDT) From: Magnus Damm To: linux-kernel@vger.kernel.org Cc: devel@driverdev.osuosl.org, pebolle@tiscali.nl, linux-sh@vger.kernel.org, gregkh@linuxfoundation.org, horms@verge.net.au, geert@linux-m68k.org, laurent.pinchart@ideasonboard.com, olof@lixom.net, Magnus Damm , dan.carpenter@oracle.com Date: Fri, 06 Jun 2014 19:44:43 +0900 Message-Id: <20140606104443.4423.6161.sendpatchset@w520> In-Reply-To: <20140606104408.4423.36098.sendpatchset@w520> References: <20140606104408.4423.36098.sendpatchset@w520> Subject: [PATCH v3 04/05] staging: board: Initial board staging support Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-7.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Magnus Damm Add staging board base support to allow continuous upstream in-tree development and integration of platform devices. Helps developers integrate devices as platform devices for device drivers that only provide platform device bindings. This in turn allows for incremental development of both hardware feature support and DT binding work in parallel. Two separate pieces of board staging functionality is provided to ease per-board staging board support: - The board_staging() macro allows easy per-board callbacks - The board_staging_dt_node_available() provides DT node checking Tested on the KZM9D board with the emxx_udc staging driver. Signed-off-by: Magnus Damm --- Changes since V2: - Added CONFIG_OF_ADDRESS dependency Changes since V1: - New broken out staging board base support - Added the function board_staging_dt_node_available() - Added a TODO file drivers/staging/Kconfig | 2 + drivers/staging/Makefile | 1 drivers/staging/board/Kconfig | 8 +++++++ drivers/staging/board/Makefile | 1 drivers/staging/board/TODO | 2 + drivers/staging/board/board.c | 41 ++++++++++++++++++++++++++++++++++++++++ drivers/staging/board/board.h | 20 +++++++++++++++++++ 7 files changed, 75 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- 0001/drivers/staging/Kconfig +++ work/drivers/staging/Kconfig 2014-06-06 18:50:38.000000000 +0900 @@ -110,6 +110,8 @@ source "drivers/staging/media/Kconfig" source "drivers/staging/android/Kconfig" +source "drivers/staging/board/Kconfig" + source "drivers/staging/ozwpan/Kconfig" source "drivers/staging/gdm72xx/Kconfig" --- 0001/drivers/staging/Makefile +++ work/drivers/staging/Makefile 2014-06-06 18:50:38.000000000 +0900 @@ -48,6 +48,7 @@ obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4) += ste_rmi4/ obj-$(CONFIG_MFD_NVEC) += nvec/ obj-$(CONFIG_ANDROID) += android/ +obj-$(CONFIG_STAGING_BOARD) += board/ obj-$(CONFIG_USB_WPAN_HCD) += ozwpan/ obj-$(CONFIG_WIMAX_GDM72XX) += gdm72xx/ obj-$(CONFIG_LTE_GDM724X) += gdm724x/ --- /dev/null +++ work/drivers/staging/board/Kconfig 2014-06-06 19:25:24.000000000 +0900 @@ -0,0 +1,8 @@ +config STAGING_BOARD + boolean "Staging Board Support" + depends on OF_ADDRESS + help + Select to enable per-board staging support code. + + If in doubt, say N here. + --- /dev/null +++ work/drivers/staging/board/Makefile 2014-06-06 18:50:39.000000000 +0900 @@ -0,0 +1 @@ +obj-y := board.o --- /dev/null +++ work/drivers/staging/board/TODO 2014-06-06 18:50:39.000000000 +0900 @@ -0,0 +1,2 @@ +* replace platform device code with DT nodes once the driver supports DT +* remove staging board code when no more platform devices are needed --- /dev/null +++ work/drivers/staging/board/board.c 2014-06-06 18:50:39.000000000 +0900 @@ -0,0 +1,41 @@ +#include +#include +#include +#include +#include +#include "board.h" + +static bool find_by_address(u64 base_address) +{ + struct device_node *dn = of_find_all_nodes(NULL); + struct resource res; + + while (dn) { + if (of_can_translate_address(dn) + && !of_address_to_resource(dn, 0, &res)) { + if (res.start == base_address) { + of_node_put(dn); + return true; + } + } + dn = of_find_all_nodes(dn); + } + + return false; +} + +bool __init board_staging_dt_node_available(const struct resource *resource, + unsigned int num_resources) +{ + unsigned int i; + + for (i = 0; i < num_resources; i++) { + const struct resource *r = resource + i; + + if (resource_type(r) == IORESOURCE_MEM) + if (find_by_address(r->start)) + return true; /* DT node available */ + } + + return false; /* Nothing found */ +} --- /dev/null +++ work/drivers/staging/board/board.h 2014-06-06 18:50:39.000000000 +0900 @@ -0,0 +1,20 @@ +#ifndef __BOARD_H__ +#define __BOARD_H__ +#include +#include + +bool board_staging_dt_node_available(const struct resource *resource, + unsigned int num_resources); + +#define board_staging(str, fn) \ +static int __init runtime_board_check(void) \ +{ \ + if (of_machine_is_compatible(str)) \ + fn(); \ + \ + return 0; \ +} \ + \ +late_initcall(runtime_board_check) + +#endif /* __BOARD_H__ */