diff options
Diffstat (limited to 'roms/u-boot/arch/arm/mach-bcmstb/include/mach')
4 files changed, 50 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/mach-bcmstb/include/mach/gpio.h b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/gpio.h new file mode 100644 index 000000000..bffecf9bd --- /dev/null +++ b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/gpio.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2018 Cisco Systems, Inc. + * + * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> + */ + +#ifndef _BCMSTB_GPIO_H +#define _BCMSTB_GPIO_H + +#endif /* _BCMSTB_GPIO_H */ diff --git a/roms/u-boot/arch/arm/mach-bcmstb/include/mach/hardware.h b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/hardware.h new file mode 100644 index 000000000..76f799d02 --- /dev/null +++ b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/hardware.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2018 Cisco Systems, Inc. + * + * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> + */ + +#ifndef _BCMSTB_HARDWARE_H +#define _BCMSTB_HARDWARE_H + +#endif /* _BCMSTB_HARDWARE_H */ diff --git a/roms/u-boot/arch/arm/mach-bcmstb/include/mach/sdhci.h b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/sdhci.h new file mode 100644 index 000000000..243783d68 --- /dev/null +++ b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/sdhci.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2018 Cisco Systems, Inc. + * + * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> + */ + +#ifndef _BCMSTB_SDHCI_H +#define _BCMSTB_SDHCI_H + +#include <linux/types.h> + +int bcmstb_sdhci_init(phys_addr_t regbase); + +#endif /* _BCMSTB_SDHCI_H */ diff --git a/roms/u-boot/arch/arm/mach-bcmstb/include/mach/timer.h b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/timer.h new file mode 100644 index 000000000..039dd664c --- /dev/null +++ b/roms/u-boot/arch/arm/mach-bcmstb/include/mach/timer.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * (C) Copyright 2018 Cisco Systems, Inc. + * + * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> + */ + +#ifndef _BCMSTB_TIMER_H +#define _BCMSTB_TIMER_H + +uint64_t get_ticks(void); + +#endif /* _BCMSTB_TIMER_H */ |