a049e02d96
The following commit refactors the CAN driver such that it is split into HAL and Lowlevel layers. The following changes have also been made: - Added bit field members to can_message_t as alternative to message flags. Updated examples and docs accordingly - Register field names and fields of can_dev_t updated
144 lines
5.9 KiB
C
144 lines
5.9 KiB
C
// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
|
|
//
|
|
// 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
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// 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.
|
|
|
|
//Todo: Place the implementation of all common HAL functions here
|
|
|
|
#include <stddef.h>
|
|
#include "hal/can_hal.h"
|
|
|
|
//Default values written to various registers on initialization
|
|
#define CAN_HAL_INIT_TEC 0
|
|
#define CAN_HAL_INIT_REC 0
|
|
#define CAN_HAL_INIT_EWL 96
|
|
|
|
bool can_hal_init(can_hal_context_t *hal_ctx)
|
|
{
|
|
//Initialize HAL context
|
|
hal_ctx->dev = &CAN;
|
|
//Initialize CAN controller, and set default values to registers
|
|
if (!can_ll_enter_reset_mode(hal_ctx->dev)) { //Must enter reset mode to write to config registers
|
|
return false;
|
|
}
|
|
can_ll_enable_extended_reg_layout(hal_ctx->dev); //Set PeliCAN address layout
|
|
can_ll_set_mode(hal_ctx->dev, CAN_MODE_LISTEN_ONLY); //Freeze REC by changing to LOM mode
|
|
//Both TEC and REC should start at 0
|
|
can_ll_set_tec(hal_ctx->dev, CAN_HAL_INIT_TEC);
|
|
can_ll_set_rec(hal_ctx->dev, CAN_HAL_INIT_REC);
|
|
can_ll_set_err_warn_lim(hal_ctx->dev, CAN_HAL_INIT_EWL); //Set default value of for EWL
|
|
return true;
|
|
}
|
|
|
|
void can_hal_deinit(can_hal_context_t *hal_ctx)
|
|
{
|
|
//Clear any pending registers
|
|
(void) can_ll_get_and_clear_intrs(hal_ctx->dev);
|
|
can_ll_set_enabled_intrs(hal_ctx->dev, 0);
|
|
can_ll_clear_arb_lost_cap(hal_ctx->dev);
|
|
can_ll_clear_err_code_cap(hal_ctx->dev);
|
|
hal_ctx->dev = NULL;
|
|
}
|
|
|
|
void can_hal_configure(can_hal_context_t *hal_ctx, const can_timing_config_t *t_config, const can_filter_config_t *f_config, uint32_t intr_mask, uint32_t clkout_divider)
|
|
{
|
|
//Configure bus timing, acceptance filter, CLKOUT, and interrupts
|
|
can_ll_set_bus_timing(hal_ctx->dev, t_config->brp, t_config->sjw, t_config->tseg_1, t_config->tseg_2, t_config->triple_sampling);
|
|
can_ll_set_acc_filter(hal_ctx->dev, f_config->acceptance_code, f_config->acceptance_mask, f_config->single_filter);
|
|
can_ll_set_clkout(hal_ctx->dev, clkout_divider);
|
|
can_ll_set_enabled_intrs(hal_ctx->dev, intr_mask);
|
|
(void) can_ll_get_and_clear_intrs(hal_ctx->dev); //Clear any latched interrupts
|
|
}
|
|
|
|
bool can_hal_start(can_hal_context_t *hal_ctx, can_mode_t mode)
|
|
{
|
|
can_ll_set_mode(hal_ctx->dev, mode); //Set operating mode
|
|
//Todo: Check if this can be removed
|
|
(void) can_ll_get_and_clear_intrs(hal_ctx->dev); //Clear any latched interrupts
|
|
return can_ll_exit_reset_mode(hal_ctx->dev); //Return false if failed to exit reset mode
|
|
}
|
|
|
|
bool can_hal_stop(can_hal_context_t *hal_ctx)
|
|
{
|
|
if (!can_ll_enter_reset_mode(hal_ctx->dev)) {
|
|
return false;
|
|
}
|
|
//Todo: Check if this can be removed
|
|
(void) can_ll_get_and_clear_intrs(hal_ctx->dev);
|
|
can_ll_set_mode(hal_ctx->dev, CAN_MODE_LISTEN_ONLY); //Freeze REC by changing to LOM mode
|
|
return true;
|
|
}
|
|
|
|
uint32_t can_hal_decode_interrupt_events(can_hal_context_t *hal_ctx, bool bus_recovering)
|
|
{
|
|
uint32_t events = 0;
|
|
//Read interrupt, status
|
|
uint32_t interrupts = can_ll_get_and_clear_intrs(hal_ctx->dev);
|
|
uint32_t status = can_ll_get_status(hal_ctx->dev);
|
|
uint32_t tec = can_ll_get_tec(hal_ctx->dev);
|
|
uint32_t rec = can_ll_get_rec(hal_ctx->dev);
|
|
|
|
//Receive Interrupt set whenever RX FIFO is not empty
|
|
if (interrupts & CAN_LL_INTR_RI) {
|
|
events |= CAN_HAL_EVENT_RX_BUFF_FRAME;
|
|
}
|
|
//Transmit interrupt set whenever TX buffer becomes free
|
|
if (interrupts & CAN_LL_INTR_TI) {
|
|
events |= CAN_HAL_EVENT_TX_BUFF_FREE;
|
|
}
|
|
//Error Warning Interrupt set whenever Error or Bus Status bit changes
|
|
if (interrupts & CAN_LL_INTR_EI) {
|
|
if (status & CAN_LL_STATUS_BS) {
|
|
//Currently in BUS OFF state
|
|
//EWL is exceeded, thus must have entered BUS OFF
|
|
//Below EWL. Therefore TEC is counting down in bus recovery
|
|
events |= (status & CAN_LL_STATUS_ES) ? CAN_HAL_EVENT_BUS_OFF : CAN_HAL_EVENT_BUS_RECOV_PROGRESS;
|
|
} else {
|
|
//Not in BUS OFF
|
|
events |= (status & CAN_LL_STATUS_ES) ? CAN_HAL_EVENT_ABOVE_EWL : //Just Exceeded EWL
|
|
((bus_recovering) ? //If previously undergoing bus recovery
|
|
CAN_HAL_EVENT_BUS_RECOV_CPLT :
|
|
CAN_HAL_EVENT_BELOW_EWL);
|
|
}
|
|
}
|
|
//Error Passive Interrupt on transition from error active to passive or vice versa
|
|
if (interrupts & CAN_LL_INTR_EPI) {
|
|
events |= (tec >= CAN_ERR_PASS_THRESH || rec >= CAN_ERR_PASS_THRESH) ? CAN_HAL_EVENT_ERROR_PASSIVE : CAN_HAL_EVENT_ERROR_ACTIVE;
|
|
}
|
|
//Arbitration Lost Interrupt triggered on losing arbitration
|
|
if (interrupts & CAN_LL_INTR_ALI) {
|
|
events |= CAN_HAL_EVENT_ARB_LOST;
|
|
}
|
|
//Bus error interrupt triggered on a bus error (e.g. bit, ACK, stuff etc)
|
|
if (interrupts & CAN_LL_INTR_BEI) {
|
|
events |= CAN_HAL_EVENT_BUS_ERR;
|
|
}
|
|
return events;
|
|
}
|
|
|
|
void can_hal_set_tx_buffer_and_transmit(can_hal_context_t *hal_ctx, can_hal_frame_t *tx_frame)
|
|
{
|
|
//Copy frame into tx buffer
|
|
can_ll_set_tx_buffer(hal_ctx->dev, tx_frame);
|
|
//Hit the send command
|
|
if (tx_frame->self_reception) {
|
|
if (tx_frame->single_shot) {
|
|
can_ll_set_cmd_self_rx_single_shot(hal_ctx->dev);
|
|
} else {
|
|
can_ll_set_cmd_self_rx_request(hal_ctx->dev);
|
|
}
|
|
} else if (tx_frame->single_shot){
|
|
can_ll_set_cmd_tx_single_shot(hal_ctx->dev);
|
|
} else {
|
|
can_ll_set_cmd_tx(hal_ctx->dev);
|
|
}
|
|
}
|