2012-12-02 08:30:37 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011,2012 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file templates/hal_lld.c
|
|
|
|
* @brief HAL Driver subsystem low level driver source template.
|
|
|
|
*
|
|
|
|
* @addtogroup HAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local definitions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2012-12-07 11:52:13 +00:00
|
|
|
#define SAM_PM_UNLOCK(addr) \
|
|
|
|
PM->PM_UNLOCK = BPM_UNLOCK_KEY(0xAAu) | BPM_UNLOCK_ADDR(addr)
|
|
|
|
|
2012-12-02 08:30:37 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2012-12-07 11:52:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Enables a module on one of the PBx buses.
|
|
|
|
* @note PB bridges are assumed to be already enabled.
|
|
|
|
*
|
|
|
|
* @param[in] bus_id id of the bus
|
|
|
|
* @param[in] module module address
|
|
|
|
*/
|
|
|
|
void sam_enable_module(uint32_t bus_id, uint32_t module) {
|
|
|
|
uint32_t mask;
|
|
|
|
|
|
|
|
mask = *(&PM->PM_CPUMASK + bus_id);
|
|
|
|
mask |= 1U << module;
|
|
|
|
SAM_PM_UNLOCK(((uint32_t)&PM->PM_CPUMASK - (uint32_t)PM) + (4 * bus_id));
|
|
|
|
*(&PM->PM_CPUMASK + bus_id) |= mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disables a module on one of the PBx buses.
|
|
|
|
* @note PB bridges are assumed to be already enabled.
|
|
|
|
*
|
|
|
|
* @param[in] bus_id id of the bus
|
|
|
|
* @param[in] module module index
|
|
|
|
*/
|
|
|
|
void sam_disable_module(uint32_t bus_id, uint32_t module) {
|
|
|
|
uint32_t mask;
|
|
|
|
|
|
|
|
mask = *(&PM->PM_CPUMASK + bus_id);
|
|
|
|
mask &= ~(1U << module);
|
|
|
|
SAM_PM_UNLOCK(((uint32_t)&PM->PM_CPUMASK - (uint32_t)PM) + (4 * bus_id));
|
|
|
|
*(&PM->PM_CPUMASK + bus_id) = mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Clock initialization.
|
|
|
|
*/
|
|
|
|
void sam_clock_init(void) {
|
2012-12-02 09:08:10 +00:00
|
|
|
|
2012-12-05 19:25:36 +00:00
|
|
|
#if SAM_NO_INIT
|
2012-12-07 11:52:13 +00:00
|
|
|
/* Enables bridges.*/
|
|
|
|
sam_enable_module(SAM_CLK_GRP_HSB, SAM_HSB_PBA_BRIDGE);
|
|
|
|
sam_enable_module(SAM_CLK_GRP_HSB, SAM_HSB_PBB_BRIDGE);
|
|
|
|
sam_enable_module(SAM_CLK_GRP_HSB, SAM_HSB_PBC_BRIDGE);
|
|
|
|
sam_enable_module(SAM_CLK_GRP_HSB, SAM_HSB_PBD_BRIDGE);
|
|
|
|
|
2012-12-04 22:30:23 +00:00
|
|
|
#if SAM_USE_PICOCACHE
|
2012-12-07 11:52:13 +00:00
|
|
|
/* Enable the PicoCache.*/
|
|
|
|
sam_enable_module(SAM_CLK_GRP_PBB, SAM_PBB_HRAMC1_DATA);
|
|
|
|
sam_enable_module(SAM_CLK_GRP_PBB, SAM_PBB_HRAMC1_REGS);
|
|
|
|
HCACHE->HCACHE_CTRL = HCACHE_CTRL_CEN_YES;
|
|
|
|
while ((HCACHE->HCACHE_SR & HCACHE_SR_CSTS_EN) == 0)
|
|
|
|
;
|
2012-12-04 22:30:23 +00:00
|
|
|
#endif
|
|
|
|
|
2012-12-07 11:52:13 +00:00
|
|
|
/* Setting up prescalers.*/
|
|
|
|
SAM_PM_UNLOCK((uint32_t)&PM->PM_CPUSEL);
|
|
|
|
PM->PM_CPUSEL = SAM_CPUSEL;
|
|
|
|
SAM_PM_UNLOCK((uint32_t)&PM->PM_PBASEL);
|
|
|
|
PM->PM_PBASEL = SAM_PBASEL;
|
|
|
|
SAM_PM_UNLOCK((uint32_t)&PM->PM_PBBSEL);
|
|
|
|
PM->PM_PBBSEL = SAM_PBBSEL;
|
|
|
|
SAM_PM_UNLOCK((uint32_t)&PM->PM_PBCSEL);
|
|
|
|
PM->PM_PBCSEL = SAM_PBCSEL;
|
|
|
|
SAM_PM_UNLOCK((uint32_t)&PM->PM_PBDSEL);
|
|
|
|
PM->PM_PBDSEL = SAM_PBDSEL;
|
|
|
|
|
2012-12-09 11:05:47 +00:00
|
|
|
/* Switching to the selected clock source, enabling it if necessary.*/
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_RCSYS
|
|
|
|
/* Nothing to do, already running from SYSIRC.*/
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_OSC0
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_PLL
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_DFLL
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_RC80M
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_RCFAST
|
|
|
|
#endif
|
|
|
|
#if SAM_MCCTRL_MCSEL == SAM_MCSEL_RC1M
|
|
|
|
#endif
|
|
|
|
|
2012-12-05 19:25:36 +00:00
|
|
|
#endif /* SAM_NO_INIT */
|
2012-12-02 09:08:10 +00:00
|
|
|
}
|
|
|
|
|
2012-12-02 08:30:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Low level HAL driver initialization.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void hal_lld_init(void) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @} */
|