New platform: TI cc2530 Development Kit
This commits adds support for TI's SmartRF05 Eval. Board with cc2530 EMs Some initial support for cc2531 USB dongles
This commit is contained in:
parent
b7674c3636
commit
ad256e5014
68 changed files with 6824 additions and 0 deletions
333
platform/cc2530dk/contiki-main.c
Normal file
333
platform/cc2530dk/contiki-main.c
Normal file
|
@ -0,0 +1,333 @@
|
|||
#include "contiki.h"
|
||||
#include "soc.h"
|
||||
#include "sys/clock.h"
|
||||
#include "sys/autostart.h"
|
||||
#include "dev/serial-line.h"
|
||||
#include "dev/slip.h"
|
||||
#include "dev/leds.h"
|
||||
#include "dev/uart0.h"
|
||||
#include "dev/dma.h"
|
||||
#include "dev/cc2530-rf.h"
|
||||
#include "dev/watchdog.h"
|
||||
#include "dev/clock-isr.h"
|
||||
#include "dev/lpm.h"
|
||||
#include "dev/button-sensor.h"
|
||||
#include "dev/adc-sensor.h"
|
||||
#include "dev/leds-arch.h"
|
||||
#include "net/rime.h"
|
||||
#include "net/netstack.h"
|
||||
#include "net/mac/frame802154.h"
|
||||
#include "debug.h"
|
||||
#include "cc253x.h"
|
||||
#include "sfr-bits.h"
|
||||
#include "contiki-lib.h"
|
||||
#include "contiki-net.h"
|
||||
/*---------------------------------------------------------------------------*/
|
||||
#if VIZTOOL_CONF_ON
|
||||
PROCESS_NAME(viztool_process);
|
||||
#endif
|
||||
/*---------------------------------------------------------------------------*/
|
||||
#ifdef STARTUP_CONF_VERBOSE
|
||||
#define STARTUP_VERBOSE STARTUP_CONF_VERBOSE
|
||||
#else
|
||||
#define STARTUP_VERBOSE 0
|
||||
#endif
|
||||
|
||||
#if STARTUP_VERBOSE
|
||||
#define PUTSTRING(...) putstring(__VA_ARGS__)
|
||||
#define PUTHEX(...) puthex(__VA_ARGS__)
|
||||
#define PUTBIN(...) putbin(__VA_ARGS__)
|
||||
#define PUTCHAR(...) putchar(__VA_ARGS__)
|
||||
#else
|
||||
#define PUTSTRING(...) do {} while(0)
|
||||
#define PUTHEX(...) do {} while(0)
|
||||
#define PUTBIN(...) do {} while(0)
|
||||
#define PUTCHAR(...) do {} while(0)
|
||||
#endif
|
||||
/*---------------------------------------------------------------------------*/
|
||||
extern rimeaddr_t rimeaddr_node_addr;
|
||||
static __data int r;
|
||||
static __data int len;
|
||||
/*---------------------------------------------------------------------------*/
|
||||
#if ENERGEST_CONF_ON
|
||||
static unsigned long irq_energest = 0;
|
||||
#define ENERGEST_IRQ_SAVE(a) do { \
|
||||
a = energest_type_time(ENERGEST_TYPE_IRQ); } while(0)
|
||||
#define ENERGEST_IRQ_RESTORE(a) do { \
|
||||
energest_type_set(ENERGEST_TYPE_IRQ, a); } while(0)
|
||||
#else
|
||||
#define ENERGEST_IRQ_SAVE(a) do {} while(0)
|
||||
#define ENERGEST_IRQ_RESTORE(a) do {} while(0)
|
||||
#endif
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
fade(int l)
|
||||
{
|
||||
volatile int i, a;
|
||||
int k, j;
|
||||
for(k = 0; k < 400; ++k) {
|
||||
j = k > 200? 400 - k: k;
|
||||
|
||||
leds_on(l);
|
||||
for(i = 0; i < j; ++i) {
|
||||
a = i;
|
||||
}
|
||||
leds_off(l);
|
||||
for(i = 0; i < 200 - j; ++i) {
|
||||
a = i;
|
||||
}
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
static void
|
||||
set_rime_addr(void)
|
||||
{
|
||||
uint8_t *addr_long = NULL;
|
||||
uint16_t addr_short = 0;
|
||||
char i;
|
||||
|
||||
__xdata unsigned char * macp = &X_IEEE_ADDR;
|
||||
|
||||
PUTSTRING("Rime is 0x");
|
||||
PUTHEX(sizeof(rimeaddr_t));
|
||||
PUTSTRING(" bytes long\n");
|
||||
|
||||
PUTSTRING("Reading MAC from Info Page\n");
|
||||
|
||||
for(i = (RIMEADDR_SIZE - 1); i >= 0; --i) {
|
||||
rimeaddr_node_addr.u8[i] = *macp;
|
||||
macp++;
|
||||
}
|
||||
|
||||
/* Now the address is stored MSB first */
|
||||
#if STARTUP_VERBOSE
|
||||
PUTSTRING("Rime configured with address ");
|
||||
for(i = 0; i < RIMEADDR_SIZE - 1; i++) {
|
||||
PUTHEX(rimeaddr_node_addr.u8[i]);
|
||||
PUTCHAR(':');
|
||||
}
|
||||
PUTHEX(rimeaddr_node_addr.u8[i]);
|
||||
PUTCHAR('\n');
|
||||
#endif
|
||||
|
||||
cc2530_rf_set_addr(IEEE802154_PANID);
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
/* Hardware initialization */
|
||||
clock_init();
|
||||
soc_init();
|
||||
rtimer_init();
|
||||
|
||||
/* Init LEDs here */
|
||||
leds_init();
|
||||
leds_off(LEDS_ALL);
|
||||
fade(LEDS_GREEN);
|
||||
|
||||
/* initialize process manager. */
|
||||
process_init();
|
||||
|
||||
/* Init UART */
|
||||
uart0_init();
|
||||
|
||||
#if DMA_ON
|
||||
dma_init();
|
||||
#endif
|
||||
|
||||
#if SLIP_ARCH_CONF_ENABLE
|
||||
slip_arch_init(0);
|
||||
#else
|
||||
uart0_set_input(serial_line_input_byte);
|
||||
serial_line_init();
|
||||
#endif
|
||||
fade(LEDS_RED);
|
||||
|
||||
PUTSTRING("##########################################\n");
|
||||
putstring(CONTIKI_VERSION_STRING "\n");
|
||||
putstring("TI SmartRF05 EB\n");
|
||||
switch(CHIPID) {
|
||||
case 0xA5:
|
||||
putstring("cc2530");
|
||||
break;
|
||||
case 0xB5:
|
||||
putstring("cc2531");
|
||||
break;
|
||||
case 0x95:
|
||||
putstring("cc2533");
|
||||
break;
|
||||
case 0x8D:
|
||||
putstring("cc2540");
|
||||
break;
|
||||
}
|
||||
|
||||
putstring("-F");
|
||||
switch(CHIPINFO0 & 0x70) {
|
||||
case 0x40:
|
||||
putstring("256, ");
|
||||
break;
|
||||
case 0x30:
|
||||
putstring("128, ");
|
||||
break;
|
||||
case 0x20:
|
||||
putstring("64, ");
|
||||
break;
|
||||
case 0x10:
|
||||
putstring("32, ");
|
||||
break;
|
||||
}
|
||||
puthex(CHIPINFO1 + 1);
|
||||
putstring("KB SRAM\n");
|
||||
|
||||
PUTSTRING("\nSDCC Build:\n");
|
||||
#if STARTUP_VERBOSE
|
||||
#ifdef HAVE_SDCC_BANKING
|
||||
PUTSTRING(" With Banking.\n");
|
||||
#endif /* HAVE_SDCC_BANKING */
|
||||
#ifdef SDCC_MODEL_LARGE
|
||||
PUTSTRING(" --model-large\n");
|
||||
#endif /* SDCC_MODEL_LARGE */
|
||||
#ifdef SDCC_MODEL_HUGE
|
||||
PUTSTRING(" --model-huge\n");
|
||||
#endif /* SDCC_MODEL_HUGE */
|
||||
#ifdef SDCC_STACK_AUTO
|
||||
PUTSTRING(" --stack-auto\n");
|
||||
#endif /* SDCC_STACK_AUTO */
|
||||
|
||||
PUTCHAR('\n');
|
||||
|
||||
PUTSTRING(" Net: ");
|
||||
PUTSTRING(NETSTACK_NETWORK.name);
|
||||
PUTCHAR('\n');
|
||||
PUTSTRING(" MAC: ");
|
||||
PUTSTRING(NETSTACK_MAC.name);
|
||||
PUTCHAR('\n');
|
||||
PUTSTRING(" RDC: ");
|
||||
PUTSTRING(NETSTACK_RDC.name);
|
||||
PUTCHAR('\n');
|
||||
|
||||
PUTSTRING("##########################################\n");
|
||||
#endif
|
||||
|
||||
watchdog_init();
|
||||
|
||||
/* Initialise the H/W RNG engine. */
|
||||
random_init(0);
|
||||
|
||||
/* start services */
|
||||
process_start(&etimer_process, NULL);
|
||||
ctimer_init();
|
||||
|
||||
/* initialize the netstack */
|
||||
netstack_init();
|
||||
set_rime_addr();
|
||||
|
||||
#if BUTTON_SENSOR_ON || ADC_SENSOR_ON
|
||||
process_start(&sensors_process, NULL);
|
||||
BUTTON_SENSOR_ACTIVATE();
|
||||
ADC_SENSOR_ACTIVATE();
|
||||
#endif
|
||||
|
||||
#if UIP_CONF_IPV6
|
||||
memcpy(&uip_lladdr.addr, &rimeaddr_node_addr, sizeof(uip_lladdr.addr));
|
||||
queuebuf_init();
|
||||
process_start(&tcpip_process, NULL);
|
||||
#endif /* UIP_CONF_IPV6 */
|
||||
|
||||
#if VIZTOOL_CONF_ON
|
||||
process_start(&viztool_process, NULL);
|
||||
#endif
|
||||
|
||||
energest_init();
|
||||
ENERGEST_ON(ENERGEST_TYPE_CPU);
|
||||
|
||||
autostart_start(autostart_processes);
|
||||
|
||||
watchdog_start();
|
||||
|
||||
fade(LEDS_YELLOW);
|
||||
|
||||
while(1) {
|
||||
do {
|
||||
/* Reset watchdog and handle polls and events */
|
||||
watchdog_periodic();
|
||||
r = process_run();
|
||||
} while(r > 0);
|
||||
#if SHORTCUTS_CONF_NETSTACK
|
||||
len = NETSTACK_RADIO.pending_packet();
|
||||
if(len) {
|
||||
packetbuf_clear();
|
||||
len = NETSTACK_RADIO.read(packetbuf_dataptr(), PACKETBUF_SIZE);
|
||||
if(len > 0) {
|
||||
packetbuf_set_datalen(len);
|
||||
NETSTACK_RDC.input();
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#if LPM_MODE
|
||||
#if (LPM_MODE==LPM_MODE_PM2)
|
||||
SLEEP &= ~OSC_PD; /* Make sure both HS OSCs are on */
|
||||
while(!(SLEEP & HFRC_STB)); /* Wait for RCOSC to be stable */
|
||||
CLKCON |= OSC; /* Switch to the RCOSC */
|
||||
while(!(CLKCON & OSC)); /* Wait till it's happened */
|
||||
SLEEP |= OSC_PD; /* Turn the other one off */
|
||||
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
||||
|
||||
/*
|
||||
* Set MCU IDLE or Drop to PM1. Any interrupt will take us out of LPM
|
||||
* Sleep Timer will wake us up in no more than 7.8ms (max idle interval)
|
||||
*/
|
||||
SLEEPCMD = (SLEEPCMD & 0xFC) | (LPM_MODE - 1);
|
||||
|
||||
#if (LPM_MODE==LPM_MODE_PM2)
|
||||
/*
|
||||
* Wait 3 NOPs. Either an interrupt occurred and SLEEP.MODE was cleared or
|
||||
* no interrupt occurred and we can safely power down
|
||||
*/
|
||||
__asm
|
||||
nop
|
||||
nop
|
||||
nop
|
||||
__endasm;
|
||||
|
||||
if(SLEEPCMD & SLEEP_MODE0) {
|
||||
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
||||
|
||||
ENERGEST_OFF(ENERGEST_TYPE_CPU);
|
||||
ENERGEST_ON(ENERGEST_TYPE_LPM);
|
||||
|
||||
/* We are only interested in IRQ energest while idle or in LPM */
|
||||
ENERGEST_IRQ_RESTORE(irq_energest);
|
||||
|
||||
/* Go IDLE or Enter PM1 */
|
||||
PCON |= PCON_IDLE;
|
||||
|
||||
/* First instruction upon exiting PM1 must be a NOP */
|
||||
__asm
|
||||
nop
|
||||
__endasm;
|
||||
|
||||
/* Remember energest IRQ for next pass */
|
||||
ENERGEST_IRQ_SAVE(irq_energest);
|
||||
|
||||
ENERGEST_ON(ENERGEST_TYPE_CPU);
|
||||
ENERGEST_OFF(ENERGEST_TYPE_LPM);
|
||||
|
||||
#if (LPM_MODE==LPM_MODE_PM2)
|
||||
SLEEPCMD &= ~SLEEP_OSC_PD; /* Make sure both HS OSCs are on */
|
||||
while(!(SLEEPCMD & SLEEP_XOSC_STB)); /* Wait for XOSC to be stable */
|
||||
CLKCONCMD &= ~CLKCONCMD_OSC; /* Switch to the XOSC */
|
||||
/*
|
||||
* On occasion the XOSC is reported stable when in reality it's not.
|
||||
* We need to wait for a safeguard of 64us or more before selecting it
|
||||
*/
|
||||
clock_delay(10);
|
||||
while(CLKCONCMD & CLKCONCMD_OSC); /* Wait till it's happened */
|
||||
}
|
||||
#endif /* LPM_MODE==LPM_MODE_PM2 */
|
||||
#endif /* LPM_MODE */
|
||||
}
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
Loading…
Add table
Add a link
Reference in a new issue