From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 07/17] cpsw: Add devicetree probe support
Date: Fri, 22 Nov 2013 15:48:51 +0100 [thread overview]
Message-ID: <1385131741-28280-8-git-send-email-s.hauer@pengutronix.de> (raw)
In-Reply-To: <1385131741-28280-1-git-send-email-s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/net/cpsw.c | 88 +++++++++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 81 insertions(+), 7 deletions(-)
diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c
index 25ba3d9..f021f31 100644
--- a/drivers/net/cpsw.c
+++ b/drivers/net/cpsw.c
@@ -27,6 +27,8 @@
#include <linux/phy.h>
#include <errno.h>
#include <io.h>
+#include <of.h>
+#include <of_net.h>
#include <xfuncs.h>
#include <asm/mmu.h>
#include <asm/system.h>
@@ -900,17 +902,23 @@ static int cpsw_recv(struct eth_device *dev)
return 0;
}
+static void cpsw_slave_init_data(struct cpsw_slave *slave, int slave_num,
+ struct cpsw_priv *priv)
+{
+ struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
+
+ slave->phy_id = data->phy_id;
+ slave->phy_if = data->phy_if;
+}
+
static void cpsw_slave_setup(struct cpsw_slave *slave, int slave_num,
struct cpsw_priv *priv)
{
void *regs = priv->regs;
- struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
dev_dbg(priv->dev, "* %s\n", __func__);
slave->slave_num = slave_num;
- slave->phy_id = data->phy_id;
- slave->phy_if = data->phy_if;
slave->regs = regs + priv->slave_ofs + priv->slave_size * slave_num;
slave->sliver = regs + priv->sliver_ofs + SLIVER_SIZE * slave_num;
}
@@ -950,6 +958,54 @@ static struct cpsw_data cpsw2_data = {
.cppi_ram_ofs = 0x2000,
};
+static int cpsw_phy_sel_init(struct cpsw_priv *priv, struct device_node *np)
+{
+ dev_info(priv->dev, "%s\n", __func__);
+ return 0;
+}
+
+static int cpsw_probe_dt(struct cpsw_priv *priv)
+{
+ struct device_d *dev = priv->dev;
+ struct device_node *np = dev->device_node, *child;
+ int ret, i = 0;
+
+ ret = of_property_read_u32(np, "slaves", &priv->num_slaves);
+ if (ret)
+ return ret;
+
+ priv->slaves = xzalloc(sizeof(struct cpsw_slave) * priv->num_slaves);
+
+ for_each_child_of_node(np, child) {
+ if (of_device_is_compatible(child, "ti,am3352-cpsw-phy-sel")) {
+ ret = cpsw_phy_sel_init(priv, child);
+ if (ret)
+ return ret;
+ }
+
+ if (!strncmp(child->name, "slave", 5)) {
+ struct cpsw_slave *slave = &priv->slaves[i];
+ uint32_t phy_id[2];
+
+ dev_info(dev, "found slave\n");
+
+ ret = of_property_read_u32_array(child, "phy_id", phy_id, 2);
+ if (ret)
+ return ret;
+
+ slave->phy_id = phy_id[1];
+ slave->phy_if = of_get_phy_mode(child);
+
+ i++;
+ }
+ }
+
+ /* Only one slave supported by this driver */
+ priv->num_slaves = 1;
+
+ return 0;
+}
+
int cpsw_probe(struct device_d *dev)
{
struct cpsw_platform_data *data = (struct cpsw_platform_data *)dev->platform_data;
@@ -959,6 +1015,7 @@ int cpsw_probe(struct device_d *dev)
uint64_t start;
uint32_t phy_mask;
struct cpsw_data *cpsw_data;
+ int ret;
dev_dbg(dev, "* %s\n", __func__);
@@ -966,14 +1023,22 @@ int cpsw_probe(struct device_d *dev)
priv = xzalloc(sizeof(*priv));
priv->dev = dev;
- priv->data = *data;
+
+ if (dev->device_node) {
+ ret = cpsw_probe_dt(priv);
+ if (ret)
+ return ret;
+ } else {
+ priv->data = *data;
+ priv->num_slaves = data->num_slaves;
+ priv->slaves = xzalloc(sizeof(struct cpsw_slave) * priv->num_slaves);
+ for_each_slave(priv, cpsw_slave_init_data, idx, priv);
+ }
+
priv->channels = 8;
- priv->num_slaves = data->num_slaves;
priv->ale_entries = 1024;
edev = &priv->edev;
- priv->slaves = xzalloc(sizeof(struct cpsw_slave) * priv->num_slaves);
-
priv->host_port = 0;
priv->regs = regs;
@@ -1059,8 +1124,17 @@ int cpsw_probe(struct device_d *dev)
return 0;
}
+static __maybe_unused struct of_device_id cpsw_dt_ids[] = {
+ {
+ .compatible = "ti,cpsw",
+ }, {
+ /* sentinel */
+ }
+};
+
static struct driver_d cpsw_driver = {
.name = "cpsw",
.probe = cpsw_probe,
+ .of_compatible = DRV_OF_COMPAT(cpsw_dt_ids),
};
device_platform_driver(cpsw_driver);
--
1.8.4.2
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2013-11-22 14:49 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-22 14:48 Add devicetree support to OMAP drivers Sascha Hauer
2013-11-22 14:48 ` [PATCH 01/17] serial: ns16550: Add device ids for omap Sascha Hauer
2013-11-22 14:48 ` [PATCH 02/17] pinctrl: Add pinctrl-single driver Sascha Hauer
2013-11-22 14:48 ` [PATCH 03/17] spi: omap: encode register offset into device_id Sascha Hauer
2013-11-22 14:48 ` [PATCH 04/17] spi: omap: Add devicetree probe support Sascha Hauer
2013-11-22 14:48 ` [PATCH 05/17] i2c: omap: Add devicetree support Sascha Hauer
2013-11-22 14:48 ` [PATCH 06/17] net: cpsw: inline slave_data Sascha Hauer
2013-11-22 14:48 ` Sascha Hauer [this message]
2013-11-22 14:48 ` [PATCH 08/17] net: cpsw: move eth_device into slave Sascha Hauer
2013-11-22 14:48 ` [PATCH 09/17] net: cpsw: drop for_each_slave Sascha Hauer
2013-11-22 14:48 ` [PATCH 10/17] net: cpsw: attach slave to edev->priv Sascha Hauer
2013-11-22 14:48 ` [PATCH 11/17] net: cpsw: straighten error path Sascha Hauer
2013-11-22 14:48 ` [PATCH 12/17] gpio: omap: move to drivers/gpio/ Sascha Hauer
2013-11-22 14:48 ` [PATCH 13/17] omap: gpmc: some refactoring Sascha Hauer
2013-11-22 14:48 ` [PATCH 14/17] gpio: omap: Add devicetree probe support Sascha Hauer
2013-11-22 14:48 ` [PATCH 15/17] mtd: omap gpmc: Use dev_add_param_enum Sascha Hauer
2013-11-22 14:49 ` [PATCH 16/17] bus: Add omap gpmc driver Sascha Hauer
2013-11-22 14:49 ` [PATCH 17/17] mmc: omap: Add devicetree support 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=1385131741-28280-8-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--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