2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-04-28 10:06:07 +00:00
|
|
|
/*
|
|
|
|
* CPSW common - libs used across TI ethernet devices.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2016, Texas Instruments, Incorporated
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <fdt_support.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <cpsw.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <dm/device_compat.h>
|
2016-04-28 10:06:07 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
|
|
#define CTRL_MAC_REG(offset, id) ((offset) + 0x8 * (id))
|
|
|
|
|
2019-03-18 08:24:34 +00:00
|
|
|
static void davinci_emac_3517_get_macid(u32 addr, u8 *mac_addr)
|
2016-04-28 10:06:07 +00:00
|
|
|
{
|
|
|
|
/* try reading mac address from efuse */
|
2019-03-18 08:24:34 +00:00
|
|
|
u32 macid_lsb = readl(addr);
|
|
|
|
u32 macid_msb = readl(addr + 4);
|
2016-04-28 10:06:07 +00:00
|
|
|
|
|
|
|
mac_addr[0] = (macid_msb >> 16) & 0xff;
|
|
|
|
mac_addr[1] = (macid_msb >> 8) & 0xff;
|
|
|
|
mac_addr[2] = macid_msb & 0xff;
|
|
|
|
mac_addr[3] = (macid_lsb >> 16) & 0xff;
|
|
|
|
mac_addr[4] = (macid_lsb >> 8) & 0xff;
|
|
|
|
mac_addr[5] = macid_lsb & 0xff;
|
2019-03-18 08:24:34 +00:00
|
|
|
}
|
2016-04-28 10:06:07 +00:00
|
|
|
|
2019-03-18 08:24:34 +00:00
|
|
|
static void cpsw_am33xx_cm_get_macid(u32 addr, u8 *mac_addr)
|
|
|
|
{
|
|
|
|
/* try reading mac address from efuse */
|
|
|
|
u32 macid_lo = readl(addr);
|
|
|
|
u32 macid_hi = readl(addr + 4);
|
|
|
|
|
|
|
|
mac_addr[5] = (macid_lo >> 8) & 0xff;
|
|
|
|
mac_addr[4] = macid_lo & 0xff;
|
|
|
|
mac_addr[3] = (macid_hi >> 24) & 0xff;
|
|
|
|
mac_addr[2] = (macid_hi >> 16) & 0xff;
|
|
|
|
mac_addr[1] = (macid_hi >> 8) & 0xff;
|
|
|
|
mac_addr[0] = macid_hi & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ti_cm_get_macid(struct udevice *dev, struct cpsw_platform_data *data,
|
|
|
|
u8 *mac_addr)
|
|
|
|
{
|
|
|
|
if (!strcmp(data->macid_sel_compat, "cpsw,am33xx"))
|
|
|
|
cpsw_am33xx_cm_get_macid(data->syscon_addr, mac_addr);
|
|
|
|
else if (!strcmp(data->macid_sel_compat, "davinci,emac"))
|
|
|
|
davinci_emac_3517_get_macid(data->syscon_addr, mac_addr);
|
2016-04-28 10:06:07 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 08:24:34 +00:00
|
|
|
int ti_cm_get_macid_addr(struct udevice *dev, int slave,
|
|
|
|
struct cpsw_platform_data *data)
|
2016-04-28 10:06:07 +00:00
|
|
|
{
|
|
|
|
void *fdt = (void *)gd->fdt_blob;
|
2017-01-17 23:52:55 +00:00
|
|
|
int node = dev_of_offset(dev);
|
2016-04-28 10:06:07 +00:00
|
|
|
fdt32_t gmii = 0;
|
|
|
|
int syscon;
|
2019-03-18 08:24:34 +00:00
|
|
|
u16 offset;
|
|
|
|
|
|
|
|
if (of_machine_is_compatible("ti,dm8148")) {
|
|
|
|
offset = 0x630;
|
|
|
|
data->macid_sel_compat = "cpsw,am33xx";
|
|
|
|
} else if (of_machine_is_compatible("ti,am33xx")) {
|
|
|
|
offset = 0x630;
|
|
|
|
data->macid_sel_compat = "cpsw,am33xx";
|
|
|
|
} else if (device_is_compatible(dev, "ti,am3517-emac")) {
|
|
|
|
offset = 0x110;
|
|
|
|
data->macid_sel_compat = "davinci,emac";
|
|
|
|
} else if (device_is_compatible(dev, "ti,dm816-emac")) {
|
|
|
|
offset = 0x30;
|
|
|
|
data->macid_sel_compat = "cpsw,am33xx";
|
|
|
|
} else if (of_machine_is_compatible("ti,am43")) {
|
|
|
|
offset = 0x630;
|
|
|
|
data->macid_sel_compat = "cpsw,am33xx";
|
|
|
|
} else if (of_machine_is_compatible("ti,dra7")) {
|
|
|
|
offset = 0x514;
|
|
|
|
data->macid_sel_compat = "davinci,emac";
|
|
|
|
} else {
|
|
|
|
dev_err(dev, "incompatible machine/device type for reading mac address\n");
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
2016-04-28 10:06:07 +00:00
|
|
|
|
|
|
|
syscon = fdtdec_lookup_phandle(fdt, node, "syscon");
|
|
|
|
if (syscon < 0) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("Syscon offset not found\n");
|
2016-04-28 10:06:07 +00:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
2019-03-18 08:24:34 +00:00
|
|
|
data->syscon_addr = (u32)map_physmem(fdt_translate_address(fdt, syscon,
|
|
|
|
&gmii),
|
|
|
|
sizeof(u32), MAP_NOCACHE);
|
|
|
|
if (data->syscon_addr == FDT_ADDR_T_NONE) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("Not able to get syscon address to get mac efuse address\n");
|
2016-04-28 10:06:07 +00:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
2019-03-18 08:24:34 +00:00
|
|
|
data->syscon_addr += CTRL_MAC_REG(offset, slave);
|
2016-04-28 10:06:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|