123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- /*++
- Copyright (c) 2014 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- clock.c
- Abstract:
- This module manages power and clocks for TI OMAP4 devices.
- Author:
- Evan Green 3-Mar-2014
- Environment:
- Firmware
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <uefifw.h>
- #include "dev/omap4.h"
- //
- // --------------------------------------------------------------------- Macros
- //
- //
- // This macro reads from an OMAP4 PRCM Register. _Base should be a pointer, and
- // _Register should be a register offset in ULONGs.
- //
- #define READ_PRCM_REGISTER(_Base, _Register) \
- EfiReadRegister32((UINT32 *)(_Base) + (_Register))
- //
- // This macro writes to an OMAP4 PRCM Register. _Base should be a pointer,
- // _Register should be register offset in ULONGs, and _Value should be a ULONG.
- //
- #define WRITE_PRCM_REGISTER(_Base, _Register, _Value) \
- EfiWriteRegister32((UINT32 *)(_Base) + (_Register), (_Value))
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // Define clock/reset base addresses for OMAP4 SoCs.
- //
- #define OMAP4_WAKEUP_CLOCK_BASE 0x4A307800
- #define OMAP4_L4_CLOCK_BASE 0x4A009400
- #define OMAP4_AUDIO_CLOCK_BASE 0x4A004500
- //
- // This bit is set to select the always on 32kHz clock source to drive the
- // timer counter.
- //
- #define GPTIMER_SELECT_32KHZ_CLOCK 0x01000000
- #define GPTIMER_SELECT_SYSTEM_CLOCK 0x00000000
- //
- // These bits define the operating mode of the functional clock.
- //
- #define GPTIMER_CLOCK_MODE_MASK 0x03
- #define GPTIMER_ENABLE_CLOCK 0x02
- //
- // Define the clock control bits for the Audio backend control.
- //
- #define AUDIO_CLOCK_CONTROL_MODE_MASK 0x3
- #define AUDIO_CLOCK_CONTROL_NO_SLEEP 0x0
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // Register offsets for the Wakeup Clock Management interface (WKUP_CM). All
- // offsets are in UINT32s.
- //
- typedef enum _WKUP_CM_REGISTER {
- WakeupClockControl = 0x00, // CM_WKUP_CLKSTCTRL
- WakeupClockGpTimer1Control = 0x10, // CM_WKUP_GPTIMER1_CLKCTRL
- } WKUP_CM_REGISTER, *PWKUP_CM_REGISTER;
- //
- // Register offsets for the L4 Interconnect Clock Managment interface
- // (L4PER_CM). All offsets are in UINT32s.
- //
- typedef enum _L4PER_CM_REGISTER {
- L4ClockControl = 0x00, // CM_L4PER_CLKSTCTRL
- L4ClockGpTimer10Control = 0x0A, // CM_L4PER_GPTIMER10_CLKCTRL
- L4ClockGpTimer11Control = 0x0C, // CM_L4PER_GPTIMER11_CLKCTRL
- L4ClockGpTimer2Control = 0x0E, // CM_L4PER_GPTIMER2_CLKCTRL
- L4ClockGpTimer3Control = 0x10, // CM_L4PER_GPTIMER3_CLKCTRL
- L4ClockGpTimer4Control = 0x12, // CM_L4PER_GPTIMER4_CLKCTRL
- L4ClockGpTimer9Control = 0x14, // CM_L4PER_GPTIMER9_CLKCTRL
- } L4PER_CM_REGISTER, *PL4PER_CM_REGISTER;
- //
- // Register offsets for the Audio Back-End Clock Management interface (ABE_CM1).
- // All offsets are in UINT32s.
- //
- typedef enum _ABE_CM1_REGISTER {
- AudioClockControl = 0x00, // CM1_ABE_CLKSTCTRL
- AudioClockGpTimer5Control = 0x1A, // CM1_ABE_GPTIMER5_CLKCTRL
- AudioClockGpTimer6Control = 0x1C, // CM1_ABE_GPTIMER6_CLKCTRL
- AudioClockGpTimer7Control = 0x1E, // CM1_ABE_GPTIMER7_CLKCTRL
- AudioClockGpTimer8Control = 0x20, // CM1_ABE_GPTIMER8_CLKCTRL
- } ABE_CM1_REGISTER, *PABE_CM1_REGISTER;
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // Store pointers to pieces of the PRCM.
- //
- VOID *EfiOmap4WakeupClockControl = (VOID *)OMAP4_WAKEUP_CLOCK_BASE;
- VOID *EfiOmap4L4ClockControl = (VOID *)OMAP4_L4_CLOCK_BASE;
- VOID *EfiOmap4AudioClockControl = (VOID *)OMAP4_AUDIO_CLOCK_BASE;
- //
- // ------------------------------------------------------------------ Functions
- //
- VOID
- EfipOmap4InitializePowerAndClocks (
- VOID
- )
- /*++
- Routine Description:
- This routine initializes the PRCM and turns on clocks and power domains
- needed by the system.
- Arguments:
- None.
- Return Value:
- Status code.
- --*/
- {
- UINT32 Value;
- //
- // Enable GP Timer 1, and set it to run at the system clock frequency.
- //
- Value = GPTIMER_SELECT_SYSTEM_CLOCK | GPTIMER_ENABLE_CLOCK;
- WRITE_PRCM_REGISTER(EfiOmap4WakeupClockControl,
- WakeupClockGpTimer1Control,
- Value);
- //
- // Enable GP Timers 2-4 and 9-11 to run at the 32kHz clock speed.
- //
- Value = GPTIMER_SELECT_32KHZ_CLOCK | GPTIMER_ENABLE_CLOCK;
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer2Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer3Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer4Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer9Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer10Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4L4ClockControl,
- L4ClockGpTimer11Control,
- Value);
- //
- // Enable the Audio Back-End clock.
- //
- Value = READ_PRCM_REGISTER(EfiOmap4AudioClockControl, AudioClockControl);
- Value &= ~AUDIO_CLOCK_CONTROL_MODE_MASK;
- Value |= AUDIO_CLOCK_CONTROL_NO_SLEEP;
- WRITE_PRCM_REGISTER(EfiOmap4AudioClockControl, AudioClockControl, Value);
- //
- // Enable GP Timers 5-8 to run at the 32kHz always on clock rate.
- //
- Value = GPTIMER_SELECT_32KHZ_CLOCK | GPTIMER_ENABLE_CLOCK;
- WRITE_PRCM_REGISTER(EfiOmap4AudioClockControl,
- AudioClockGpTimer5Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4AudioClockControl,
- AudioClockGpTimer6Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4AudioClockControl,
- AudioClockGpTimer7Control,
- Value);
- WRITE_PRCM_REGISTER(EfiOmap4AudioClockControl,
- AudioClockGpTimer8Control,
- Value);
- return;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|