From: Peter Mamonov <pmamonov@gmail.com>
To: barebox@lists.infradead.org
Cc: Peter Mamonov <pmamonov@gmail.com>
Subject: [RFC] usb: ehci-hcd: add OF bindings
Date: Thu, 27 Aug 2015 19:48:31 +0300 [thread overview]
Message-ID: <1440694111-1088-1-git-send-email-pmamonov@gmail.com> (raw)
Signed-off-by: Peter Mamonov <pmamonov@gmail.com>
---
drivers/usb/host/ehci-hcd.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index 1146b71..ef555eb 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -940,12 +940,16 @@ static int ehci_probe(struct device_d *dev)
{
struct ehci_data data = {};
struct ehci_platform_data *pdata = dev->platform_data;
+ struct device_node *dn = dev->device_node;
+ uint32_t flags;
/* default to EHCI_HAS_TT to not change behaviour of boards
* without platform_data
*/
if (pdata)
data.flags = pdata->flags;
+ else if (dn && of_property_read_u32(dn, "flags", &flags) == 0)
+ data.flags = flags;
else
data.flags = EHCI_HAS_TT;
@@ -967,9 +971,18 @@ static void ehci_remove(struct device_d *dev)
ehci_halt(ehci);
}
+static __maybe_unused struct of_device_id ehci_platform_dt_ids[] = {
+ {
+ .compatible = "generic-ehci",
+ }, {
+ /* sentinel */
+ }
+};
+
static struct driver_d ehci_driver = {
.name = "ehci",
.probe = ehci_probe,
.remove = ehci_remove,
+ .of_compatible = DRV_OF_COMPAT(ehci_platform_dt_ids),
};
device_platform_driver(ehci_driver);
--
2.1.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2015-08-27 16:47 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-27 16:48 Peter Mamonov [this message]
2015-08-27 19:41 ` Sascha Hauer
2015-08-28 11:06 Peter Mamonov
2015-09-04 6:06 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1440694111-1088-1-git-send-email-pmamonov@gmail.com \
--to=pmamonov@gmail.com \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox