1. 29 Dec, 2022 1 commit
    • Jeffrey Lee's avatar
      Don't use HAL_CounterRead · 32381e54
      Jeffrey Lee authored
      The SDIO code assumes HAL_CounterRead counts from one centisecond down
      to zero. But if the timer HAL device is in use then user software may
      reprogram HAL timer 0 with a different period.
      
      Change the code which relied on HAL_CounterRead so that it can instead
      just use the low word of the GPU timer counter directly. This simplifies
      things a fair bit since the code no longer has to deal with it wrapping
      every 10,000 ticks.
      32381e54
  2. 17 Dec, 2022 3 commits
    • Jeffrey Lee's avatar
      ARM Generic Timer implementation of the timer HAL device · c68f0bcb
      Jeffrey Lee authored
      This is used on everything except the ARM11-based SoCs. This frees up
      one of the GPU timers for software use, and on Cortex-A72 is a higher
      frequency (54MHz) than the older SoCs (1MHz).
      
      Note that because the GPU timer counter is always running,
      HAL_CounterDelay can be left as-is.
      c68f0bcb
    • Jeffrey Lee's avatar
      Implement timer HAL device, for ARM11-based SoCs · 74d2c268
      Jeffrey Lee authored
      This uses one of the GPU system timers (i.e. regular HAL timers). On
      SoCs with newer CPUs, the plan is to use the ARM generic timer.
      74d2c268
    • Jeffrey Lee's avatar
      Change s.Timers to pre-UAL syntax · 0b55303b
      Jeffrey Lee authored
      This avoids some syntax warnings when using the CPUDetect macro, and
      allows us to use the Entry/EXIT macros without the Push/Pop macros
      conflicting with the PUSH & POP instructions.
      
      Also make use of the PHPSEI & PLP macros; PHPSEI makes use of CPS
      internally, which should be faster than ORR & MSR CPSR_c.
      0b55303b
  3. 05 Feb, 2022 1 commit
  4. 03 Nov, 2021 1 commit
    • Ben Avison's avatar
      Fix GPIO behaviour for Raspberry Pi Zero 2 W · 70cb852b
      Ben Avison authored
      The Zero 2 W will boot with existing ROMs if you update the firmware, but
      GPIO handling and the SD activity LED need some tweaking to fully adapt to
      the new board.
      
      Version 0.95. Tagged as 'HAL_BCM2835-0_95'
      70cb852b
  5. 17 Mar, 2021 1 commit
    • Jeffrey Lee's avatar
      8GB RAM support · c892a3f3
      Jeffrey Lee authored
      Update OS_AddRAM sequence to detect 8GB Pi models and register the extra
      RAM bank.
      
      Also, remove the software RAM clear code; it won't work for clearing RAM
      above the 4GB barrier, and (for a software RAM clear) it's quicker for
      the kernel to clear the RAM itself (since it'll do it with the
      MMU/caches enabled, and will do it in parallel with the keyboard scan).
      E.g. for a 4GB Pi, the time between the HalStartup debug message (prior
      to HAL RAM clear) and ModuleInit debug message (after kernel RAM clear)
      used to be 1124cs, but is now 636cs. For an 8GB Pi the time is 948cs.
      
      Version 0.94. Tagged as 'HAL_BCM2835-0_94'
      c892a3f3
  6. 16 Dec, 2020 1 commit
  7. 14 Nov, 2020 1 commit
    • Ben Avison's avatar
      Support new Pi models · 7f397181
      Ben Avison authored
      * Raspberry Pi 400: verified as booting to desktop.
      * Compute Module 3+: some changes to SD support to make it behave like the
        plain Compute Module 3 (previously it was falling into the model B+ code
        path and setting up GPIO in the expectation that an activity LED was
        attached, which is not a given for a Compute Module). Not tested.
      * Compute Module 4: tentative support added. Not tested. In particular, we
        don't know what the revision numbers will be yet, so the entries in
        `GPIO_Board_Conversion_Table` may not match real hardware.
      * SD subsystem now assumes any future models are similar to the Pi 4 and 400,
        and thus we're more likely that they will "just work" out of the box.
      
      Version 0.92. Tagged as 'HAL_BCM2835-0_92'
      7f397181
  8. 10 Oct, 2020 2 commits
    • Robert Sprowson's avatar
      Update GPIO pullup/pulldown code to support Pi4 · 0a5cd22b
      Robert Sprowson authored
      Detail:
      * Fixes register corruption in GPIOPullDirection.
      * Pre-seeds the soft copies with the values from the datasheet (so no need for a function
        to read them). This should also help other models of Pi which assumed they were all
        disabled when it seems they are not!
      * Reworks the SDIO driver to call through to the GPIO so that its softcopy is kept in
        sync, and so the settings do something on a Pi 4 at all.
      Admin:
        Tested on Pi4 and a Pi 3B+.
      
      Version 0.91. Tagged as 'HAL_BCM2835-0_91'
      0a5cd22b
    • David Higton's avatar
      810e6f25
  9. 09 Sep, 2020 3 commits
    • Robert Sprowson's avatar
      Add XHCIDriver to the keyboard scan modules · 31ff23ae
      Robert Sprowson authored
      Version 0.90. Tagged as 'HAL_BCM2835-0_90'
      31ff23ae
    • Robert Sprowson's avatar
      9b93ceaf
    • Robert Sprowson's avatar
      Remove double PCIe bridge mapping · a86bcb4d
      Robert Sprowson authored
      The bridge was incorrectly configured with 2 overlapping mappings (0-&FFFFFFFF and another 0-&8000000). When the VL805 wanted to bus master into main memory the bridge was confused where the transaction should go, causing a master abort to be logged on the secondary side.
      Reorganise the PCI memory so that only a small window in the top 1GB is actively decoded (we can't bus master above 3GB anyway due to a chip design "feature"), meaning the rest of the secondary address space is forwarded 1:1 to the primary.
      Further, because the CPU side windows can only be sized in powers of 2, reduce that to 2GB in size.
      a86bcb4d
  10. 01 Aug, 2020 2 commits
    • Robert Sprowson's avatar
      On Pi 4's with no VL805 firmware EEPROM, softload it · f84ef1c2
      Robert Sprowson authored
      Some Pi 4's - for example, the recently released 8GB variant - don't have the firmware EEPROM on the VL805 fitted. The VideoCore loads default firmware on power on in order to do USB booting, but when RISC OS takes over and does a PCI fundamental reset the VL805 ends up with no firmware running.
      Detect this (by peeking the firmware version) and use the NotifyXHCIReset mailbox message to cause the VideoCore to softload the firmware again. Earlier built PCBs *do* contain a firmware EEPROM and skip the mailbox message.
      
      By inspection with a prototype version in BASIC it appears the SCB access needs to be enabled for this to work, it previously wasn't, hence the extra PCI setup step.
      
      Also, reduce the PCI reset delay and rename PCIe_RGR1_SW_INIT1_POWERDOWN to more accurately reflect what it does.
      
      Version 0.89. Tagged as 'HAL_BCM2835-0_89'
      f84ef1c2
    • Robert Sprowson's avatar
      Don't return Pi 4-only GPIO in all enumerations · 227406f6
      Robert Sprowson authored
      The pin list table had the Pi 4-only alternates mixed in, the result of which is that enumerating the pins on something other than Pi 4 would return ghost alternates for peripherals that don't exist.
      Split the pin lists and pick the appropriate one.
      
      Also, add 2 missing board revisions that have sneaked out for 2B/3B.
      227406f6
  11. 01 Jul, 2020 1 commit
    • Jeffrey Lee's avatar
      Fix HAL_PhysInfo · 740691e6
      Jeffrey Lee authored
      CPUDetect was corrupting the pointer needed for storing the table size
      
      Version 0.88. Tagged as 'HAL_BCM2835-0_88'
      740691e6
  12. 22 Jun, 2020 1 commit
    • David Higton's avatar
      [490] Fix for pull up/down settings · 80ee0170
      David Higton authored
      Detail:
        The offset to the pull up/down clock register was computed in v4 but then v2 was used instead.
      
      Version 0.87. Tagged as 'HAL_BCM2835-0_87'
      80ee0170
  13. 19 Jun, 2020 3 commits
    • Jeffrey Lee's avatar
      Add some test code · d03dbbfd
      Jeffrey Lee authored
      From the deep dark recesses of my hard disc, some Pi 1-era test code for
      CPU & DMA driven PWM audio, now updated to run on Pi 2, 3, & 4.
      
      Version 0.86. Tagged as 'HAL_BCM2835-0_86'
      d03dbbfd
    • Jeffrey Lee's avatar
      DMA improvements & fixes · c6f51390
      Jeffrey Lee authored
      * Update DMA & DMA lite channels to work on Pi 4 (HAL_IRQClear calls
      needed)
      * Fix DMAL_Abort / DMAL_Reset to reset the channel properly (register
      muddle meant the old reset code wasn't doing anything - and wasn't a
      particularly great way of resetting anyway)
      * Fix DMAL_CurtailListTransfer not working very well
      * Fix IRQ mapping of channels 11-14, allowing channels 12-14 to be used
      * Implement support for Pi 4 DMA4 channels. On Pi 4 these are the only
      channels we'll bother using, since DMA & DMA lite have annoying
      restrictions on accessing RAM above 1GB
      c6f51390
    • Jeffrey Lee's avatar
      Add BCM memory barriers · de19ec44
      Jeffrey Lee authored
      The BCM2711 manual suggests that yes, the BCM2835-style memory barriers
      are still needed when accessing peripherals
      de19ec44
  14. 30 May, 2020 1 commit
    • David Pitt's avatar
      Update table for 4B revision 1.4 · 75c0e15f
      David Pitt authored
      Detail:
        The 8GB model has a new PCB revision too.
      Admin:
        Submission from David Pitt.
      
      Version 0.85. Tagged as 'HAL_BCM2835-0_85'
      75c0e15f
  15. 02 Apr, 2020 1 commit
    • Robert Sprowson's avatar
      Correct MAC endianness · d1804c84
      Robert Sprowson authored
      The MAC address when encoded as a Dallas unique id is in network byte order.
      For example, a Risc PC returns OS_ReadSysInfo 4 with r0=&A4123456 r1=&0000 because Acorn's EUI is 00:00:A4.
      
      Version 0.84. Tagged as 'HAL_BCM2835-0_84'
      d1804c84
  16. 14 Mar, 2020 17 commits
    • Robert Sprowson's avatar
      Update table for another 4B revision 1.2 · e2f95b6e
      Robert Sprowson authored
      The 2GB new minor revision is in the wild.
      Also tidy HAL_[Ext]MachineID leftovers.
      
      Version 0.83. Tagged as 'HAL_BCM2835-0_83'
      e2f95b6e
    • Robert Sprowson's avatar
      Update table for 4B revision 1.2 · 2c6dc7b6
      Robert Sprowson authored
      Minor DFM changes resulted in a new revision number
        https://www.raspberrypi.org/documentation/hardware/raspberrypi/revision-codes/README.md
      but only for 4GB.
      2c6dc7b6
    • Robert Sprowson's avatar
      More sensible abstraction · 74eff4aa
      Robert Sprowson authored
      Give the ISPENDRn address directly, since its only the HAL that knows that iDev_GPU is encoded from 64+, rather than having to bake it into DWCDriver.
      74eff4aa
    • Robert Sprowson's avatar
      Make a substitute for MPHI · 08076575
      Robert Sprowson authored
      The MPHI is (ab)used by DWCDriver as a means to do a FIQ downgrade to IRQ, but Pi 4 has no MPHI, so instead we substitute the GIC (as the GICD_ISPENDRn can be used to cause an IRQ from software).
      08076575
    • Jeffrey Lee's avatar
      Let VCHIQ know which page list format to use · b33e2c7c
      Jeffrey Lee authored
      VCHIQ bulk transfers on Pi 4 use a different page list format, in order
      to allow for full use of the larger 36bit physical address space. Add a
      flags word to the VCHIQ HAL device so that we can let the VCHIQ module
      know what page list format it should use for the machine we're running
      on.
      b33e2c7c
    • Robert Sprowson's avatar
      Extend the PCI address table for 64b · d4f21a61
      Robert Sprowson authored
      The USB controller is at physical addresses outside 32b range, extend so that it can be picked up by PCI manager, and hence use its SWIs (rather than *Memory P) to see registers.
      Also write the interrupt number into the config space so it can be picked up.
      Requires PCI-0_18.
      d4f21a61
    • Robert Sprowson's avatar
      Add remaining PCIe setup steps · ae6f7f27
      Robert Sprowson authored
      Memory window now enabled on the VIA VL805, on-chip bridge set to forward memory transactions, ARM CPU to PCI address space translated.
      Since we know there's only the VIA chip on the bus, there's no dynamic probing going on like platforms that have PCI sockets. Its BAR settings are derived from defines at the top of PCI.s, so to browse the XHCI capability registers just peek at
        *Memory p 600100000 +20
      Only 1 of the 4 address space translation windows is used.
      ae6f7f27
    • Robert Sprowson's avatar
      Add EtherNIC HAL device · 223182f1
      Robert Sprowson authored
      Basic HAL device to expose the GENET peripheral for the driver.
      223182f1
    • Robert Sprowson's avatar
      Add preliminary PCIe setup steps · 5acaaf41
      Robert Sprowson authored
      Just enough pokes to be able to scan configuration space such that the VIA XHCI controller can be seen by PCI Manager. Note: at present there are no memory or IO windows open, so you can't (yet) see XHCI registers.
      5acaaf41
    • Jeffrey Lee's avatar
      Add GIC interrupt controller support for BCM2838. · 288ddd47
      Jeffrey Lee authored
      * Requires 'enable_gic=1' in config.txt (or Pi4 dtb to be present?)
      * IRQs are managed via the GIC, FIQs via the BCM2838 FIQ controller
      * Implemented in s.IntVC6 to avoid making s.Interrupts too
      confusing.
      * Previous VC6 interrupt support removed from s.Interrupts
      * From the OS's perspective, interrupt numbers mostly remain
      unchanged. However iDev_QA7 interrupts are unavailable, and some of
      the BCM2838 interrupts have been overlaid ontop of them.
      * Device drivers must take care to issue HAL_IRQClear, as that is
      a new requirement for this HAL
      288ddd47
    • Jeffrey Lee's avatar
      Fix debugging via UART0 · 045a679d
      Jeffrey Lee authored
      HAL_QueryPlatform was attempting debug output before the debug
      UART had been initialised. Since both the PL011 & MiniUART
      configuration depends on getting/setting firmware values, fix it
      by just removing the debug prints from HAL_QueryPlatform.
      045a679d
    • Ben Avison's avatar
      Support >1GB RAM · 9f19d29e
      Ben Avison authored
      RAM sizes above 1GB are not reported by the usual mailbox property, and it
      seems unlikely that this will change because the VC RAM allocation has to
      remain within the bottom 1GB of the address space (the VC still uses the
      upper two bits of its addresses for cache policy) and this property cannot
      describe a non-contiguous range. Use the board revision bitfield to recognise
      when additional general-purpose RAM exists above the VC allocation. For now,
      we're running in "low peripherals" mode, so the top 64MB of 4GB RAM machines
      is inaccessible. If the VC allocation is also 64MB, that means the startup
      banner of Pi 4 will read 960MB, 1984MB or 3968MB.
      
      Also fix HAL_PhysInfo (and by implication, OS_Memory 6 and 7) to report the
      full 35-bit physical address space on Pi 4. The `range` struct filled in by
      HAL_PhysInfo has not been extended to 64-bit physical addresses because it
      describes RAM, and for now at least, RAM just squeezes into 32-bit addresses.
      9f19d29e
    • Ben Avison's avatar
      Support EMMC2 controller · b1569c4f
      Ben Avison authored
      This controller is now preferred over the legacy EMMC controller, and it is
      capable of UHS speeds (pending support in SDIODriver).
      
      Requires RiscOS/Sources/HWSupport/SD/SDIODriver!4
      b1569c4f
    • Ben Avison's avatar
      Extended IRQ support, and FIQ support · 07348d58
      Ben Avison authored
      Both still use GIC bypass mode. Assuming for now that extended GPU peripherals
      can't support FIQ without GIC (it seems as though they either all use IRQ or
      all use FIQ, and RISC OS isn't set up for there being multiple FIQ sources
      active at once).
      07348d58
    • Ben Avison's avatar
      SD bugfixes · 004817c4
      Ben Avison authored
      Detail:
      * Implement SD activity LED for Pi 4
      * Remove inappropriate reprogramming of GPIO47 for Pi 3 B(+) and A+
      * Correct the value for SDHCIWriteInterval which is used during SetSDCLK()
      004817c4
    • Ben Avison's avatar
      GPIO support · bbe41f94
      Ben Avison authored
      Detail:
      * Board recognition for Pi 4
      * Updated the pin enumeration table to specify new functions available in Pi 4
        (I2C[3456], SPI[3456], UART[2345])
      bbe41f94
    • Ben Avison's avatar
      Enable SD controller · 8aac3b72
      Ben Avison authored
      Detail:
      * Efforts to get the faster EMMC2 controller working are ongoing. In the
        meantime, this enables the backward-compatible EMMC1 controller.
      * The method required to control the activity LED appears to have changed,
        yet again. I haven't worked out how yet, so this is currently
        non-functional.
      8aac3b72