Commit bb792ec5 authored by Vishnu Patekar's avatar Vishnu Patekar Committed by Siarhei Siamashka
Browse files

fel: add fel spl support for A83T



For A83T MMU is not enabled by BROM.
U-boot SPL support is not yet added for A83T.
tested using A33 u-boot binary.

$fel spl u-boot-sunxi-with-spl.bin
U-Boot SPL 2015.10-rc1-g1a8cf6d (Aug 17 2015 - 15:14:46)
DRAM:Timeout initialising DRAM.

it jumped to SPL and on serial it displayed above log from SPL.
I'll try to add U-boot SPL support for A83T soon.
Signed-off-by: default avatarVishnu Patekar <vishnupatekar0510@gmail.com>
Acked-by: default avatarSiarhei Siamashka <siarhei.siamashka@gmail.com>
parent 12f92fcb
......@@ -195,6 +195,7 @@ void aw_fel_print_version(libusb_device_handle *usb)
case 0x1650: soc_name="A23";break;
case 0x1639: soc_name="A80";break;
case 0x1667: soc_name="A33";break;
case 0x1673: soc_name="A83T";break;
}
printf("%.8s soc=%08x(%s) %08x ver=%04x %02x %02x scratchpad=%08x %08x %08x\n",
......@@ -414,6 +415,11 @@ soc_sram_info soc_sram_info_table[] = {
.thunk_addr = 0x46E00, .thunk_size = 0x200,
.swap_buffers = a31_sram_swap_buffers,
},
{
.soc_id = 0x1673, /* Allwinner A83T */
.thunk_addr = 0x46E00, .thunk_size = 0x200,
.swap_buffers = a31_sram_swap_buffers,
},
{ 0 } /* End of the table */
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment