Files
system76-coreboot/src/superio/aspeed/ast2400/ast2400.h
Michael Niewöhner e5c1aa69c7 superio/aspeed/ast2400: rename SWAK to SWC to match the datasheet
The datasheet uses "SWC" as shortcut for "System Wake-up Controller",
thus rename it in the code.

Change-Id: I8b3a14946e37f805d1c4e3df343dfcd7f67f6dc8
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39095
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
2020-02-25 10:11:55 +00:00

18 lines
582 B
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */
#ifndef SUPERIO_ASPEED_AST2400_H
#define SUPERIO_ASPEED_AST2400_H
#define AST2400_SUART1 0x2 /* Com1 */
#define AST2400_SUART2 0x3 /* Com2 */
#define AST2400_SWC 0x4 /* System Wake-Up Control */
#define AST2400_KBC 0x5 /* Keyboard controller */
#define AST2400_GPIO 0x7 /* GPIO */
#define AST2400_SUART3 0xB /* Com3 */
#define AST2400_SUART4 0xC /* Com4 */
#define AST2400_ILPC2AHB 0xD /* LPC 2 AHB */
#define AST2400_MAILBOX 0xE /* Mailbox */
#endif /* SUPERIO_ASPEED_AST2400_H */