123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- /*++
- Copyright (c) 2015 Minoca Corp. All Rights Reserved
- Module Name:
- debug.c
- Abstract:
- This module implements debug UART support for UEFI platforms.
- Author:
- Chris Stevens 19-Mar-2015
- Environment:
- Firmware
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <uefifw.h>
- #include <dev/pl11.h>
- #include "rpi2fw.h"
- //
- // --------------------------------------------------------------------- Macros
- //
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // Define the context for the debug UART.
- //
- PL11_CONTEXT EfiRaspberryPi2DebugUart;
- //
- // ------------------------------------------------------------------ Functions
- //
- EFI_STATUS
- EfiPlatformDebugDeviceReset (
- UINT32 BaudRate
- )
- /*++
- Routine Description:
- This routine attempts to initialize the serial UART used for debugging.
- Arguments:
- BaudRate - Supplies the desired baud rate.
- Return Value:
- EFI_SUCCESS on success.
- EFI_DEVICE_ERROR if a device error occurred while resetting the device.
- EFI_UNSUPPORTED if the given baud rate cannot be achieved.
- --*/
- {
- EFI_STATUS Status;
- EfiRaspberryPi2DebugUart.UartBase =
- (VOID *)BCM2836_BASE + BCM2709_UART_OFFSET;
- Status = EfipPl11ComputeDivisor(
- PL11_CLOCK_FREQUENCY_3MHZ,
- BaudRate,
- &(EfiRaspberryPi2DebugUart.BaudRateInteger),
- &(EfiRaspberryPi2DebugUart.BaudRateFraction));
- if (EFI_ERROR(Status)) {
- return Status;
- }
- return EfipPl11Initialize(&EfiRaspberryPi2DebugUart);
- }
- EFI_STATUS
- EfiPlatformDebugDeviceTransmit (
- VOID *Data,
- UINTN Size
- )
- /*++
- Routine Description:
- This routine transmits data from the host out through the debug device.
- Arguments:
- Data - Supplies a pointer to the data to write.
- Size - Supplies the size to write, in bytes.
- Return Value:
- EFI_SUCCESS on success.
- EFI_DEVICE_ERROR if a device error occurred.
- --*/
- {
- return EfipPl11Transmit(&EfiRaspberryPi2DebugUart, Data, Size);
- }
- EFI_STATUS
- EfiPlatformDebugDeviceReceive (
- VOID *Data,
- UINTN *Size
- )
- /*++
- Routine Description:
- This routine receives incoming data from the debug device.
- Arguments:
- Data - Supplies a pointer where the read data will be returned on success.
- Size - Supplies a pointer that on input contains the size of the receive
- buffer. On output, returns the number of bytes read.
- Return Value:
- EFI_SUCCESS on success.
- EFI_NOT_READY if there was no data to be read at the current time.
- EFI_DEVICE_ERROR if a device error occurred.
- --*/
- {
- return EfipPl11Receive(&EfiRaspberryPi2DebugUart, Data, Size);
- }
- EFI_STATUS
- EfiPlatformDebugDeviceGetStatus (
- BOOLEAN *ReceiveDataAvailable
- )
- /*++
- Routine Description:
- This routine returns the current device status.
- Arguments:
- ReceiveDataAvailable - Supplies a pointer where a boolean will be returned
- indicating whether or not receive data is available.
- Return Value:
- EFI_SUCCESS on success.
- EFI_DEVICE_ERROR if a device error occurred.
- --*/
- {
- return EfipPl11GetStatus(&EfiRaspberryPi2DebugUart, ReceiveDataAvailable);
- }
- VOID
- EfiPlatformDebugDeviceDisconnect (
- VOID
- )
- /*++
- Routine Description:
- This routine disconnects a device, taking it offline.
- Arguments:
- None.
- Return Value:
- None.
- --*/
- {
- return;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|