2008-02-06 14:41:28 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2008-02-06 14:41:28 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2009-11-29 13:37:19 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
2008-02-15 16:12:41 +00:00
|
|
|
|
2010-11-15 19:44:09 +00:00
|
|
|
/**
|
|
|
|
* @brief PAL setup.
|
|
|
|
* @details Digital I/O ports static configuration as defined in @p board.h.
|
|
|
|
* This variable is used by the HAL when initializing the PAL driver.
|
|
|
|
*/
|
2010-12-19 12:55:45 +00:00
|
|
|
#if HAL_USE_PAL || defined(__DOXYGEN__)
|
2010-11-15 19:44:09 +00:00
|
|
|
const PALConfig pal_default_config =
|
|
|
|
{
|
|
|
|
{VAL_PIOA_ODSR, VAL_PIOA_OSR, VAL_PIOA_PUSR},
|
|
|
|
#if (SAM7_PLATFORM == SAM7X128) || (SAM7_PLATFORM == SAM7X256) || \
|
|
|
|
(SAM7_PLATFORM == SAM7X512)
|
|
|
|
{VAL_PIOB_ODSR, VAL_PIOB_OSR, VAL_PIOB_PUSR}
|
|
|
|
#endif
|
|
|
|
};
|
2010-12-19 12:55:45 +00:00
|
|
|
#endif
|
2010-11-15 19:44:09 +00:00
|
|
|
|
2008-02-18 15:53:48 +00:00
|
|
|
/*
|
2008-02-19 15:34:41 +00:00
|
|
|
* SYS IRQ handling here.
|
2008-02-18 15:53:48 +00:00
|
|
|
*/
|
2009-01-19 19:50:21 +00:00
|
|
|
static CH_IRQ_HANDLER(SYSIrqHandler) {
|
2008-02-18 15:53:48 +00:00
|
|
|
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_PROLOGUE();
|
2008-02-18 15:53:48 +00:00
|
|
|
|
|
|
|
if (AT91C_BASE_PITC->PITC_PISR & AT91C_PITC_PITS) {
|
|
|
|
(void) AT91C_BASE_PITC->PITC_PIVR;
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysLockFromIsr();
|
2008-02-21 13:31:30 +00:00
|
|
|
chSysTimerHandlerI();
|
2009-01-24 17:59:51 +00:00
|
|
|
chSysUnlockFromIsr();
|
2008-02-18 15:53:48 +00:00
|
|
|
}
|
2010-04-24 21:16:10 +00:00
|
|
|
|
|
|
|
#if USE_SAM7_DBGU_UART
|
|
|
|
if (AT91C_BASE_DBGU->DBGU_CSR &
|
|
|
|
(AT91C_US_RXRDY | AT91C_US_TXRDY | AT91C_US_PARE | AT91C_US_FRAME | AT91C_US_OVRE | AT91C_US_RXBRK)) {
|
|
|
|
sd_lld_serve_interrupt(&SD3);
|
|
|
|
}
|
|
|
|
#endif
|
2009-01-19 19:50:21 +00:00
|
|
|
AT91C_BASE_AIC->AIC_EOICR = 0;
|
2009-01-10 16:21:27 +00:00
|
|
|
CH_IRQ_EPILOGUE();
|
2008-02-18 15:53:48 +00:00
|
|
|
}
|
|
|
|
|
2008-02-19 15:34:41 +00:00
|
|
|
/*
|
2008-10-04 09:59:39 +00:00
|
|
|
* Early initialization code.
|
2010-12-19 10:25:31 +00:00
|
|
|
* This initialization must be performed just after stack setup and before
|
|
|
|
* any other initialization.
|
2008-02-19 15:34:41 +00:00
|
|
|
*/
|
2010-12-19 10:25:31 +00:00
|
|
|
void __early_init(void) {
|
2009-11-30 19:11:03 +00:00
|
|
|
|
|
|
|
/* Watchdog disabled.*/
|
|
|
|
AT91C_BASE_WDTC->WDTC_WDMR = AT91C_WDTC_WDDIS;
|
|
|
|
|
2009-11-29 13:37:19 +00:00
|
|
|
at91sam7_clock_init();
|
2008-10-04 09:59:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-12-19 10:25:31 +00:00
|
|
|
* Board-specific initialization code.
|
2008-10-04 09:59:39 +00:00
|
|
|
*/
|
2010-12-19 10:25:31 +00:00
|
|
|
void boardInit(void) {
|
2008-02-15 16:12:41 +00:00
|
|
|
|
|
|
|
/*
|
2008-02-18 15:53:48 +00:00
|
|
|
* LCD pins setup.
|
2008-02-15 16:12:41 +00:00
|
|
|
*/
|
2009-08-27 16:42:07 +00:00
|
|
|
palClearPad(IOPORT2, PIOB_LCD_BL);
|
|
|
|
palSetPadMode(IOPORT2, PIOB_LCD_BL, PAL_MODE_OUTPUT_PUSHPULL);
|
2008-02-18 15:53:48 +00:00
|
|
|
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetPad(IOPORT1, PIOA_LCD_RESET);
|
|
|
|
palSetPadMode(IOPORT1, PIOA_LCD_RESET, PAL_MODE_OUTPUT_PUSHPULL);
|
2008-02-18 15:53:48 +00:00
|
|
|
|
|
|
|
/*
|
2009-07-11 14:36:20 +00:00
|
|
|
* Joystick and buttons setup.
|
2008-02-18 15:53:48 +00:00
|
|
|
*/
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetGroupMode(IOPORT1,
|
2009-07-11 14:36:20 +00:00
|
|
|
PIOA_B1_MASK | PIOA_B2_MASK | PIOA_B3_MASK |
|
|
|
|
PIOA_B4_MASK | PIOA_B5_MASK,
|
|
|
|
PAL_MODE_INPUT);
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetGroupMode(IOPORT2, PIOB_SW1_MASK | PIOB_SW2_MASK, PAL_MODE_INPUT);
|
2008-02-18 15:53:48 +00:00
|
|
|
|
|
|
|
/*
|
2009-07-11 14:36:20 +00:00
|
|
|
* MMC/SD slot setup.
|
2008-02-18 15:53:48 +00:00
|
|
|
*/
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetGroupMode(IOPORT2,
|
2009-07-11 14:36:20 +00:00
|
|
|
PIOB_MMC_WP_MASK | PIOB_MMC_CP_MASK,
|
|
|
|
PAL_MODE_INPUT);
|
2008-02-18 15:53:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* PIT Initialization.
|
|
|
|
*/
|
2008-02-19 15:34:41 +00:00
|
|
|
AIC_ConfigureIT(AT91C_ID_SYS,
|
2008-02-20 16:29:27 +00:00
|
|
|
AT91C_AIC_SRCTYPE_HIGH_LEVEL | (AT91C_AIC_PRIOR_HIGHEST - 1),
|
2008-02-19 15:34:41 +00:00
|
|
|
SYSIrqHandler);
|
|
|
|
AIC_EnableIT(AT91C_ID_SYS);
|
2008-02-18 15:53:48 +00:00
|
|
|
AT91C_BASE_PITC->PITC_PIMR = (MCK / 16 / CH_FREQUENCY) - 1;
|
|
|
|
AT91C_BASE_PITC->PITC_PIMR |= AT91C_PITC_PITEN | AT91C_PITC_PITIEN;
|
2008-02-20 16:29:27 +00:00
|
|
|
|
|
|
|
/*
|
2009-11-29 13:37:19 +00:00
|
|
|
* RTS/CTS pins enabled for USART0 only.
|
2008-02-20 16:29:27 +00:00
|
|
|
*/
|
|
|
|
AT91C_BASE_PIOA->PIO_PDR = AT91C_PA3_RTS0 | AT91C_PA4_CTS0;
|
|
|
|
AT91C_BASE_PIOA->PIO_ASR = AT91C_PIO_PA3 | AT91C_PIO_PA4;
|
|
|
|
AT91C_BASE_PIOA->PIO_PPUDR = AT91C_PIO_PA3 | AT91C_PIO_PA4;
|
2008-02-06 14:41:28 +00:00
|
|
|
}
|