-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools/bootloader: Use PL011 UART on all RPi models
Before the Mini UART was used on RPi 1-4, which depends on the core clock, which varies with the ARM CPU clock. There have been problems with setting the clock divider before, which should be fixed with using the PL011 UART. Further modifications: * Set RxD to pull-up and TxD to pull-none on RPi 1-4 * Use ARM system timer for go delay on RPi 1-4 * Convert ARM address to bus address for mailbox access on all models * Slightly increase delay before mailbox access See: #501
- Loading branch information
Showing
2 changed files
with
42 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
#define PBASE 0xFE000000 | ||
#define LBASE 0xFF800000 // local peripherals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters