2015-08-16 17:30:04 +02: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 rf-core
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* \file
|
|
|
|
* Implementation of the CC13xx/CC26xx RF core driver
|
|
|
|
*/
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#include "contiki-conf.h"
|
|
|
|
#include "dev/watchdog.h"
|
|
|
|
#include "sys/process.h"
|
|
|
|
#include "sys/energest.h"
|
2015-06-22 17:48:39 +02:00
|
|
|
#include "sys/cc.h"
|
2015-08-16 17:30:04 +02:00
|
|
|
#include "net/netstack.h"
|
|
|
|
#include "net/packetbuf.h"
|
|
|
|
#include "net/rime/rimestats.h"
|
|
|
|
#include "rf-core/rf-core.h"
|
|
|
|
#include "ti-lib.h"
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* RF core and RF HAL API */
|
|
|
|
#include "hw_rfc_dbell.h"
|
|
|
|
#include "hw_rfc_pwr.h"
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* RF Core Mailbox API */
|
|
|
|
#include "rf-core/api/mailbox.h"
|
|
|
|
#include "rf-core/api/common_cmd.h"
|
|
|
|
#include "rf-core/api/ble_cmd.h"
|
|
|
|
#include "rf-core/api/ieee_cmd.h"
|
|
|
|
#include "rf-core/api/data_entry.h"
|
|
|
|
#include "rf-core/api/ble_mailbox.h"
|
|
|
|
#include "rf-core/api/ieee_mailbox.h"
|
|
|
|
#include "rf-core/api/prop_mailbox.h"
|
|
|
|
#include "rf-core/api/prop_cmd.h"
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#define DEBUG 0
|
|
|
|
#if DEBUG
|
|
|
|
#define PRINTF(...) printf(__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define PRINTF(...)
|
|
|
|
#endif
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#ifdef RF_CORE_CONF_DEBUG_CRC
|
|
|
|
#define RF_CORE_DEBUG_CRC RF_CORE_CONF_DEBUG_CRC
|
|
|
|
#else
|
|
|
|
#define RF_CORE_DEBUG_CRC DEBUG
|
|
|
|
#endif
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* RF interrupts */
|
|
|
|
#define RX_FRAME_IRQ IRQ_RX_ENTRY_DONE
|
|
|
|
#define ERROR_IRQ IRQ_INTERNAL_ERROR
|
|
|
|
#define RX_NOK_IRQ IRQ_RX_NOK
|
|
|
|
|
|
|
|
/* Those IRQs are enabled all the time */
|
|
|
|
#if RF_CORE_DEBUG_CRC
|
|
|
|
#define ENABLED_IRQS (RX_FRAME_IRQ | ERROR_IRQ | RX_NOK_IRQ)
|
|
|
|
#else
|
|
|
|
#define ENABLED_IRQS (RX_FRAME_IRQ | ERROR_IRQ)
|
|
|
|
#endif
|
|
|
|
|
2016-04-25 16:58:24 +02:00
|
|
|
#define ENABLED_IRQS_POLL_MODE (ENABLED_IRQS & ~(RX_FRAME_IRQ | ERROR_IRQ))
|
|
|
|
|
2015-08-16 17:30:04 +02:00
|
|
|
#define cc26xx_rf_cpe0_isr RFCCPE0IntHandler
|
|
|
|
#define cc26xx_rf_cpe1_isr RFCCPE1IntHandler
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2016-07-17 02:51:40 +02:00
|
|
|
typedef ChipType_t chip_type_t;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
/* Remember the last Radio Op issued to the radio */
|
|
|
|
static rfc_radioOp_t *last_radio_op = NULL;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/* A struct holding pointers to the primary mode's abort() and restore() */
|
|
|
|
static const rf_core_primary_mode_t *primary_mode = NULL;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2016-04-25 16:58:24 +02:00
|
|
|
/* Radio timer (RAT) offset as compared to the rtimer counter (RTC) */
|
|
|
|
int32_t rat_offset = 0;
|
|
|
|
static bool rat_offset_known = false;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
PROCESS(rf_core_process, "CC13xx / CC26xx RF driver");
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#define RF_CORE_CLOCKS_MASK (RFC_PWR_PWMCLKEN_RFC_M | RFC_PWR_PWMCLKEN_CPE_M \
|
|
|
|
| RFC_PWR_PWMCLKEN_CPERAM_M)
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
|
|
|
rf_core_is_accessible()
|
|
|
|
{
|
2015-10-24 21:54:33 +02:00
|
|
|
if(ti_lib_prcm_rf_ready()) {
|
2015-08-16 17:30:04 +02:00
|
|
|
return RF_CORE_ACCESSIBLE;
|
|
|
|
}
|
|
|
|
return RF_CORE_NOT_ACCESSIBLE;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint_fast8_t
|
|
|
|
rf_core_send_cmd(uint32_t cmd, uint32_t *status)
|
|
|
|
{
|
|
|
|
uint32_t timeout_count = 0;
|
|
|
|
bool interrupts_disabled;
|
|
|
|
bool is_radio_op = false;
|
|
|
|
|
2015-11-01 21:48:28 +01:00
|
|
|
/*
|
|
|
|
* If cmd is 4-byte aligned, then it's either a radio OP or an immediate
|
|
|
|
* command. Clear the status field if it's a radio OP
|
|
|
|
*/
|
2015-08-16 17:30:04 +02:00
|
|
|
if((cmd & 0x03) == 0) {
|
2015-11-01 21:48:28 +01:00
|
|
|
uint32_t cmd_type;
|
|
|
|
cmd_type = ((rfc_command_t *)cmd)->commandNo & RF_CORE_COMMAND_TYPE_MASK;
|
|
|
|
if(cmd_type == RF_CORE_COMMAND_TYPE_IEEE_FG_RADIO_OP ||
|
|
|
|
cmd_type == RF_CORE_COMMAND_TYPE_RADIO_OP) {
|
|
|
|
is_radio_op = true;
|
|
|
|
((rfc_radioOp_t *)cmd)->status = RF_CORE_RADIO_OP_STATUS_IDLE;
|
|
|
|
}
|
2015-08-16 17:30:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure ContikiMAC doesn't turn us off from within an interrupt while
|
|
|
|
* we are accessing RF Core registers
|
|
|
|
*/
|
|
|
|
interrupts_disabled = ti_lib_int_master_disable();
|
|
|
|
|
|
|
|
if(!rf_core_is_accessible()) {
|
|
|
|
PRINTF("rf_core_send_cmd: RF was off\n");
|
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_radio_op) {
|
|
|
|
uint16_t command_no = ((rfc_radioOp_t *)cmd)->commandNo;
|
|
|
|
if((command_no & RF_CORE_COMMAND_PROTOCOL_MASK) != RF_CORE_COMMAND_PROTOCOL_COMMON &&
|
|
|
|
(command_no & RF_CORE_COMMAND_TYPE_MASK) == RF_CORE_COMMAND_TYPE_RADIO_OP) {
|
|
|
|
last_radio_op = (rfc_radioOp_t *)cmd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HWREG(RFC_DBELL_BASE + RFC_DBELL_O_CMDR) = cmd;
|
|
|
|
do {
|
2016-01-24 14:39:02 +01:00
|
|
|
*status = HWREG(RFC_DBELL_BASE + RFC_DBELL_O_CMDSTA);
|
2015-08-16 17:30:04 +02:00
|
|
|
if(++timeout_count > 50000) {
|
|
|
|
PRINTF("rf_core_send_cmd: 0x%08lx Timeout\n", cmd);
|
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
2016-01-24 14:39:02 +01:00
|
|
|
} while((*status & RF_CORE_CMDSTA_RESULT_MASK) == RF_CORE_CMDSTA_PENDING);
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we reach here the command is no longer pending. It is either completed
|
|
|
|
* successfully or with error
|
|
|
|
*/
|
|
|
|
return (*status & RF_CORE_CMDSTA_RESULT_MASK) == RF_CORE_CMDSTA_DONE;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint_fast8_t
|
|
|
|
rf_core_wait_cmd_done(void *cmd)
|
|
|
|
{
|
|
|
|
volatile rfc_radioOp_t *command = (rfc_radioOp_t *)cmd;
|
|
|
|
uint32_t timeout_cnt = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 0xn4nn=DONE, 0x0400=DONE_OK while all other "DONE" values means done
|
|
|
|
* but with some kind of error (ref. "Common radio operation status codes")
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
if(++timeout_cnt > 500000) {
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
} while((command->status & RF_CORE_RADIO_OP_MASKED_STATUS)
|
|
|
|
!= RF_CORE_RADIO_OP_MASKED_STATUS_DONE);
|
|
|
|
|
|
|
|
return (command->status & RF_CORE_RADIO_OP_MASKED_STATUS)
|
|
|
|
== RF_CORE_RADIO_OP_STATUS_DONE_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-09-14 21:18:01 +02:00
|
|
|
static int
|
|
|
|
fs_powerdown(void)
|
|
|
|
{
|
|
|
|
rfc_CMD_FS_POWERDOWN_t cmd;
|
|
|
|
uint32_t cmd_status;
|
|
|
|
|
|
|
|
rf_core_init_radio_op((rfc_radioOp_t *)&cmd, sizeof(cmd), CMD_FS_POWERDOWN);
|
|
|
|
|
|
|
|
if(rf_core_send_cmd((uint32_t)&cmd, &cmd_status) != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("fs_powerdown: CMDSTA=0x%08lx\n", cmd_status);
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rf_core_wait_cmd_done(&cmd) != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("fs_powerdown: CMDSTA=0x%08lx, status=0x%04x\n",
|
|
|
|
cmd_status, cmd.status);
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
int
|
|
|
|
rf_core_power_up()
|
|
|
|
{
|
|
|
|
uint32_t cmd_status;
|
|
|
|
bool interrupts_disabled = ti_lib_int_master_disable();
|
|
|
|
|
2016-06-11 20:40:14 +02:00
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_1);
|
|
|
|
ti_lib_int_disable(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_disable(INT_RFC_CPE_1);
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
/* Enable RF Core power domain */
|
|
|
|
ti_lib_prcm_power_domain_on(PRCM_DOMAIN_RFCORE);
|
|
|
|
while(ti_lib_prcm_power_domain_status(PRCM_DOMAIN_RFCORE)
|
|
|
|
!= PRCM_DOMAIN_POWER_ON);
|
|
|
|
|
|
|
|
ti_lib_prcm_domain_enable(PRCM_DOMAIN_RFCORE);
|
|
|
|
ti_lib_prcm_load_set();
|
|
|
|
while(!ti_lib_prcm_load_get());
|
|
|
|
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0x0;
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = 0x0;
|
2016-06-11 20:40:14 +02:00
|
|
|
ti_lib_int_enable(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_enable(INT_RFC_CPE_1);
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Let CPE boot */
|
|
|
|
HWREG(RFC_PWR_NONBUF_BASE + RFC_PWR_O_PWMCLKEN) = RF_CORE_CLOCKS_MASK;
|
|
|
|
|
|
|
|
/* Send ping (to verify RFCore is ready and alive) */
|
|
|
|
if(rf_core_send_cmd(CMDR_DIR_CMD(CMD_PING), &cmd_status) != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_power_up: CMD_PING fail, CMDSTA=0x%08lx\n", cmd_status);
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2016-04-25 16:58:24 +02:00
|
|
|
uint8_t
|
|
|
|
rf_core_start_rat(void)
|
|
|
|
{
|
|
|
|
uint32_t cmd_status;
|
|
|
|
rfc_CMD_SYNC_START_RAT_t cmd_start;
|
|
|
|
|
|
|
|
/* Start radio timer (RAT) */
|
|
|
|
rf_core_init_radio_op((rfc_radioOp_t *)&cmd_start, sizeof(cmd_start), CMD_SYNC_START_RAT);
|
|
|
|
|
|
|
|
/* copy the value and send back */
|
|
|
|
cmd_start.rat0 = rat_offset;
|
|
|
|
|
|
|
|
if(rf_core_send_cmd((uint32_t)&cmd_start, &cmd_status) != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_get_rat_rtc_offset: SYNC_START_RAT fail, CMDSTA=0x%08lx\n",
|
|
|
|
cmd_status);
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait until done (?) */
|
|
|
|
if(rf_core_wait_cmd_done(&cmd_start) != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_cmd_ok: SYNC_START_RAT wait, CMDSTA=0x%08lx, status=0x%04x\n",
|
|
|
|
cmd_status, cmd_start.status);
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
|
|
|
rf_core_stop_rat(void)
|
|
|
|
{
|
|
|
|
rfc_CMD_SYNC_STOP_RAT_t cmd_stop;
|
|
|
|
uint32_t cmd_status;
|
|
|
|
|
|
|
|
rf_core_init_radio_op((rfc_radioOp_t *)&cmd_stop, sizeof(cmd_stop), CMD_SYNC_STOP_RAT);
|
|
|
|
|
|
|
|
int ret = rf_core_send_cmd((uint32_t)&cmd_stop, &cmd_status);
|
|
|
|
if(ret != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_get_rat_rtc_offset: SYNC_STOP_RAT fail, ret %d CMDSTA=0x%08lx\n",
|
|
|
|
ret, cmd_status);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait until done */
|
|
|
|
ret = rf_core_wait_cmd_done(&cmd_stop);
|
|
|
|
if(ret != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_cmd_ok: SYNC_STOP_RAT wait, CMDSTA=0x%08lx, status=0x%04x\n",
|
|
|
|
cmd_status, cmd_stop.status);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!rat_offset_known) {
|
|
|
|
/* save the offset, but only if this is the first time */
|
|
|
|
rat_offset_known = true;
|
|
|
|
rat_offset = cmd_stop.rat0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2015-08-16 17:30:04 +02:00
|
|
|
void
|
|
|
|
rf_core_power_down()
|
|
|
|
{
|
|
|
|
bool interrupts_disabled = ti_lib_int_master_disable();
|
2016-06-11 20:40:14 +02:00
|
|
|
ti_lib_int_disable(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_disable(INT_RFC_CPE_1);
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
if(rf_core_is_accessible()) {
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0x0;
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = 0x0;
|
2015-09-14 21:18:01 +02:00
|
|
|
|
|
|
|
/* need to send FS_POWERDOWN or analog components will use power */
|
|
|
|
fs_powerdown();
|
2015-08-16 17:30:04 +02:00
|
|
|
}
|
|
|
|
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_stop_rat();
|
|
|
|
|
2015-08-16 17:30:04 +02:00
|
|
|
/* Shut down the RFCORE clock domain in the MCU VD */
|
|
|
|
ti_lib_prcm_domain_disable(PRCM_DOMAIN_RFCORE);
|
|
|
|
ti_lib_prcm_load_set();
|
|
|
|
while(!ti_lib_prcm_load_get());
|
|
|
|
|
|
|
|
/* Turn off RFCORE PD */
|
|
|
|
ti_lib_prcm_power_domain_off(PRCM_DOMAIN_RFCORE);
|
|
|
|
while(ti_lib_prcm_power_domain_status(PRCM_DOMAIN_RFCORE)
|
|
|
|
!= PRCM_DOMAIN_POWER_OFF);
|
|
|
|
|
2016-06-11 20:40:14 +02:00
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_1);
|
|
|
|
ti_lib_int_enable(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_enable(INT_RFC_CPE_1);
|
2015-08-16 17:30:04 +02:00
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
|
|
|
rf_core_set_modesel()
|
|
|
|
{
|
|
|
|
uint8_t rv = RF_CORE_CMD_ERROR;
|
2016-07-17 02:51:40 +02:00
|
|
|
chip_type_t chip_type = ti_lib_chipinfo_get_chip_type();
|
2016-06-26 02:02:10 +02:00
|
|
|
|
|
|
|
if(chip_type == CHIP_TYPE_CC2650) {
|
|
|
|
HWREG(PRCM_BASE + PRCM_O_RFCMODESEL) = PRCM_RFCMODESEL_CURR_MODE5;
|
|
|
|
rv = RF_CORE_CMD_OK;
|
|
|
|
} else if(chip_type == CHIP_TYPE_CC2630) {
|
|
|
|
HWREG(PRCM_BASE + PRCM_O_RFCMODESEL) = PRCM_RFCMODESEL_CURR_MODE2;
|
|
|
|
rv = RF_CORE_CMD_OK;
|
|
|
|
} else if(chip_type == CHIP_TYPE_CC1310) {
|
|
|
|
HWREG(PRCM_BASE + PRCM_O_RFCMODESEL) = PRCM_RFCMODESEL_CURR_MODE3;
|
|
|
|
rv = RF_CORE_CMD_OK;
|
2016-07-17 02:51:40 +02:00
|
|
|
} else if(chip_type == CHIP_TYPE_CC1350) {
|
|
|
|
HWREG(PRCM_BASE + PRCM_O_RFCMODESEL) = PRCM_RFCMODESEL_CURR_MODE5;
|
|
|
|
rv = RF_CORE_CMD_OK;
|
2015-08-16 17:30:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_boot()
|
2015-08-16 17:30:04 +02:00
|
|
|
{
|
2016-04-25 16:58:24 +02:00
|
|
|
if(rf_core_power_up() != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_boot: rf_core_power_up() failed\n");
|
|
|
|
|
|
|
|
rf_core_power_down();
|
|
|
|
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rf_core_start_rat() != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_boot: rf_core_start_rat() failed\n");
|
|
|
|
|
|
|
|
rf_core_power_down();
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_restart_rat(void)
|
2015-08-16 17:30:04 +02:00
|
|
|
{
|
2016-04-25 16:58:24 +02:00
|
|
|
if(rf_core_stop_rat() != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_restart_rat: rf_core_stop_rat() failed\n");
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(rf_core_start_rat() != RF_CORE_CMD_OK) {
|
2016-04-25 16:58:24 +02:00
|
|
|
PRINTF("rf_core_restart_rat: rf_core_start_rat() failed\n");
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
rf_core_power_down();
|
|
|
|
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_OK;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_setup_interrupts(bool poll_mode)
|
2015-08-16 17:30:04 +02:00
|
|
|
{
|
|
|
|
bool interrupts_disabled;
|
2016-04-25 16:58:24 +02:00
|
|
|
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
/* We are already turned on by the caller, so this should not happen */
|
|
|
|
if(!rf_core_is_accessible()) {
|
|
|
|
PRINTF("setup_interrupts: No access\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Disable interrupts */
|
|
|
|
interrupts_disabled = ti_lib_int_master_disable();
|
|
|
|
|
|
|
|
/* Set all interrupt channels to CPE0 channel, error to CPE1 */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEISL) = ERROR_IRQ;
|
|
|
|
|
|
|
|
/* Acknowledge configured interrupts */
|
2016-04-25 16:58:24 +02:00
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs;
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
/* Clear interrupt flags, active low clear(?) */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0x0;
|
|
|
|
|
2016-06-11 20:40:14 +02:00
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_pend_clear(INT_RFC_CPE_1);
|
|
|
|
ti_lib_int_enable(INT_RFC_CPE_0);
|
|
|
|
ti_lib_int_enable(INT_RFC_CPE_1);
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
if(!interrupts_disabled) {
|
|
|
|
ti_lib_int_master_enable();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_cmd_done_en(bool fg, bool poll_mode)
|
2015-08-16 17:30:04 +02:00
|
|
|
{
|
2015-09-01 21:58:24 +02:00
|
|
|
uint32_t irq = fg ? IRQ_LAST_FG_COMMAND_DONE : IRQ_LAST_COMMAND_DONE;
|
2016-04-25 16:58:24 +02:00
|
|
|
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
2015-09-01 21:58:24 +02:00
|
|
|
|
2016-04-25 16:58:24 +02:00
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = enabled_irqs;
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs | irq;
|
2015-08-16 17:30:04 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
2016-04-25 16:58:24 +02:00
|
|
|
rf_core_cmd_done_dis(bool poll_mode)
|
2015-08-16 17:30:04 +02:00
|
|
|
{
|
2016-04-25 16:58:24 +02:00
|
|
|
const uint32_t enabled_irqs = poll_mode ? ENABLED_IRQS_POLL_MODE : ENABLED_IRQS;
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIEN) = enabled_irqs;
|
2015-08-16 17:30:04 +02:00
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
rfc_radioOp_t *
|
|
|
|
rf_core_get_last_radio_op()
|
|
|
|
{
|
|
|
|
return last_radio_op;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
rf_core_init_radio_op(rfc_radioOp_t *op, uint16_t len, uint16_t command)
|
|
|
|
{
|
|
|
|
memset(op, 0, len);
|
|
|
|
|
|
|
|
op->commandNo = command;
|
|
|
|
op->condition.rule = COND_NEVER;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
rf_core_primary_mode_register(const rf_core_primary_mode_t *mode)
|
|
|
|
{
|
|
|
|
primary_mode = mode;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
rf_core_primary_mode_abort()
|
|
|
|
{
|
|
|
|
if(primary_mode) {
|
|
|
|
if(primary_mode->abort) {
|
|
|
|
primary_mode->abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
uint8_t
|
|
|
|
rf_core_primary_mode_restore()
|
|
|
|
{
|
|
|
|
if(primary_mode) {
|
|
|
|
if(primary_mode->restore) {
|
|
|
|
return primary_mode->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return RF_CORE_CMD_ERROR;
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
PROCESS_THREAD(rf_core_process, ev, data)
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
|
|
|
|
PROCESS_BEGIN();
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
PROCESS_YIELD_UNTIL(ev == PROCESS_EVENT_POLL);
|
|
|
|
do {
|
|
|
|
watchdog_periodic();
|
|
|
|
packetbuf_clear();
|
|
|
|
len = NETSTACK_RADIO.read(packetbuf_dataptr(), PACKETBUF_SIZE);
|
|
|
|
|
|
|
|
if(len > 0) {
|
|
|
|
packetbuf_set_datalen(len);
|
|
|
|
|
|
|
|
NETSTACK_RDC.input();
|
|
|
|
}
|
|
|
|
} while(len > 0);
|
|
|
|
}
|
|
|
|
PROCESS_END();
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
static void
|
|
|
|
rx_nok_isr(void)
|
|
|
|
{
|
|
|
|
RIMESTATS_ADD(badcrc);
|
|
|
|
PRINTF("RF: Bad CRC\n");
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
cc26xx_rf_cpe1_isr(void)
|
|
|
|
{
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
|
|
|
|
|
|
|
PRINTF("RF Error\n");
|
|
|
|
|
|
|
|
if(!rf_core_is_accessible()) {
|
|
|
|
if(rf_core_power_up() != RF_CORE_CMD_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-24 21:01:31 +02:00
|
|
|
/* Clear INTERNAL_ERROR interrupt flag */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0x7FFFFFFF;
|
2015-08-16 17:30:04 +02:00
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
void
|
|
|
|
cc26xx_rf_cpe0_isr(void)
|
|
|
|
{
|
|
|
|
ENERGEST_ON(ENERGEST_TYPE_IRQ);
|
|
|
|
|
|
|
|
if(!rf_core_is_accessible()) {
|
|
|
|
printf("RF ISR called but RF not ready... PANIC!!\n");
|
|
|
|
if(rf_core_power_up() != RF_CORE_CMD_OK) {
|
|
|
|
PRINTF("rf_core_power_up() failed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ti_lib_int_master_disable();
|
|
|
|
|
|
|
|
if(HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) & RX_FRAME_IRQ) {
|
2015-10-24 21:01:31 +02:00
|
|
|
/* Clear the RX_ENTRY_DONE interrupt flag */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0xFF7FFFFF;
|
2015-08-16 17:30:04 +02:00
|
|
|
process_poll(&rf_core_process);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(RF_CORE_DEBUG_CRC) {
|
|
|
|
if(HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) & RX_NOK_IRQ) {
|
2015-10-24 21:01:31 +02:00
|
|
|
/* Clear the RX_NOK interrupt flag */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0xFFFDFFFF;
|
2015-08-16 17:30:04 +02:00
|
|
|
rx_nok_isr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-24 21:01:31 +02:00
|
|
|
if(HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) &
|
|
|
|
(IRQ_LAST_FG_COMMAND_DONE | IRQ_LAST_COMMAND_DONE)) {
|
|
|
|
/* Clear the two TX-related interrupt flags */
|
|
|
|
HWREG(RFC_DBELL_NONBUF_BASE + RFC_DBELL_O_RFCPEIFG) = 0xFFFFFFF5;
|
|
|
|
}
|
|
|
|
|
2015-08-16 17:30:04 +02:00
|
|
|
ti_lib_int_master_enable();
|
|
|
|
|
|
|
|
ENERGEST_OFF(ENERGEST_TYPE_IRQ);
|
|
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
/** @} */
|