-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: generic: Add support for MIPSfpga
Add support for the MIPSfpga platform to generic kernel. Signed-off-by: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/15846/ [jhogan@kernel.org: Use separate board-xilfpga.its.S. Add 32r2 and little endian requires to board-xilfpga.config] Signed-off-by: James Hogan <jhogan@kernel.org>
- Loading branch information
Zubair Lutfullah Kakakhel
authored and
James Hogan
committed
Nov 8, 2017
1 parent
04d8405
commit b35565b
Showing
5 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# require CONFIG_CPU_MIPS32_R2=y | ||
# require CONFIG_CPU_LITTLE_ENDIAN=y | ||
|
||
CONFIG_SERIAL_8250=y | ||
CONFIG_SERIAL_8250_CONSOLE=y | ||
CONFIG_SERIAL_OF_PLATFORM=y | ||
CONFIG_GPIO_SYSFS=y | ||
CONFIG_GPIO_XILINX=y | ||
CONFIG_PANIC_ON_OOPS=y | ||
CONFIG_FIT_IMAGE_FDT_XILFPGA=y | ||
CONFIG_I2C=y | ||
CONFIG_I2C_CHARDEV=y | ||
CONFIG_I2C_XILINX=y | ||
CONFIG_SENSORS_ADT7410=y | ||
CONFIG_TMPFS=y | ||
CONFIG_NET=y | ||
CONFIG_PACKET=y | ||
CONFIG_UNIX=y | ||
CONFIG_INET=y | ||
CONFIG_NETDEVICES=y | ||
CONFIG_XILINX_EMACLITE=y | ||
CONFIG_SMSC_PHY=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/ { | ||
images { | ||
fdt@xilfpga { | ||
description = "MIPSfpga (xilfpga) Device Tree"; | ||
data = /incbin/("boot/dts/xilfpga/nexys4ddr.dtb"); | ||
type = "flat_dt"; | ||
arch = "mips"; | ||
compression = "none"; | ||
hash@0 { | ||
algo = "sha1"; | ||
}; | ||
}; | ||
}; | ||
|
||
configurations { | ||
conf@xilfpga { | ||
description = "MIPSfpga Linux kernel"; | ||
kernel = "kernel@0"; | ||
fdt = "fdt@xilfpga"; | ||
}; | ||
}; | ||
}; |