2016-01-24 16:53:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2015, Texas Instruments Incorporated - http://www.ti.com/
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the copyright holder nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* \addtogroup launchpad-peripherals
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* \file
|
|
|
|
* LaunchPad-specific board initialisation driver
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2017-09-04 14:22:34 +00:00
|
|
|
#include "contiki.h"
|
2016-01-24 16:53:47 +00:00
|
|
|
#include "lib/sensors.h"
|
|
|
|
#include "lpm.h"
|
|
|
|
#include "ti-lib.h"
|
|
|
|
#include "board-peripherals.h"
|
2016-11-06 17:19:55 +00:00
|
|
|
#include "rf-core/rf-switch.h"
|
2016-01-24 16:53:47 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
wakeup_handler(void)
|
|
|
|
{
|
|
|
|
/* Turn on the PERIPH PD */
|
|
|
|
ti_lib_prcm_power_domain_on(PRCM_DOMAIN_PERIPH);
|
2016-11-06 17:19:55 +00:00
|
|
|
while(ti_lib_prcm_power_domain_status(PRCM_DOMAIN_PERIPH)
|
|
|
|
!= PRCM_DOMAIN_POWER_ON);
|
2016-01-24 16:53:47 +00:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
* Declare a data structure to register with LPM.
|
|
|
|
* We don't care about what power mode we'll drop to, we don't care about
|
|
|
|
* getting notified before deep sleep. All we need is to be notified when we
|
|
|
|
* wake up so we can turn power domains back on
|
|
|
|
*/
|
|
|
|
LPM_MODULE(launchpad_module, NULL, NULL, wakeup_handler, LPM_DOMAIN_NONE);
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
configure_unused_pins(void)
|
|
|
|
{
|
2016-11-05 18:10:46 +00:00
|
|
|
uint32_t pins[] = BOARD_UNUSED_PINS;
|
2016-01-24 16:53:47 +00:00
|
|
|
|
|
|
|
uint32_t *pin;
|
|
|
|
|
|
|
|
for(pin = pins; *pin != IOID_UNUSED; pin++) {
|
|
|
|
ti_lib_ioc_pin_type_gpio_input(*pin);
|
|
|
|
ti_lib_ioc_io_port_pull_set(*pin, IOC_IOPULL_DOWN);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
board_init()
|
|
|
|
{
|
|
|
|
/* Disable global interrupts */
|
|
|
|
bool int_disabled = ti_lib_int_master_disable();
|
|
|
|
|
|
|
|
/* Turn on relevant PDs */
|
|
|
|
wakeup_handler();
|
|
|
|
|
|
|
|
/* Enable GPIO peripheral */
|
|
|
|
ti_lib_prcm_peripheral_run_enable(PRCM_PERIPH_GPIO);
|
|
|
|
|
|
|
|
/* Apply settings and wait for them to take effect */
|
|
|
|
ti_lib_prcm_load_set();
|
|
|
|
while(!ti_lib_prcm_load_get());
|
|
|
|
|
|
|
|
/* Make sure the external flash is in the lower power mode */
|
|
|
|
ext_flash_init();
|
|
|
|
|
|
|
|
lpm_register_module(&launchpad_module);
|
|
|
|
|
|
|
|
/* For unsupported peripherals, select a default pin configuration */
|
|
|
|
configure_unused_pins();
|
|
|
|
|
2016-11-06 17:19:55 +00:00
|
|
|
/* Initialise the RF switch if present */
|
|
|
|
rf_switch_init();
|
|
|
|
|
2016-01-24 16:53:47 +00:00
|
|
|
/* Re-enable interrupt if initially enabled. */
|
|
|
|
if(!int_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/** @} */
|