summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-11-10sunxi: print SoC ID on startupAndre Przywara
Each Allwinner SoC contains a SoC ID, which can be used to identify a chip. Add a function to retrieve this value and print it upon initializing ATF.
2016-11-10sunxi: remove unused GPIO codeAndre Przywara
Allwinner provided code for setting up the pinmux configuration. Only that this code has no user, so we can completely remove it.
2016-11-10sunxi: power: set DRAM voltage to 1.5VAndre Przywara
On the Pine64 boards (at least on some of them) the PMIC does not reset the DRAM voltage (DCDC5) to the required 1.5V. Program the respective AXP register to improve DRAM stability.
2016-10-23sunxi: setup basic clocksAndre Przywara
Different ways of booting set up the clocks differently, so lets initialize the basic clocks here to be on the same page.
2016-10-23sunxi: fix udelay() implementationAndre Przywara
Nah, compilers are way too clever these days to fall for those simple delay loops, in fact the function resulted into a single "ret" to be generated. Use an inline assembly loop instead.
2016-10-23sun50i: CPU ops: disable delay loopsAndre Przywara
The CPU power down/up code has delays in the sequence. It turns out that the udelay() function has been optimized away by the compiler, so there is no delay in between the steps in the sequence. Moreover actually having those delays in the sequence breaks the code (the PSCI handler hangs). Until we know if and what delays are actually needed, lets change the code to be easily able to turn on and off the delays - and turn it off for now to mimic the current behaviour. This allows fixing (and reusing) the udelay() function in a next step. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-08-08sunxi: power: enable DLDO4 switch as wellAndre Przywara
The DLDO4 switch enables power to the SDIO module slot, which usually carries a WiFi module. Enable this power rail unconditionally for now until we have proper regulator support. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02bl31: output memory location of running codeAndre Przywara
For debugging purposes it seems useful to output the part of memory that ATF is running in. Get the current location of the PC and deduct the SRAM/DRAM region we have been loaded to. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: switch RSB and SRAM1 to be secure-onlyAndre Przywara
The default security setup makes all peripherals available to the non-secure world. Set the RSB (which connects to the PMIC, which is exclusively controlled by firmware) and SRAM A1 to be secure-only. This prevents accidental (or malicious) tinkering with the PMIC, which is potentially harmful to the board. NOTE: This does not seem to work as expected, since access is apparently still possile from the non-secure side. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02PSCI: add shutdown implementation for AXP803Andre Przywara
Now that we have the PMIC set up and directly accessible, use its power-down register to implement PSCI's SYSTEM_OFF call. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: initialize and setup PMICAndre Przywara
Most boards featuring the Allwinner A64 SoC also use an AXP 803 power management IC (PMIC) to set and switch voltages. Add code to initialize Allwinner's RSB bus, which is used to talk to the PMIC more easily and faster than I2C. Then do the necessary setup, which in our case consists of enabling the DC1SW port, which powers USB and the Ethernet PHY and setting the DCDC1 voltage to 3.3V (instead of the default 3.0V). Also export the PMIC access function to be callable from the PSCI code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02PSCI: remove Allwinner debug messagesAndre Przywara
Spamming the (shared) console from firmware with debug messages on (PSCI) service calls is really a bad idea, so just remove those to keep the firmware silent. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02bl31: remove unneeded warmreset initAndre Przywara
This code is snake oil, since we don't get any parameters passed via registers, so just remove another change to generic code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: sunxi_def.h: remove RAM layout ASCII artAndre Przywara
This information is not correct anymore, so just remove it. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: platform_smp_init(): fix unneeded comments and rewrap linesAndre Przywara
Improve readability by removing comments that just repeat the code and trim the line width to fit into 80 characters. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02lib/aarch64: remove dead code for MMU tablesAndre Przywara
Remove pointless (because commented) code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: platform.mk: remove unused definitionsAndre Przywara
RAM_LOCATION_ID and friends are not used, so just remove them. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02bl31: revert Allwinner changes to bl31_main.cAndre Przywara
Remove those changes to the non-platform specific directory. They are pointless and platform ports should confine their code to the platform directory. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: smc handlers: remove Allwinner specific service callsAndre Przywara
Allwinner provided some vendor specific services handled by ATF, which we no longer need. Also they were placed in the wrong ID range (generic ARM services) and not in the vendor specific area. The main service that gets lost is the transfer to AArch64 EL2, which we can easily do ourselves using the RMR register. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: MHU, SCPI: remove codeAndre Przywara
Without the arisc we don't need client side mailboxes and SCPI support, so remove the code for that. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: arisc: remove codeAndre Przywara
We no longer need and want the arisc, so remove all code that was associated with it. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02PSCI: remove arisc from PSCI_SHUTDOWNAndre Przywara
The arisc can tell the PMIC to power down the SoC, but we are going to loose the arisc, so replace the arisc implementation for shutdown with a warning and a hang until we have the PMIC code in place. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02PSCI: replace arisc call for PSCI_RESET with watchdog resetAndre Przywara
We cannot ask the arisc for help anymore, so let's program the watchdog to trigger a reset in the shortest possible time period to achieve a system reset if non-secure world requests it. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02PSCI: rework sun50i CPU state management to avoid the ariscAndre Przywara
Rework the SMP secondary cores bringup and shutdown to not use the arisc blob. Instead let ATF do its job and enable/disable the power clamp and further registers. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: add OpenRISC stop code near BL31 start pointAndre Przywara
As ATF is now disguised as the SCP, eventually boot0 will power on the arisc and it will try to let it execute OpenRISC code. Provide some OpenRISC code to shut the core down again, by setting the shutdown bit in the PMR special register. The code sequence is: l.xor r0, r0, r0 ; clear r0 l.ori r1, r0, 0xc0 ; r1 = 0xc0 l.mtspr r0, r1, 0x4000 ; PMR(@0x4000) := r1 (0x40) Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02bl31: remove no longer needed boot0 headerAndre Przywara
As ATF now lives in SRAM, we can't load it directly as the ATF binary anymore (it would always be loaded into DRAM then). Instead we disguise it as the SCP, which does not require a specific boot0 header. Remove all the code that was prefixing the binary with the boot0 header (which was a bit misplaced in generic code anyway). Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: enter U-Boot in AArch64Andre Przywara
Drop back into non-secure world into the AArch64 state now. This allows U-Boot to run in 64-bit mode, so no need to call back into the firmware to eventually launch 64-bit kernels. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove now unused trusted mappingAndre Przywara
Without the arisc there is no need to reserve a memory mapping for later. Remove the entries from the data structure to avoid unneeded mappings. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: move ATF into SRAM A2Andre Przywara
On some boards there are issues with SRAM C, so we move ATF to run from SRAM A2 for now. It actually gives us > 32KB of working space, so a debug version works here as well. SRAM A2 is documented to be secure only, which seems like a good fit for secure monitor runtime code. But apparently this is not really true, since it's still accessible for the non-secure side. Also SRAM A2 is tighly coupled to the arisc (OpenRISC controller) and thus not the ideal place to be hogged with ARM code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: move ATF into SRAM CAndre Przywara
This moves ATF from the (unsecured) DRAM into SRAM C. Not fully decided if this is the place it should eventually live, but it's better than using the beginning of DRAM for it. SRAM C could be programmed to be secure only (not done here yet). Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: mmap: dont map the whole device area, exclude SRAMAndre Przywara
If we soon run in SRAM, the memory mapping code maps .text & friends anyway, so we can confine the device mapping to the actual memory region used by devices. We exclude the SRAM/BROM regions. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: limit ATF sizeAndre Przywara
Without the arisc we don't need any buffer memory for SCP communication anymore, so we can drastically reduce the memory footprint of ATF from 2MB to 64KB. This is needed to put ATF eventually in SRAM. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: fix comment about NS_IMAGE_OFFSET locationAndre Przywara
U-Boot gets loaded at 160MB into the DRAM, not at 128MB. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02linking: fix LENGTH attribute in linker scriptAndre Przywara
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: smc calls: remove (in)secure register read/write service callsAndre Przywara
There are two SMC calls that allowed non-secure software to read and write _every_ "register", in fact memory locations. This breaks the whole secure/non-secure separation scheme and thus has to go. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02assert: revert removal of assertion debug printAndre Przywara
Allwinner removed the code which prints a meaningful debug output if an assertion triggered. Revert that part to give a clue about what's wrong instead of just silently halting. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded platform-specific GIC setupAndre Przywara
The Allwinner code defined a platform specific GIC setup. However we don't need secure IRQs or a special setup, so we can easily go with the default ARM GIC setup provided by the driver. Remove the unneeded code file, associated calls and code lines. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02drivers: arm_gic: remove GICv3 assertionAndre Przywara
The generic ARM GIC setup code has an assertion about a valid GICv3 redistributor base address. Remove this to allow to setup GICv2s using the generic interface. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02drivers: arm_gic: allow zero secure interruptsAndre Przywara
Currently the generic GIC driver code has an assert to halt if no valid pointer to the list of secure interrupts is specified. Rework this to barf only if the number of secure interrupts is greater than zero. This allows to specify zero secure interrupts and pass a NULL pointer for the table address. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: platform.mk: rewrap source file listingAndre Przywara
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: introduce get_highest_el() functionalityAndre Przywara
Add a function to get the highest implemented exception level and use that for entering BL3-3 in. Also we make the bit-size we enter non-secure world a parameter, so that we can easily switch between AArch32 and AArch64. (HACK: Keep entering U-Boot still in AArch32 SVC for now.) Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded platform specific address definitionsAndre Przywara
sun50iw1p1.h contains a lot of register addresses and platform specific defines, the vast majority of them both unused by the code and also not needed for a bl31 setup. Remove the header file and pull the actually needed definitions into sunxi_def.h. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: clean up serial (debug) driverAndre Przywara
The serial debug driver is hard to read. Also it uses a C struct to describe a fixed hardware device' register layout. Clean up the code to be more readable and switch to the usual (BASE_ADDR + REG_OFFSET) scheme for accessing registers. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded sunxi_config_setup()Andre Przywara
This function does nothing, apparently it was copied from the FVP code. Remove its definition and the call. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: define empty print_plat_interconnect_regsAndre Przywara
Instead of commenting the routine from FVP and the call, simply define the print_plat_interconnect_regs macros as empty, which is the recommended way in case there is no interconnect information available. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove Allwinner hash outputAndre Przywara
We actually have the short SHA1 of the HEAD commit already in the output, so there is no need for that extra bloated code to insert it into the binary. Remove it. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: MMU setup: remove unneeded EL1 versionAndre Przywara
We have macros to generate define and populate the memory map structures, but in fact need only one instance for EL3, as sunxi does not need EL1 page tables. Remove the unneeded code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded TSP implementationAndre Przywara
The TSP is just for testing a secure payload, which we don't need, so just remove the code. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded BL1 and BL2 codeAndre Przywara
The sun50i port only uses BL31, so there is no need for then BL1 and BL2 code files (copied from the FVP port). Remove them. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
2016-06-02sun50i: remove unneeded AEM and A57 codeAndre Przywara
No need to compile those code in. Signed-off-by: Andre Przywara <andre.przywara@arm.com>