Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1204661 > unrolled thread
| Started by | David Daney <ddaney.cavm@gmail.com> |
|---|---|
| First post | 2015-08-11 03:00 +0200 |
| Last post | 2015-08-13 10:40 +0200 |
| Articles | 8 — 5 participants |
Back to article view | Back to linux.kernel
[PATCH v2 0/2] net: thunder: Add ACPI support. David Daney <ddaney.cavm@gmail.com> - 2015-08-11 03:00 +0200
[PATCH v2 2/2] net, thunder, bgx: Add support to get MAC address from ACPI. David Daney <ddaney.cavm@gmail.com> - 2015-08-11 03:00 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. David Miller <davem@davemloft.net> - 2015-08-11 20:50 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. Robert Richter <robert.richter@caviumnetworks.com> - 2015-08-11 22:20 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. David Miller <davem@davemloft.net> - 2015-08-11 23:00 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. David Miller <davem@davemloft.net> - 2015-08-11 22:50 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. Catalin Marinas <catalin.marinas@arm.com> - 2015-08-12 17:30 +0200
Re: [PATCH v2 0/2] net: thunder: Add ACPI support. Hanjun Guo <hanjun.guo@linaro.org> - 2015-08-13 10:40 +0200
| From | David Daney <ddaney.cavm@gmail.com> |
|---|---|
| Date | 2015-08-11 03:00 +0200 |
| Subject | [PATCH v2 0/2] net: thunder: Add ACPI support. |
| Message-ID | <pW655-66O-7@gated-at.bofh.it> |
From: David Daney <david.daney@cavium.com> Change from v1: Drop PHY binding part, use fwnode_property* APIs. The first patch (1/2) rearranges the existing code a little with no functional change to get ready for the second. The second (2/2) does the actual work of adding support to extract the needed information from the ACPI tables. David Daney (1): net, thunder, bgx: Add support to get MAC address from ACPI. Robert Richter (1): net: thunder: Factor out DT specific code in BGX drivers/net/ethernet/cavium/thunder/thunder_bgx.c | 134 +++++++++++++++++++--- 1 file changed, 120 insertions(+), 14 deletions(-) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | David Daney <ddaney.cavm@gmail.com> |
|---|---|
| Date | 2015-08-11 03:00 +0200 |
| Subject | [PATCH v2 2/2] net, thunder, bgx: Add support to get MAC address from ACPI. |
| Message-ID | <pW655-66O-19@gated-at.bofh.it> |
| In reply to | #1204661 |
From: David Daney <david.daney@cavium.com>
Currently there is no way to get the MAC address in a firmware
independent manner, so set the MAC address of the device directly from
the ACPI tables.
The binding agrees with the proposed standard here:
http://www.uefi.org/sites/default/files/resources/nic-request-v2.pdf
Based on code from: Narinder Dhillon <ndhillon@cavium.com>
Tomasz Nowicki <tomasz.nowicki@linaro.org>
Robert Richter <rrichter@cavium.com>
Signed-off-by: Tomasz Nowicki <tomasz.nowicki@linaro.org>
Signed-off-by: Robert Richter <rrichter@cavium.com>
Signed-off-by: David Daney <david.daney@cavium.com>
---
drivers/net/ethernet/cavium/thunder/thunder_bgx.c | 86 ++++++++++++++++++++++-
1 file changed, 85 insertions(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
index 615b2af..5e54186 100644
--- a/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
+++ b/drivers/net/ethernet/cavium/thunder/thunder_bgx.c
@@ -6,6 +6,7 @@
* as published by the Free Software Foundation.
*/
+#include <linux/acpi.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/pci.h>
@@ -26,7 +27,7 @@
struct lmac {
struct bgx *bgx;
int dmac;
- unsigned char mac[ETH_ALEN];
+ u8 mac[ETH_ALEN];
bool link_up;
int lmacid; /* ID within BGX */
int lmacid_bd; /* ID on board */
@@ -835,6 +836,86 @@ static void bgx_get_qlm_mode(struct bgx *bgx)
}
}
+#ifdef CONFIG_ACPI
+
+static int acpi_get_mac_address(struct acpi_device *adev, u8 *dst)
+{
+ u8 mac[ETH_ALEN];
+ int ret;
+
+ ret = fwnode_property_read_u8_array(acpi_fwnode_handle(adev),
+ "mac-address", mac, ETH_ALEN);
+ if (ret)
+ goto out;
+
+ if (!is_valid_ether_addr(mac)) {
+ ret = -EINVAL;
+ goto out;
+ }
+
+ memcpy(dst, mac, ETH_ALEN);
+out:
+ return ret;
+}
+
+/* Currently only sets the MAC address. */
+static acpi_status bgx_acpi_register_phy(acpi_handle handle,
+ u32 lvl, void *context, void **rv)
+{
+ struct bgx *bgx = context;
+ struct acpi_device *adev;
+
+ if (acpi_bus_get_device(handle, &adev))
+ goto out;
+
+ acpi_get_mac_address(adev, bgx->lmac[bgx->lmac_count].mac);
+
+ SET_NETDEV_DEV(&bgx->lmac[bgx->lmac_count].netdev, &bgx->pdev->dev);
+
+ bgx->lmac[bgx->lmac_count].lmacid = bgx->lmac_count;
+out:
+ bgx->lmac_count++;
+ return AE_OK;
+}
+
+static acpi_status bgx_acpi_match_id(acpi_handle handle, u32 lvl,
+ void *context, void **ret_val)
+{
+ struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
+ struct bgx *bgx = context;
+ char bgx_sel[5];
+
+ snprintf(bgx_sel, 5, "BGX%d", bgx->bgx_id);
+ if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &string))) {
+ pr_warn("Invalid link device\n");
+ return AE_OK;
+ }
+
+ if (strncmp(string.pointer, bgx_sel, 4))
+ return AE_OK;
+
+ acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
+ bgx_acpi_register_phy, NULL, bgx, NULL);
+
+ kfree(string.pointer);
+ return AE_CTRL_TERMINATE;
+}
+
+static int bgx_init_acpi_phy(struct bgx *bgx)
+{
+ acpi_get_devices(NULL, bgx_acpi_match_id, bgx, (void **)NULL);
+ return 0;
+}
+
+#else
+
+static int bgx_init_acpi_phy(struct bgx *bgx)
+{
+ return -ENODEV;
+}
+
+#endif /* CONFIG_ACPI */
+
#if IS_ENABLED(CONFIG_OF_MDIO)
static int bgx_init_of_phy(struct bgx *bgx)
@@ -882,6 +963,9 @@ static int bgx_init_of_phy(struct bgx *bgx)
static int bgx_init_phy(struct bgx *bgx)
{
+ if (!acpi_disabled)
+ return bgx_init_acpi_phy(bgx);
+
return bgx_init_of_phy(bgx);
}
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2015-08-11 20:50 +0200 |
| Message-ID | <pWmMx-5cz-15@gated-at.bofh.it> |
| In reply to | #1204661 |
From: David Daney <ddaney.cavm@gmail.com> Date: Mon, 10 Aug 2015 17:58:35 -0700 > Change from v1: Drop PHY binding part, use fwnode_property* APIs. > > The first patch (1/2) rearranges the existing code a little with no > functional change to get ready for the second. The second (2/2) does > the actual work of adding support to extract the needed information > from the ACPI tables. Series applied. In the future it might be better structured to try and get the OF node, and if that fails then try and use the ACPI method to obtain these values. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Robert Richter <robert.richter@caviumnetworks.com> |
|---|---|
| Date | 2015-08-11 22:20 +0200 |
| Message-ID | <pWobF-7lR-17@gated-at.bofh.it> |
| In reply to | #1205372 |
On 11.08.15 13:04:55, David Daney wrote: > >In the future it might be better structured to try and get the OF > >node, and if that fails then try and use the ACPI method to obtain > >these values. > > Our current approach, as you can see in the patch, is the opposite. If ACPI > is being used, prefer that over the OF device tree. > > You seem to be recommending precedence for OF. It should be consistent > across all drivers/sub-systems, so do you really think that OF before ACPI > is the way to go? If ACPI is enabled then no OF function may be called at all. With !ACPI or acpi=no kernel parameter, then acpi_disabled is set and no ACPI function should be called. It always falls back to and only uses OF/devicetree in this case. So there is now way to try devicetree first and then use acpi or vice versa. There is no mixup using acpi or devicetree with the same boot, either one or the other. -Robert -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2015-08-11 23:00 +0200 |
| Message-ID | <pWoOn-85g-19@gated-at.bofh.it> |
| In reply to | #1205414 |
From: Robert Richter <robert.richter@caviumnetworks.com> Date: Tue, 11 Aug 2015 22:12:37 +0200 > On 11.08.15 13:04:55, David Daney wrote: >> >In the future it might be better structured to try and get the OF >> >node, and if that fails then try and use the ACPI method to obtain >> >these values. >> >> Our current approach, as you can see in the patch, is the opposite. If ACPI >> is being used, prefer that over the OF device tree. >> >> You seem to be recommending precedence for OF. It should be consistent >> across all drivers/sub-systems, so do you really think that OF before ACPI >> is the way to go? > > If ACPI is enabled then no OF function may be called at all. That makes no sense to me at all. If ACPI is enabled, the OF routines should return no nodes etc. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2015-08-11 22:50 +0200 |
| Message-ID | <pWoEH-7U3-11@gated-at.bofh.it> |
| In reply to | #1205372 |
From: David Daney <ddaney@caviumnetworks.com> Date: Tue, 11 Aug 2015 13:04:55 -0700 > You seem to be recommending precedence for OF. It should be > consistent across all drivers/sub-systems, so do you really think > that OF before ACPI is the way to go? I just think it's more hackish to test acpi_disabled than to simply see if the matching OF node even exists. If ACPI is enabled, no OF node will be found. It could just be my preference for such things. I really wish it just fell out from the probing method, but we're using PCI for that. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Catalin Marinas <catalin.marinas@arm.com> |
|---|---|
| Date | 2015-08-12 17:30 +0200 |
| Message-ID | <pWG8x-8me-11@gated-at.bofh.it> |
| In reply to | #1205372 |
On Tue, Aug 11, 2015 at 01:04:55PM -0700, David Daney wrote: > On 08/11/2015 11:49 AM, David Miller wrote: > >From: David Daney <ddaney.cavm@gmail.com> > >Date: Mon, 10 Aug 2015 17:58:35 -0700 > > > >>Change from v1: Drop PHY binding part, use fwnode_property* APIs. > >> > >>The first patch (1/2) rearranges the existing code a little with no > >>functional change to get ready for the second. The second (2/2) does > >>the actual work of adding support to extract the needed information > >>from the ACPI tables. > > > >Series applied. > > Thank you very much. > > >In the future it might be better structured to try and get the OF > >node, and if that fails then try and use the ACPI method to obtain > >these values. > > Our current approach, as you can see in the patch, is the opposite. If ACPI > is being used, prefer that over the OF device tree. > > You seem to be recommending precedence for OF. It should be consistent > across all drivers/sub-systems, so do you really think that OF before ACPI > is the way to go? On arm64 (unless you use a vendor kernel), DT takes precedence over ACPI if both arm provided to the kernel (and it's a fair assumption given that ACPI on ARM is still in the early days). You could also force ACPI with acpi=force on the kernel cmd line and the arch code will not unflatten the DT even if it is provided, therefore is_of_node(fwnode) returning false. I haven't looked at your driver in detail but something like AMD's xgbe_probe() uses a single function for both DT and ACPI with device_property_read_*() functions getting the information from the correct place in either case. The ACPI vs DT precedence is handled by the arch boot code, we never mix the two and confuse the drivers. -- Catalin -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Hanjun Guo <hanjun.guo@linaro.org> |
|---|---|
| Date | 2015-08-13 10:40 +0200 |
| Message-ID | <pWWdk-6oF-15@gated-at.bofh.it> |
| In reply to | #1206212 |
On 08/12/2015 11:36 PM, David Daney wrote: > On 08/12/2015 08:23 AM, Catalin Marinas wrote: >> On Tue, Aug 11, 2015 at 01:04:55PM -0700, David Daney wrote: >>> On 08/11/2015 11:49 AM, David Miller wrote: >>>> From: David Daney <ddaney.cavm@gmail.com> >>>> Date: Mon, 10 Aug 2015 17:58:35 -0700 >>>> >>>>> Change from v1: Drop PHY binding part, use fwnode_property* APIs. >>>>> >>>>> The first patch (1/2) rearranges the existing code a little with no >>>>> functional change to get ready for the second. The second (2/2) does >>>>> the actual work of adding support to extract the needed information >>>> >from the ACPI tables. >>>> >>>> Series applied. >>> >>> Thank you very much. >>> >>>> In the future it might be better structured to try and get the OF >>>> node, and if that fails then try and use the ACPI method to obtain >>>> these values. >>> >>> Our current approach, as you can see in the patch, is the opposite. >>> If ACPI >>> is being used, prefer that over the OF device tree. >>> >>> You seem to be recommending precedence for OF. It should be consistent >>> across all drivers/sub-systems, so do you really think that OF before >>> ACPI >>> is the way to go? >> >> On arm64 (unless you use a vendor kernel), DT takes precedence over ACPI >> if both arm provided to the kernel (and it's a fair assumption given >> that ACPI on ARM is still in the early days). You could also force ACPI >> with acpi=force on the kernel cmd line and the arch code will not >> unflatten the DT even if it is provided, therefore is_of_node(fwnode) >> returning false. Yes. on the other hand, if no DT is provided, will try ACPI even if no acpi=force on the kernel cmd line. >> >> I haven't looked at your driver in detail but something like AMD's >> xgbe_probe() uses a single function for both DT and ACPI with >> device_property_read_*() functions getting the information from the >> correct place in either case. The ACPI vs DT precedence is handled by >> the arch boot code, we never mix the two and confuse the drivers. >> > > My long term plan is to create something like > firmware_get_mac_address(), that would encapsulate of_get_mac_address() > and the ACPI equivalent. > > Same for firmware_phy_find_device(). I'm very keen on seeing that happens :) Thanks Hanjun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web