mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-27 18:25:05 +00:00
This unifies all the EC header files to use __CROS_EC_FILENAME_H as the include guard. Well, except for test/ util/ and extra/ which use __TEST_ __UTIL_ and __EXTRA_ prefixes respectively. BUG=chromium:496895 BRANCH=none TEST=make buildall -j Signed-off-by: Bill Richardson <wfrichar@chromium.org> Change-Id: Iea71b3a08bdec94a11239de810a2b2e152b15029 Reviewed-on: https://chromium-review.googlesource.com/278121 Reviewed-by: Randall Spangler <rspangler@chromium.org>
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/*
|
|
* Copyright 2015 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_SPS_H
|
|
#define __CROS_EC_SPS_H
|
|
|
|
#include "spi.h"
|
|
#include "util.h"
|
|
|
|
/* SPS Control Mode */
|
|
enum sps_mode {
|
|
SPS_GENERIC_MODE = 0,
|
|
SPS_SWETLAND_MODE = 1,
|
|
SPS_ROM_MODE = 2,
|
|
SPS_UNDEF_MODE = 3,
|
|
};
|
|
|
|
/*
|
|
* Tx interrupt callback function prototype. This function returns a portion
|
|
* of the received SPI data and current status of the CS line. When CS is
|
|
* deasserted, this function is called with data_size of zero and a non-zero
|
|
* cs_status. This allows the recipient to delineate the SPS frames.
|
|
*/
|
|
typedef void (*rx_handler_f)(uint32_t inst, uint8_t *data,
|
|
size_t data_size, int cs_status);
|
|
|
|
/*
|
|
* Push data to the SPS TX FIFO
|
|
* @param inst Interface number
|
|
* @param data Pointer to 8-bit data
|
|
* @param data_size Number of bytes to transmit
|
|
* @return : actual number of bytes placed into tx fifo
|
|
*/
|
|
int sps_transmit(uint32_t inst, uint8_t *data, size_t data_size);
|
|
|
|
/*
|
|
* These functions return zero on success or non-zero on failure (attempt to
|
|
* register a callback on top of existing one, or attempt to unregister
|
|
* non-exitisng callback.
|
|
*/
|
|
int sps_register_rx_handler(enum sps_mode mode, rx_handler_f rx_handler);
|
|
int sps_unregister_rx_handler(void);
|
|
|
|
#endif
|