mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 17:11:42 +00:00
The UART block on the g chip has no functionality to adjust the parity. Unfortunately, this feature is needed for certain applications. This commit adds a UART bit bang driver with support for configuring the baud rate and parity. It currently only supports 8 data bits. BUG=b:35648297 BRANCH=cr50 TEST=make -j buildall TEST=With some other patches, successfully flash rowan EC at 9600 baud. Change-Id: I86a160c0960e46b3a8bb1057518f625aefb7d81f Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/503473 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Vadim Bendebury <vbendeb@chromium.org>
113 lines
3.0 KiB
C
113 lines
3.0 KiB
C
/* Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef __CROS_EC_CHIP_G_UART_BITBANG_H
|
|
#define __CROS_EC_CHIP_G_UART_BITBANG_H
|
|
|
|
/* UART Bit Banging */
|
|
|
|
#include "common.h"
|
|
#include "gpio.h"
|
|
|
|
/* These are functions that we'll have to replace. */
|
|
struct uartn_function_ptrs {
|
|
int (*_rx_available)(int uart);
|
|
void (*_write_char)(int uart, char c);
|
|
int (*_read_char)(int uart);
|
|
};
|
|
|
|
/*
|
|
* And these are the function definitions. The functions live in
|
|
* chip/g/uartn.c.
|
|
*/
|
|
extern int _uartn_rx_available(int uart);
|
|
extern void _uartn_write_char(int uart, char c);
|
|
extern int _uartn_read_char(int uart);
|
|
extern int _uart_bitbang_rx_available(int uart);
|
|
extern void _uart_bitbang_write_char(int uart, char c);
|
|
extern int _uart_bitbang_read_char(int uart);
|
|
extern struct uartn_function_ptrs uartn_funcs[];
|
|
|
|
struct uart_bitbang_properties {
|
|
enum gpio_signal tx_gpio;
|
|
enum gpio_signal rx_gpio;
|
|
uint32_t tx_pinmux_reg;
|
|
uint32_t tx_pinmux_regval;
|
|
uint32_t rx_pinmux_reg;
|
|
uint32_t rx_pinmux_regval;
|
|
int baud_rate;
|
|
uint8_t uart;
|
|
struct {
|
|
unsigned int head : 3;
|
|
unsigned int tail : 3;
|
|
unsigned int parity : 2;
|
|
} htp __packed;
|
|
};
|
|
|
|
/* In order to bitbang a UART, a board must define a bitbang_config. */
|
|
extern struct uart_bitbang_properties bitbang_config;
|
|
|
|
/**
|
|
* Enable bit banging mode for a UART.
|
|
*
|
|
* @param uart: Index of UART to enable bit banging mode.
|
|
* @param baud_rate: desired baud rate.
|
|
* @param parity: 0: no parity, 1: odd parity, 2: even parity.
|
|
*
|
|
* @returns EC_SUCCESS on success, otherwise an error.
|
|
*/
|
|
int uart_bitbang_enable(int uart, int baud_rate, int parity);
|
|
|
|
/**
|
|
* Disable bit banging mode for a UART.
|
|
*
|
|
* @param uart: Index of UART to disable bit banging mode.
|
|
*/
|
|
int uart_bitbang_disable(int uart);
|
|
|
|
/**
|
|
* Returns 1 if bit banging mode is enabled for the UART.
|
|
*
|
|
* @param uart: Index of UART to query.
|
|
*/
|
|
int uart_bitbang_is_enabled(int uart);
|
|
|
|
/**
|
|
* TX a character on a UART configured for bit banging mode.
|
|
*
|
|
* @param uart: Index of UART to use.
|
|
* @param c: Character to send out.
|
|
*/
|
|
void uart_bitbang_write_char(int uart, char c);
|
|
|
|
/**
|
|
* Sample the RX line on a UART configured for bit banging mode.
|
|
*
|
|
* This is called when a falling edge is seen on the RX line and will attempt to
|
|
* receive a character. Incoming data with framing errors or parity errors will
|
|
* be discarded.
|
|
*
|
|
* @param uart: Index of UART to use.
|
|
* @returns EC_SUCCESS if a character was successfully received, EC_ERROR_CRC if
|
|
* there was a framing or parity issue.
|
|
*/
|
|
int uart_bitbang_receive_char(int uart);
|
|
|
|
/**
|
|
* Returns 1 if there are characters available for consumption, otherwise 0.
|
|
*
|
|
* @param uart: Index of UART to check.
|
|
*/
|
|
int uart_bitbang_is_char_available(int uart);
|
|
|
|
/**
|
|
* Retrieve a character from the bit bang RX buffer.
|
|
*
|
|
* @param uart: Index of UART to use.
|
|
*/
|
|
int uart_bitbang_read_char(int uart);
|
|
|
|
#endif /* __CROS_EC_CHIP_G_UART_BITBANG_H */
|