summaryrefslogtreecommitdiff
path: root/src/ec/dell/mec5055/mec5055.h
blob: 712057c26f5e43ecd6c12a52aa3294afe12b1ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef _EC_DELL_MEC5055_H_
#define _EC_DELL_MEC5055_H_

#include <stddef.h>
#include <stdint.h>

int mec5055_ec_command_0(u8 *buf, u8 cmd, int argc);
int mec5055_ec_command_1(u8 cmd, const u8 *cmd_buf, int argc, u8 *res_buf, int res_size);
void mec5055_early_init(void);
void mec5055_ec_acpi_enable(void);

#endif