mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-07 01:40:49 +01:00
Merge "arm: dts: Add RDP479 & RDP481 dts support"
This commit is contained in:
commit
e061dfc34e
2 changed files with 16 additions and 0 deletions
|
|
@ -1179,6 +1179,8 @@ extern unsigned int __machine_arch_type;
|
|||
#define MACH_TYPE_IPQ5332_AP_MI01_3_C2 0x8060102
|
||||
#define MACH_TYPE_IPQ5332_AP_MI04_1 0x8060004
|
||||
#define MACH_TYPE_IPQ5332_AP_MI04_1_C2 0x8060007
|
||||
#define MACH_TYPE_IPQ5332_AP_RDP_479 0x8060202
|
||||
#define MACH_TYPE_IPQ5332_AP_RDP_481 0x8060302
|
||||
|
||||
#ifdef CONFIG_ARCH_EBSA110
|
||||
# ifdef machine_arch_type
|
||||
|
|
|
|||
|
|
@ -827,6 +827,10 @@ unsigned int get_dts_machid(unsigned int machid)
|
|||
return MACH_TYPE_IPQ5332_AP_MI01_3;
|
||||
case MACH_TYPE_IPQ5332_AP_MI04_1_C2:
|
||||
return MACH_TYPE_IPQ5332_AP_MI04_1;
|
||||
case MACH_TYPE_IPQ5332_AP_RDP_479:
|
||||
return MACH_TYPE_IPQ5332_AP_MI01_3;
|
||||
case MACH_TYPE_IPQ5332_AP_RDP_481:
|
||||
return MACH_TYPE_IPQ5332_AP_MI01_3;
|
||||
default:
|
||||
return machid;
|
||||
}
|
||||
|
|
@ -850,6 +854,16 @@ void ipq_uboot_fdt_fixup(void)
|
|||
config_list[config_nos++] = "config@rdp478";
|
||||
config_list[config_nos++] = "config-rdp478";
|
||||
break;
|
||||
case MACH_TYPE_IPQ5332_AP_RDP_479:
|
||||
config_list[config_nos++] = "config@ap-rdp479";
|
||||
config_list[config_nos++] = "config@rdp479";
|
||||
config_list[config_nos++] = "config-rdp479";
|
||||
break;
|
||||
case MACH_TYPE_IPQ5332_AP_RDP_481:
|
||||
config_list[config_nos++] = "config@ap-rdp481";
|
||||
config_list[config_nos++] = "config@rdp481";
|
||||
config_list[config_nos++] = "config-rdp481";
|
||||
break;
|
||||
}
|
||||
|
||||
if (config_nos)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue