diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/arm/mach-bcmstb/include/mach | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
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 */ |