fsp2.c (de4fb176622d54a82ea3ceb7362392aaf5ff0b5a) | fsp2.c (e6f6390ab7b9d649c13de2c8a591bce61a10ec3b) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * FSP-2 board specific routines 4 * 5 * Based on earlier code: 6 * Matt Porter <mporter@kernel.crashing.org> 7 * Copyright 2002-2005 MontaVista Software Inc. 8 * 9 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> 10 * Copyright (c) 2003-2005 Zultys Technologies 11 * 12 * Rewritten and ported to the merged powerpc tree: 13 * Copyright 2007 David Gibson <dwg@au1.ibm.com>, IBM Corporation. 14 */ 15 16#include <linux/init.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * FSP-2 board specific routines 4 * 5 * Based on earlier code: 6 * Matt Porter <mporter@kernel.crashing.org> 7 * Copyright 2002-2005 MontaVista Software Inc. 8 * 9 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> 10 * Copyright (c) 2003-2005 Zultys Technologies 11 * 12 * Rewritten and ported to the merged powerpc tree: 13 * Copyright 2007 David Gibson <dwg@au1.ibm.com>, IBM Corporation. 14 */ 15 16#include <linux/init.h> |
17#include <linux/of_fdt.h> |
|
17#include <linux/of_platform.h> 18#include <linux/rtc.h> 19 20#include <asm/machdep.h> | 18#include <linux/of_platform.h> 19#include <linux/rtc.h> 20 21#include <asm/machdep.h> |
21#include <asm/prom.h> | |
22#include <asm/udbg.h> 23#include <asm/time.h> 24#include <asm/uic.h> 25#include <asm/ppc4xx.h> 26#include <asm/dcr.h> 27#include <linux/interrupt.h> 28#include <linux/of_irq.h> 29#include "fsp2.h" --- 288 unchanged lines hidden --- | 22#include <asm/udbg.h> 23#include <asm/time.h> 24#include <asm/uic.h> 25#include <asm/ppc4xx.h> 26#include <asm/dcr.h> 27#include <linux/interrupt.h> 28#include <linux/of_irq.h> 29#include "fsp2.h" --- 288 unchanged lines hidden --- |