mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 02:51:26 +00:00
This is necessary to support SCI/SMI events. Note that this breaks compatibility with previous ectool builds - and probably also breaks flashrom support. Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=chrome-os-partner:8253 TEST='ectool hello' and 'ectool flashinfo' still work and 'ectool usbchargemode 3 1' fails with error 2 Change-Id: If39e5b6e7cdcec1b5ec765594e8492925b430b10
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
/* Copyright (c) 2012 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.
|
|
*/
|
|
|
|
/* LPC module for Chrome EC */
|
|
|
|
#ifndef __CROS_EC_LPC_H
|
|
#define __CROS_EC_LPC_H
|
|
|
|
#include "common.h"
|
|
|
|
/* Manually generates an IRQ to host.
|
|
* Note that the irq_num == 0 would set the AH bit (Active High).
|
|
*/
|
|
void lpc_manual_irq(int irq_num);
|
|
|
|
/* Initializes the LPC module. */
|
|
int lpc_init(void);
|
|
|
|
/* Returns a pointer to the host command data buffer. This buffer
|
|
* must only be accessed between a notification to
|
|
* host_command_received() and a subsequent call to
|
|
* lpc_SendHostResponse(). <slot> is 0 for kernel-originated
|
|
* commands, 1 for usermode-originated commands. */
|
|
uint8_t *lpc_get_host_range(int slot);
|
|
|
|
/* Returns a pointer to the memory-mapped buffer. This buffer is writable at
|
|
* any time, and the host can read it at any time. */
|
|
uint8_t *lpc_get_memmap_range(void);
|
|
|
|
/* Sends a result code to a host command. <slot> is 0 for kernel-originated
|
|
* commands, 1 for usermode-originated commands. */
|
|
void lpc_send_host_response(int slot, int result);
|
|
|
|
/* Return true if the TOH is still set */
|
|
int lpc_keyboard_has_char(void);
|
|
|
|
/* Send a byte to host via port 0x60 and asserts IRQ if specified. */
|
|
void lpc_keyboard_put_char(uint8_t chr, int send_irq);
|
|
|
|
/* Returns non-zero if the COMx interface has received a character. */
|
|
int lpc_comx_has_char(void);
|
|
|
|
/* Returns the next character pending on the COMx interface. */
|
|
int lpc_comx_get_char(void);
|
|
|
|
/* Puts a character to the COMx LPC interface. */
|
|
void lpc_comx_put_char(int c);
|
|
|
|
#endif /* __CROS_EC_LPC_H */
|