mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
af93082760
Move arch/arm/include/asm/arch-at91/* -> arch/arm/mach-at91/include/mach/* Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Andreas Bießmann <andreas.devel@googlemail.com>
38 lines
1,016 B
C
38 lines
1,016 B
C
/*
|
|
* (C) Copyright 2007-2008
|
|
* Stelian Pop <stelian@popies.net>
|
|
* Lead Tech Design <www.leadtechdesign.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef AT91_COMMON_H
|
|
#define AT91_COMMON_H
|
|
|
|
void at91_can_hw_init(void);
|
|
void at91_gmac_hw_init(void);
|
|
void at91_macb_hw_init(void);
|
|
void at91_mci_hw_init(void);
|
|
void at91_serial0_hw_init(void);
|
|
void at91_serial1_hw_init(void);
|
|
void at91_serial2_hw_init(void);
|
|
void at91_seriald_hw_init(void);
|
|
void at91_spi0_hw_init(unsigned long cs_mask);
|
|
void at91_spi1_hw_init(unsigned long cs_mask);
|
|
void at91_udp_hw_init(void);
|
|
void at91_uhp_hw_init(void);
|
|
void at91_lcd_hw_init(void);
|
|
void at91_plla_init(u32 pllar);
|
|
void at91_pllb_init(u32 pllar);
|
|
void at91_mck_init(u32 mckr);
|
|
void at91_pmc_init(void);
|
|
void mem_init(void);
|
|
void at91_phy_reset(void);
|
|
void at91_sdram_hw_init(void);
|
|
void at91_mck_init(u32 mckr);
|
|
void at91_spl_board_init(void);
|
|
void at91_disable_wdt(void);
|
|
void matrix_init(void);
|
|
void redirect_int_from_saic_to_aic(void);
|
|
|
|
#endif /* AT91_COMMON_H */
|