mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
fbe0fae601
EyeQ6H (or “High”) is an other SoC from Mobileye still based on the MIPS I6500 architecture as the EyeQ5. The 2 clusters of this SoC contains 4 cores which are capable of running 4 threads. Besides this, it features multiple controllers such as the classic UART, high speed I2C, SPI, as well as CAN-FD, PCIe Gen4, Octal/Quad SPI Flash interface, Gigabit Ethernet, MIPI CSI-2, MIPI DSI, and eMMC 5.1. It also includes a Hardware Security Module, Functional Safety Hardware, and video encoders and more. This commit provides the infrastructure to build a kernel running on EyeQ6H SoC. For now the support is limited and only one CPU core is running. Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com> Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17 lines
567 B
Plaintext
17 lines
567 B
Plaintext
#
|
|
# Copyright (C) 2016 Imagination Technologies
|
|
# Author: Paul Burton <paul.burton@mips.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by the
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
# option) any later version.
|
|
#
|
|
|
|
load-$(CONFIG_MACH_EYEQ5) = 0xa800000808000000
|
|
load-$(CONFIG_MACH_EYEQ6H) = 0xa800000100800000
|
|
all-$(CONFIG_MACH_EYEQ5) += vmlinux.gz.itb
|
|
|
|
its-y := vmlinux.its.S
|
|
its-$(CONFIG_FIT_IMAGE_FDT_EPM5) += board-epm5.its.S
|