From ceb89fb45427ea4f01fd46eba7f6fe2663351848 Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Wed, 20 Mar 2019 20:38:00 +0200 Subject: arch/ppc64: Add stubs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The work may be incomplete, we only have an emulation power8 at the moment in the tree. Change-Id: Icdaa0995c8610dcc636923cc79b8455dfaeaa057 Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/31996 Tested-by: build bot (Jenkins) Reviewed-by: Timothy Pearson --- src/arch/ppc64/include/arch/mmio.h | 53 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 src/arch/ppc64/include/arch/mmio.h (limited to 'src/arch/ppc64') diff --git a/src/arch/ppc64/include/arch/mmio.h b/src/arch/ppc64/include/arch/mmio.h new file mode 100644 index 0000000000..8ffb81691a --- /dev/null +++ b/src/arch/ppc64/include/arch/mmio.h @@ -0,0 +1,53 @@ +/* + * This file is part of the coreboot project. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#ifndef __ARCH_MMIO_H__ +#define __ARCH_MMIO_H__ + +#include + +/* NOTE: These are just stubs; if the architecture requires special + * care to avoid posted writes or cachelines, it is not yet done here. + */ + +static inline uint8_t read8(const volatile void *addr) +{ + return *(volatile uint8_t *)addr; +} + +static inline uint16_t read16(const volatile void *addr) +{ + return *(volatile uint16_t *)addr; +} + +static inline uint32_t read32(const volatile void *addr) +{ + return *(volatile uint32_t *)addr; +} + +static inline void write8(volatile void *addr, uint8_t val) +{ + *(volatile uint8_t *)addr = val; +} + +static inline void write16(volatile void *addr, uint16_t val) +{ + *(volatile uint16_t *)addr = val; +} + +static inline void write32(volatile void *addr, uint32_t val) +{ + *(volatile uint32_t *)addr = val; +} + +#endif /* __ARCH_MMIO_H__ */ -- cgit v1.2.3