mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
- fix khadas-vim README
- add support for unique generated MAC adresses from SoC serial, limited to Amlogic GXL/GXM boards for now -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJdHgg6AAoJEHfc29rIyEnRjVkP/RmwsBgIdn/0LnuU5JQIcmNI S8fOV2u5YY4q4hX/5qgg6uN7/yONtiZjw4bxLJGLCj0SUQ6Tv8KgE+Jh1vswek6P ceOsIBfyg3ZX6INkH/moHH8/yl1NpirYjNGxw1Bg9ctBHPR9smQdh50pMyDy67mG E2Dja/TtOuggF6N98WSu1jB8UBA55CbEEBj1PkQt7K9bXJs9cEGSrpyZLEJvsRmL Pot1l1A9XKhRS3PylgoxmXWNXFD8wAk8LHEACUsxnybiWoIW5Dfao/4PSmPigXAp n9V3tU/OQECar0CKOtCod5pS5z8TVPuuaay/Y/+ijLlCktJBwkSaGWIhf9ILOjOW UTlcsFDR4KDqaEFKNDoOtOGYpczFrduU0b1hq1qu4hLV7YIxg738DoRr30JM5Lwa gJbUCHkPRnxVB3UztsctmQwZwfKmAdvd1CrzKqFBvemrQrf2AwfBweiAv8/AUzqq c7o0K0WdP/03CkmBU8KbyFn2N1X2VT1KlqgEVfRTq7UWTiLnS4j9AAiwNapGOb4M Ox7eODLbLw3UyZYjDuBHyPYa8uPhtVDpuFCPn2JnwFdbnT4kfE535pCKT/vbasYd 0UQkgUPoIHm0VGhxv0hkjmrjqgv5CLQyAYhJVGATTH0Nc9dYGFKF/Gm6YIUpjUuW nhSh5HHVCg4dkogiMJ7u =BL1s -----END PGP SIGNATURE----- Merge tag 'u-boot-amlogic-20190704' of https://gitlab.denx.de/u-boot/custodians/u-boot-amlogic - fix khadas-vim README - add support for unique generated MAC adresses from SoC serial, limited to Amlogic GXL/GXM boards for now
This commit is contained in:
commit
0b7f1a95df
7 changed files with 67 additions and 1 deletions
|
@ -19,4 +19,7 @@ enum {
|
||||||
*/
|
*/
|
||||||
void meson_eth_init(phy_interface_t mode, unsigned int flags);
|
void meson_eth_init(phy_interface_t mode, unsigned int flags);
|
||||||
|
|
||||||
|
/* Generate an unique MAC address based on the HW serial */
|
||||||
|
int meson_generate_serial_ethaddr(void);
|
||||||
|
|
||||||
#endif /* __MESON_ETH_H__ */
|
#endif /* __MESON_ETH_H__ */
|
||||||
|
|
|
@ -8,4 +8,8 @@
|
||||||
|
|
||||||
ssize_t meson_sm_read_efuse(uintptr_t offset, void *buffer, size_t size);
|
ssize_t meson_sm_read_efuse(uintptr_t offset, void *buffer, size_t size);
|
||||||
|
|
||||||
|
#define SM_SERIAL_SIZE 12
|
||||||
|
|
||||||
|
int meson_sm_get_serial(void *buffer, size_t size);
|
||||||
|
|
||||||
#endif /* __MESON_SM_H__ */
|
#endif /* __MESON_SM_H__ */
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#include <asm/arch/boot.h>
|
#include <asm/arch/boot.h>
|
||||||
#include <linux/libfdt.h>
|
#include <linux/libfdt.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
|
#include <environment.h>
|
||||||
#include <asm/arch/mem.h>
|
#include <asm/arch/mem.h>
|
||||||
#include <asm/arch/sm.h>
|
#include <asm/arch/sm.h>
|
||||||
#include <asm/armv8/mmu.h>
|
#include <asm/armv8/mmu.h>
|
||||||
|
@ -67,6 +68,36 @@ void meson_board_add_reserved_memory(void *fdt, u64 start, u64 size)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int meson_generate_serial_ethaddr(void)
|
||||||
|
{
|
||||||
|
u8 mac_addr[ARP_HLEN];
|
||||||
|
char serial[SM_SERIAL_SIZE];
|
||||||
|
u32 sid;
|
||||||
|
u16 sid16;
|
||||||
|
|
||||||
|
if (!meson_sm_get_serial(serial, SM_SERIAL_SIZE)) {
|
||||||
|
sid = crc32(0, (unsigned char *)serial, SM_SERIAL_SIZE);
|
||||||
|
sid16 = crc16_ccitt(0, (unsigned char *)serial, SM_SERIAL_SIZE);
|
||||||
|
|
||||||
|
/* Ensure the NIC specific bytes of the mac are not all 0 */
|
||||||
|
if ((sid & 0xffffff) == 0)
|
||||||
|
sid |= 0x800000;
|
||||||
|
|
||||||
|
/* Non OUI / registered MAC address */
|
||||||
|
mac_addr[0] = ((sid16 >> 8) & 0xfc) | 0x02;
|
||||||
|
mac_addr[1] = (sid16 >> 0) & 0xff;
|
||||||
|
mac_addr[2] = (sid >> 24) & 0xff;
|
||||||
|
mac_addr[3] = (sid >> 16) & 0xff;
|
||||||
|
mac_addr[4] = (sid >> 8) & 0xff;
|
||||||
|
mac_addr[5] = (sid >> 0) & 0xff;
|
||||||
|
|
||||||
|
eth_env_set_enetaddr("ethaddr", mac_addr);
|
||||||
|
} else
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static void meson_set_boot_source(void)
|
static void meson_set_boot_source(void)
|
||||||
{
|
{
|
||||||
const char *source;
|
const char *source;
|
||||||
|
|
|
@ -6,12 +6,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <common.h>
|
#include <common.h>
|
||||||
|
#include <asm/arch/sm.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
|
|
||||||
#define FN_GET_SHARE_MEM_INPUT_BASE 0x82000020
|
#define FN_GET_SHARE_MEM_INPUT_BASE 0x82000020
|
||||||
#define FN_GET_SHARE_MEM_OUTPUT_BASE 0x82000021
|
#define FN_GET_SHARE_MEM_OUTPUT_BASE 0x82000021
|
||||||
#define FN_EFUSE_READ 0x82000030
|
#define FN_EFUSE_READ 0x82000030
|
||||||
#define FN_EFUSE_WRITE 0x82000031
|
#define FN_EFUSE_WRITE 0x82000031
|
||||||
|
#define FN_CHIP_ID 0x82000044
|
||||||
|
|
||||||
static void *shmem_input;
|
static void *shmem_input;
|
||||||
static void *shmem_output;
|
static void *shmem_output;
|
||||||
|
@ -53,3 +55,25 @@ ssize_t meson_sm_read_efuse(uintptr_t offset, void *buffer, size_t size)
|
||||||
|
|
||||||
return regs.regs[0];
|
return regs.regs[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define SM_CHIP_ID_LENGTH 119
|
||||||
|
#define SM_CHIP_ID_OFFSET 4
|
||||||
|
#define SM_CHIP_ID_SIZE 12
|
||||||
|
|
||||||
|
int meson_sm_get_serial(void *buffer, size_t size)
|
||||||
|
{
|
||||||
|
struct pt_regs regs;
|
||||||
|
|
||||||
|
meson_init_shmem();
|
||||||
|
|
||||||
|
regs.regs[0] = FN_CHIP_ID;
|
||||||
|
regs.regs[1] = 0;
|
||||||
|
regs.regs[2] = 0;
|
||||||
|
|
||||||
|
smc_call(®s);
|
||||||
|
|
||||||
|
memcpy(buffer, shmem_output + SM_CHIP_ID_OFFSET,
|
||||||
|
min_t(size_t, size, SM_CHIP_ID_SIZE));
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@ the git tree published by the board vendor:
|
||||||
> git clone https://github.com/khadas/u-boot -b Vim vim-u-boot
|
> git clone https://github.com/khadas/u-boot -b Vim vim-u-boot
|
||||||
> cd vim-u-boot
|
> cd vim-u-boot
|
||||||
> make kvim_defconfig
|
> make kvim_defconfig
|
||||||
> make
|
> make CROSS_COMPILE=aarch64-none-elf-
|
||||||
> export FIPDIR=$PWD/fip
|
> export FIPDIR=$PWD/fip
|
||||||
|
|
||||||
Go back to mainline U-Boot source tree then :
|
Go back to mainline U-Boot source tree then :
|
||||||
|
|
|
@ -32,6 +32,8 @@ int misc_init_r(void)
|
||||||
mac_addr, EFUSE_MAC_SIZE);
|
mac_addr, EFUSE_MAC_SIZE);
|
||||||
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
||||||
eth_env_set_enetaddr("ethaddr", mac_addr);
|
eth_env_set_enetaddr("ethaddr", mac_addr);
|
||||||
|
else
|
||||||
|
meson_generate_serial_ethaddr();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!env_get("serial#")) {
|
if (!env_get("serial#")) {
|
||||||
|
|
|
@ -31,6 +31,8 @@ int misc_init_r(void)
|
||||||
mac_addr, EFUSE_MAC_SIZE);
|
mac_addr, EFUSE_MAC_SIZE);
|
||||||
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
if (len == EFUSE_MAC_SIZE && is_valid_ethaddr(mac_addr))
|
||||||
eth_env_set_enetaddr("ethaddr", mac_addr);
|
eth_env_set_enetaddr("ethaddr", mac_addr);
|
||||||
|
else
|
||||||
|
meson_generate_serial_ethaddr();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!env_get("serial#")) {
|
if (!env_get("serial#")) {
|
||||||
|
|
Loading…
Reference in a new issue