forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
soc: aspeed: Add LPC mailbox support
The LPC mailbox controller consists of multiple general registers for the communication between the Host and the BMC. The interrupts for data update signaling are also introduced. Signed-off-by: Chia-Wei Wang <chiawei_wang@aspeedtech.com>
- Loading branch information
1 parent
61fbc42
commit 72c5a69dc779f5b4af59eb6d47d0e1086be814af
Showing
3 changed files
with
430 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| # SPDX-License-Identifier: GPL-2.0-only | ||
| obj-$(CONFIG_ASPEED_LPC_CTRL) += aspeed-lpc-ctrl.o | ||
| obj-$(CONFIG_ASPEED_LPC_SNOOP) += aspeed-lpc-snoop.o | ||
| obj-$(CONFIG_ASPEED_P2A_CTRL) += aspeed-p2a-ctrl.o | ||
| obj-$(CONFIG_ASPEED_SOCINFO) += aspeed-socinfo.o | ||
| obj-$(CONFIG_ASPEED_LPC_CTRL) += aspeed-lpc-ctrl.o | ||
| obj-$(CONFIG_ASPEED_LPC_SNOOP) += aspeed-lpc-snoop.o | ||
| obj-$(CONFIG_ASPEED_LPC_MAILBOX) += aspeed-lpc-mbox.o | ||
| obj-$(CONFIG_ASPEED_P2A_CTRL) += aspeed-p2a-ctrl.o | ||
| obj-$(CONFIG_ASPEED_SOCINFO) += aspeed-socinfo.o |
Oops, something went wrong.