mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
ARM: tegra: Move includes to include/soc/tegra
In order to not clutter the include/linux directory with SoC specific headers, move the Tegra-specific headers out into a separate directory. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
7171511eae
commit
306a7f9139
@ -23,7 +23,8 @@
|
||||
#include <linux/export.h>
|
||||
#include <linux/random.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/tegra-soc.h>
|
||||
|
||||
#include <soc/tegra/fuse.h>
|
||||
|
||||
#include "fuse.h"
|
||||
#include "iomap.h"
|
||||
|
@ -20,7 +20,8 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include "flowctrl.h"
|
||||
#include "fuse.h"
|
||||
|
@ -29,7 +29,8 @@
|
||||
#include <linux/seq_file.h>
|
||||
#include <linux/spinlock.h>
|
||||
#include <linux/clk/tegra.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include "fuse.h"
|
||||
#include "iomap.h"
|
||||
|
@ -25,7 +25,8 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/tegra-ahb.h>
|
||||
|
||||
#include <soc/tegra/ahb.h>
|
||||
|
||||
#define DRV_NAME "tegra-ahb"
|
||||
|
||||
|
@ -20,7 +20,8 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/tegra-soc.h>
|
||||
|
||||
#include <soc/tegra/fuse.h>
|
||||
|
||||
#include "clk.h"
|
||||
|
||||
|
@ -22,8 +22,11 @@
|
||||
#include <linux/of.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/clk/tegra.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include <dt-bindings/clock/tegra30-car.h>
|
||||
|
||||
#include "clk.h"
|
||||
#include "clk-id.h"
|
||||
|
||||
|
@ -19,7 +19,8 @@
|
||||
#include <linux/of.h>
|
||||
#include <linux/clk/tegra.h>
|
||||
#include <linux/reset-controller.h>
|
||||
#include <linux/tegra-soc.h>
|
||||
|
||||
#include <soc/tegra/fuse.h>
|
||||
|
||||
#include "clk.h"
|
||||
|
||||
|
@ -12,7 +12,8 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/reset.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include "drm.h"
|
||||
#include "gem.h"
|
||||
|
@ -11,7 +11,8 @@
|
||||
#include <linux/io.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/reset.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include <drm/drm_dp_helper.h>
|
||||
|
||||
|
@ -35,7 +35,8 @@
|
||||
#include <linux/of_iommu.h>
|
||||
#include <linux/debugfs.h>
|
||||
#include <linux/seq_file.h>
|
||||
#include <linux/tegra-ahb.h>
|
||||
|
||||
#include <soc/tegra/ahb.h>
|
||||
|
||||
#include <asm/page.h>
|
||||
#include <asm/cacheflush.h>
|
||||
|
@ -41,11 +41,12 @@
|
||||
#include <linux/reset.h>
|
||||
#include <linux/sizes.h>
|
||||
#include <linux/slab.h>
|
||||
#include <linux/tegra-cpuidle.h>
|
||||
#include <linux/tegra-powergate.h>
|
||||
#include <linux/vmalloc.h>
|
||||
#include <linux/regulator/consumer.h>
|
||||
|
||||
#include <soc/tegra/cpuidle.h>
|
||||
#include <soc/tegra/powergate.h>
|
||||
|
||||
#include <asm/mach/irq.h>
|
||||
#include <asm/mach/map.h>
|
||||
#include <asm/mach/pci.h>
|
||||
|
@ -11,9 +11,9 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_AHB_H__
|
||||
#define __LINUX_AHB_H__
|
||||
#ifndef __SOC_TEGRA_AHB_H__
|
||||
#define __SOC_TEGRA_AHB_H__
|
||||
|
||||
extern int tegra_ahb_enable_smmu(struct device_node *ahb);
|
||||
|
||||
#endif /* __LINUX_AHB_H__ */
|
||||
#endif /* __SOC_TEGRA_AHB_H__ */
|
@ -11,8 +11,8 @@
|
||||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_TEGRA_CPUIDLE_H__
|
||||
#define __LINUX_TEGRA_CPUIDLE_H__
|
||||
#ifndef __SOC_TEGRA_CPUIDLE_H__
|
||||
#define __SOC_TEGRA_CPUIDLE_H__
|
||||
|
||||
#ifdef CONFIG_CPU_IDLE
|
||||
void tegra_cpuidle_pcie_irqs_in_use(void);
|
||||
@ -22,4 +22,4 @@ static inline void tegra_cpuidle_pcie_irqs_in_use(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
#endif /* __SOC_TEGRA_CPUIDLE_H__ */
|
@ -14,9 +14,9 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __LINUX_TEGRA_SOC_H_
|
||||
#define __LINUX_TEGRA_SOC_H_
|
||||
#ifndef __SOC_TEGRA_FUSE_H__
|
||||
#define __SOC_TEGRA_FUSE_H__
|
||||
|
||||
u32 tegra_read_chipid(void);
|
||||
|
||||
#endif /* __LINUX_TEGRA_SOC_H_ */
|
||||
#endif /* __SOC_TEGRA_FUSE_H__ */
|
@ -15,8 +15,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _MACH_TEGRA_POWERGATE_H_
|
||||
#define _MACH_TEGRA_POWERGATE_H_
|
||||
#ifndef __SOC_TEGRA_POWERGATE_H__
|
||||
#define __SOC_TEGRA_POWERGATE_H__
|
||||
|
||||
struct clk;
|
||||
struct reset_control;
|
||||
@ -131,4 +131,4 @@ static inline int tegra_io_rail_power_off(int id)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _MACH_TEGRA_POWERGATE_H_ */
|
||||
#endif /* __SOC_TEGRA_POWERGATE_H__ */
|
Loading…
Reference in New Issue
Block a user