diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-01-04 16:11:50 +0100 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-01-06 14:02:58 +0000 |
commit | 085a2268083cfe1d22f696c9070726dcf2dc160f (patch) | |
tree | 7ee20eb15d7c6ad9dfa66f2895573af5e90d3fc5 /src/superio/fintek/common | |
parent | 89393d633d70b9393af5b1c74af95c5e24bd99b0 (diff) |
superio/*: Link early initialization into bootblock
This allows to set up the SuperIO in the C_ENVIRONMENT_BOOTBLOCK
bootblocks. It is likely unnecessary to do this in verstage.
This also renames COMMON_ROMSTAGE to COMMON_PRE_RAM.
Change-Id: I3d999611baa1e79c79fe6b1f01822ebaa5f85daf
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/30672
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/superio/fintek/common')
-rw-r--r-- | src/superio/fintek/common/Kconfig | 2 | ||||
-rw-r--r-- | src/superio/fintek/common/fintek.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/superio/fintek/common/Kconfig b/src/superio/fintek/common/Kconfig index c9e73e5e89..22fe82bd2a 100644 --- a/src/superio/fintek/common/Kconfig +++ b/src/superio/fintek/common/Kconfig @@ -16,5 +16,5 @@ # Generic Fintek romstage driver - Just enough UART initialisation code for # romstage. -config SUPERIO_FINTEK_COMMON_ROMSTAGE +config SUPERIO_FINTEK_COMMON_PRE_RAM bool diff --git a/src/superio/fintek/common/fintek.h b/src/superio/fintek/common/fintek.h index e083278e8e..7ad08ea30a 100644 --- a/src/superio/fintek/common/fintek.h +++ b/src/superio/fintek/common/fintek.h @@ -14,12 +14,12 @@ * GNU General Public License for more details. */ -#ifndef SUPERIO_FINTEK_COMMON_ROMSTAGE_H -#define SUPERIO_FINTEK_COMMON_ROMSTAGE_H +#ifndef SUPERIO_FINTEK_COMMON_PRE_RAM_H +#define SUPERIO_FINTEK_COMMON_PRE_RAM_H #include <arch/io.h> #include <stdint.h> void fintek_enable_serial(pnp_devfn_t dev, u16 iobase); -#endif /* SUPERIO_FINTEK_COMMON_ROMSTAGE_H */ +#endif /* SUPERIO_FINTEK_COMMON_PRE_RAM_H */ |