rockchip: pine64: rockpro64: migrate to rockchip_early_misc_init_r
Only setup_iodomain() differs from the original misc_init_r from Rockchip mach code, so let's use rockchip_early_misc_init_r instead of reimplementing the whole misc_init_r from Rockchip. Cc: Quentin Schulz <foss+uboot@0leil.net> Reviewed-by: Kever Yang <kever.yang@rock-chips.com> Reviewed-by: Dragan Simic <dsimic@manjaro.org> Reviewed-by: Peter Robinson <pbrobinson@gmail.com> Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
This commit is contained in:

committed by
Kever Yang

parent
0312072a5d
commit
7672355fe0
@@ -11,7 +11,6 @@
|
|||||||
#include <asm/arch-rockchip/clock.h>
|
#include <asm/arch-rockchip/clock.h>
|
||||||
#include <asm/arch-rockchip/grf_rk3399.h>
|
#include <asm/arch-rockchip/grf_rk3399.h>
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
#include <asm/arch-rockchip/misc.h>
|
|
||||||
|
|
||||||
#define GRF_IO_VSEL_BT565_SHIFT 0
|
#define GRF_IO_VSEL_BT565_SHIFT 0
|
||||||
#define PMUGRF_CON0_VSEL_SHIFT 8
|
#define PMUGRF_CON0_VSEL_SHIFT 8
|
||||||
@@ -31,26 +30,11 @@ static void setup_iodomain(void)
|
|||||||
rk_setreg(&pmugrf->soc_con0, 1 << PMUGRF_CON0_VSEL_SHIFT);
|
rk_setreg(&pmugrf->soc_con0, 1 << PMUGRF_CON0_VSEL_SHIFT);
|
||||||
}
|
}
|
||||||
|
|
||||||
int misc_init_r(void)
|
int rockchip_early_misc_init_r(void)
|
||||||
{
|
{
|
||||||
const u32 cpuid_offset = 0x7;
|
|
||||||
const u32 cpuid_length = 0x10;
|
|
||||||
u8 cpuid[cpuid_length];
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
setup_iodomain();
|
setup_iodomain();
|
||||||
|
|
||||||
ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid);
|
return 0;
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
ret = rockchip_cpuid_set(cpuid, cpuid_length);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
ret = rockchip_setup_macaddr();
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user