2008-02-06 14:41:28 +00:00
|
|
|
/*
|
2013-03-30 10:32:37 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
|
2008-02-06 14:41:28 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2008-02-06 14:41:28 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2008-02-06 14:41:28 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
2008-02-06 14:41:28 +00:00
|
|
|
*/
|
|
|
|
|
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) || \
|
2012-11-08 07:29:55 +00:00
|
|
|
(SAM7_PLATFORM == SAM7X512) || (SAM7_PLATFORM == SAM7A3)
|
2010-11-15 19:44:09 +00:00
|
|
|
{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
|
2013-02-17 14:10:10 +00:00
|
|
|
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(&SDDBG);
|
2010-04-24 21:16:10 +00:00
|
|
|
}
|
2013-02-17 14:10:10 +00:00
|
|
|
#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
|
|
|
}
|
|
|
|
|
2012-05-10 12:26:24 +00:00
|
|
|
#if HAL_USE_MMC_SPI
|
|
|
|
/* Board-related functions related to the MMC_SPI driver.*/
|
|
|
|
bool_t mmc_lld_is_card_inserted(MMCDriver *mmcp) {
|
|
|
|
|
|
|
|
(void)mmcp;
|
|
|
|
return !palReadPad(IOPORT2, PIOB_MMC_CP);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool_t mmc_lld_is_write_protected(MMCDriver *mmcp) {
|
|
|
|
|
|
|
|
(void)mmcp;
|
|
|
|
return palReadPad(IOPORT2, PIOB_MMC_WP);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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,
|
2012-01-11 19:30:54 +00:00
|
|
|
0,
|
2009-07-11 14:36:20 +00:00
|
|
|
PAL_MODE_INPUT);
|
2011-12-31 10:07:43 +00:00
|
|
|
palSetGroupMode(IOPORT2, PIOB_SW1_MASK | PIOB_SW2_MASK, 0, 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,
|
2011-12-31 10:07:43 +00:00
|
|
|
0,
|
2009-07-11 14:36:20 +00:00
|
|
|
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
|
|
|
}
|