mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-26 15:28:50 +00:00

In order to make it easier to move on to dropping common.h from code directly, remove common.h inclusion from the rest of the header file which had been including it. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
18 lines
555 B
C
18 lines
555 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2018 Microsemi Corporation
|
|
*/
|
|
|
|
enum mscc_regs_qs {
|
|
MSCC_QS_XTR_RD,
|
|
MSCC_QS_XTR_FLUSH,
|
|
MSCC_QS_XTR_DATA_PRESENT,
|
|
MSCC_QS_INJ_WR,
|
|
MSCC_QS_INJ_CTRL,
|
|
};
|
|
|
|
int mscc_send(void __iomem *regs, const unsigned long *mscc_qs_offset,
|
|
u32 *ifh, size_t ifh_len, u32 *buff, size_t buff_len);
|
|
int mscc_recv(void __iomem *regs, const unsigned long *mscc_qs_offset,
|
|
u32 *rxbuf, size_t ifh_len, bool byte_swap);
|
|
void mscc_flush(void __iomem *regs, const unsigned long *mscc_qs_offset);
|