From patchwork Wed Sep 7 21:34:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Boyd X-Patchwork-Id: 75694 Delivered-To: patch@linaro.org Received: by 10.140.106.11 with SMTP id d11csp525848qgf; Wed, 7 Sep 2016 14:35:33 -0700 (PDT) X-Received: by 10.98.57.14 with SMTP id g14mr36425462pfa.23.1473284131145; Wed, 07 Sep 2016 14:35:31 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id yo4si14070269pac.85.2016.09.07.14.35.30; Wed, 07 Sep 2016 14:35:31 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-usb-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@linaro.org; spf=pass (google.com: best guess record for domain of linux-usb-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-usb-owner@vger.kernel.org; dmarc=fail (p=NONE dis=NONE) header.from=linaro.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756873AbcIGVf3 (ORCPT + 4 others); Wed, 7 Sep 2016 17:35:29 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:34468 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756724AbcIGVfY (ORCPT ); Wed, 7 Sep 2016 17:35:24 -0400 Received: by mail-pa0-f49.google.com with SMTP id to9so9973299pac.1 for ; Wed, 07 Sep 2016 14:35:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=jh58yjgIQc80NpUTz9LAAFXymbvxB2t6kOm2ptusEGM=; b=b2ikdrS7TCPjzYvqhW81AawaUHaJ7l2iW8m3Wyqtw8atZS3QXitnD4p840b07WesTp 5vxikvcxQYfBA1OPtKU2xCb39C8fqjakW4OYy5TRewgWV+u7YTXOeI1sH/v44PXlxPJo TB772JpeDI3Lac1/U7Uhmm9eUsrDJsJheSusU= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=jh58yjgIQc80NpUTz9LAAFXymbvxB2t6kOm2ptusEGM=; b=S3P0vNMRRDev52mwjUtiyxj/zv19y5VqSI76Abu4p2UMQw2VA6SeJn2YRruSeUaL2o novpiHwuqn2SkiyJUm9aOEYCUjgwqGJKZpcXJygcitIgA35BTfv+G5YuuzcgbCI/SEb2 Gld9rcRZUO2g9BsimwMlcD6Q2eXiCGBiJrnwDWl34IgI/MPhXOT8GGanYoUkp4tltjm/ 77pChhm+fplI+wrS9yfZ+D1Wr22ju49zbOGzWtVlmx+qamenKQWIpOVHtbsw7vJQ1w8X TlGaW0M7m3c7HGmD718zwq+Wk/nS6nPrCY9fMBybj7axU0+qYTJ9BoMVNP0WqNMP8f8K f0Tw== X-Gm-Message-State: AE9vXwNutGSzVSUxmosP09ya0rrJeH5fnFXccR4JXICTUPe/bkW275SXDYIkT+UoV64m0nW3 X-Received: by 10.66.75.4 with SMTP id y4mr4801292pav.139.1473284123397; Wed, 07 Sep 2016 14:35:23 -0700 (PDT) Received: from localhost.localdomain (ip68-101-172-78.sd.sd.cox.net. [68.101.172.78]) by smtp.gmail.com with ESMTPSA id 75sm51015417pfw.92.2016.09.07.14.35.22 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 07 Sep 2016 14:35:22 -0700 (PDT) From: Stephen Boyd To: linux-usb@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, Andy Gross , Bjorn Andersson , Neil Armstrong , Arnd Bergmann , Felipe Balbi , Peter Chen , Rob Herring , devicetree@vger.kernel.org Subject: [PATCH v4 01/22] of: device: Support loading a module with OF based modalias Date: Wed, 7 Sep 2016 14:34:58 -0700 Message-Id: <20160907213519.27340-2-stephen.boyd@linaro.org> X-Mailer: git-send-email 2.9.0.rc2.8.ga28705d In-Reply-To: <20160907213519.27340-1-stephen.boyd@linaro.org> References: <20160907213519.27340-1-stephen.boyd@linaro.org> Sender: linux-usb-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-usb@vger.kernel.org In the case of ULPI devices, we want to be able to load the driver before registering the device so that we don't get stuck in a loop waiting for the phy module to appear and failing usb controller probe. Currently we request the ulpi module via the ulpi ids, but in the DT case we might need to request it with the OF based modalias instead. Add a common function that allows anyone to request a module with the OF based modalias. Cc: Rob Herring Cc: Signed-off-by: Stephen Boyd --- drivers/of/device.c | 23 +++++++++++++++++++++++ include/linux/of_device.h | 6 ++++++ 2 files changed, 29 insertions(+) -- 2.9.0.rc2.8.ga28705d -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/of/device.c b/drivers/of/device.c index fd5cfad7c403..8a22a253a830 100644 --- a/drivers/of/device.c +++ b/drivers/of/device.c @@ -226,6 +226,29 @@ ssize_t of_device_get_modalias(struct device *dev, char *str, ssize_t len) return tsize; } +int of_device_request_module(struct device *dev) +{ + char *str; + ssize_t size; + int ret; + + size = of_device_get_modalias(dev, NULL, 0); + if (size < 0) + return size; + + str = kmalloc(size + 1, GFP_KERNEL); + if (!str) + return -ENOMEM; + + of_device_get_modalias(dev, str, size); + str[size] = '\0'; + ret = request_module(str); + kfree(str); + + return ret; +} +EXPORT_SYMBOL_GPL(of_device_request_module); + /** * of_device_uevent - Display OF related uevent information */ diff --git a/include/linux/of_device.h b/include/linux/of_device.h index cc7dd687a89d..e9afbcc8de12 100644 --- a/include/linux/of_device.h +++ b/include/linux/of_device.h @@ -37,6 +37,7 @@ extern const void *of_device_get_match_data(const struct device *dev); extern ssize_t of_device_get_modalias(struct device *dev, char *str, ssize_t len); +extern int of_device_request_module(struct device *dev); extern void of_device_uevent(struct device *dev, struct kobj_uevent_env *env); extern int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env); @@ -78,6 +79,11 @@ static inline int of_device_get_modalias(struct device *dev, return -ENODEV; } +static inline int of_device_request_module(struct device *dev) +{ + return -ENODEV; +} + static inline int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env) {