You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge tag 'powerpc-4.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
Pull powerpc updates from Michael Ellerman:
- support "hybrid" iommu/direct DMA ops for coherent_mask < dma_mask
from Benjamin Herrenschmidt
- EEH fixes for SRIOV from Gavin
- introduce rtas_get_sensor_fast() for IRQ handlers from Thomas Huth
- use hardware RNG for arch_get_random_seed_* not arch_get_random_*
from Paul Mackerras
- seccomp filter support from Michael Ellerman
- opal_cec_reboot2() handling for HMIs & machine checks from Mahesh
Salgaonkar
- add powerpc timebase as a trace clock source from Naveen N. Rao
- misc cleanups in the xmon, signal & SLB code from Anshuman Khandual
- add an inline function to update POWER8 HID0 from Gautham R. Shenoy
- fix pte_pagesize_index() crash on 4K w/64K hash from Michael Ellerman
- drop support for 64K local store on 4K kernels from Michael Ellerman
- move dma_get_required_mask() from pnv_phb to pci_controller_ops from
Andrew Donnellan
- initialize distance lookup table from drconf path from Nikunj A
Dadhania
- enable RTC class support from Vaibhav Jain
- disable automatically blocked PCI config from Gavin Shan
- add LEDs driver for PowerNV platform from Vasant Hegde
- fix endianness issues in the HVSI driver from Laurent Dufour
- kexec endian fixes from Samuel Mendoza-Jonas
- fix corrupted pdn list from Gavin Shan
- fix fenced PHB caused by eeh_slot_error_detail() from Gavin Shan
- Freescale updates from Scott: Highlights include 32-bit memcpy/memset
optimizations, checksum optimizations, 85xx config fragments and
updates, device tree updates, e6500 fixes for non-SMP, and misc
cleanup and minor fixes.
- a ton of cxl updates & fixes:
- add explicit precision specifiers from Rasmus Villemoes
- use more common format specifier from Rasmus Villemoes
- destroy cxl_adapter_idr on module_exit from Johannes Thumshirn
- destroy afu->contexts_idr on release of an afu from Johannes
Thumshirn
- compile with -Werror from Daniel Axtens
- EEH support from Daniel Axtens
- plug irq_bitmap getting leaked in cxl_context from Vaibhav Jain
- add alternate MMIO error handling from Ian Munsie
- allow release of contexts which have been OPENED but not STARTED
from Andrew Donnellan
- remove use of macro DEFINE_PCI_DEVICE_TABLE from Vaishali Thakkar
- release irqs if memory allocation fails from Vaibhav Jain
- remove racy attempt to force EEH invocation in reset from Daniel
Axtens
- fix + cleanup error paths in cxl_dev_context_init from Ian Munsie
- fix force unmapping mmaps of contexts allocated through the kernel
api from Ian Munsie
- set up and enable PSL Timebase from Philippe Bergheaud
* tag 'powerpc-4.3-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (140 commits)
cxl: Set up and enable PSL Timebase
cxl: Fix force unmapping mmaps of contexts allocated through the kernel api
cxl: Fix + cleanup error paths in cxl_dev_context_init
powerpc/eeh: Fix fenced PHB caused by eeh_slot_error_detail()
powerpc/pseries: Cleanup on pci_dn_reconfig_notifier()
powerpc/pseries: Fix corrupted pdn list
powerpc/powernv: Enable LEDS support
powerpc/iommu: Set default DMA offset in dma_dev_setup
cxl: Remove racy attempt to force EEH invocation in reset
cxl: Release irqs if memory allocation fails
cxl: Remove use of macro DEFINE_PCI_DEVICE_TABLE
powerpc/powernv: Fix mis-merge of OPAL support for LEDS driver
powerpc/powernv: Reset HILE before kexec_sequence()
powerpc/kexec: Reset secondary cpu endianness before kexec
powerpc/hvsi: Fix endianness issues in the HVSI driver
leds/powernv: Add driver for PowerNV platform
powerpc/powernv: Create LED platform device
powerpc/powernv: Add OPAL interfaces for accessing and modifying system LED states
powerpc/powernv: Fix the log message when disabling VF
cxl: Allow release of contexts which have been OPENED but not STARTED
...
This commit is contained in:
@@ -223,3 +223,13 @@ Description: write only
|
|||||||
Writing 1 will issue a PERST to card which may cause the card
|
Writing 1 will issue a PERST to card which may cause the card
|
||||||
to reload the FPGA depending on load_image_on_perst.
|
to reload the FPGA depending on load_image_on_perst.
|
||||||
Users: https://github.com/ibm-capi/libcxl
|
Users: https://github.com/ibm-capi/libcxl
|
||||||
|
|
||||||
|
What: /sys/class/cxl/<card>/perst_reloads_same_image
|
||||||
|
Date: July 2015
|
||||||
|
Contact: linuxppc-dev@lists.ozlabs.org
|
||||||
|
Description: read/write
|
||||||
|
Trust that when an image is reloaded via PERST, it will not
|
||||||
|
have changed.
|
||||||
|
0 = don't trust, the image may be different (default)
|
||||||
|
1 = trust that the image will not change.
|
||||||
|
Users: https://github.com/ibm-capi/libcxl
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
Device Tree binding for LEDs on IBM Power Systems
|
||||||
|
-------------------------------------------------
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible : Should be "ibm,opal-v3-led".
|
||||||
|
- led-mode : Should be "lightpath" or "guidinglight".
|
||||||
|
|
||||||
|
Each location code of FRU/Enclosure must be expressed in the
|
||||||
|
form of a sub-node.
|
||||||
|
|
||||||
|
Required properties for the sub nodes:
|
||||||
|
- led-types : Supported LED types (attention/identify/fault) provided
|
||||||
|
in the form of string array.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "ibm,opal-v3-led";
|
||||||
|
led-mode = "lightpath";
|
||||||
|
|
||||||
|
U78C9.001.RST0027-P1-C1 {
|
||||||
|
led-types = "identify", "fault";
|
||||||
|
};
|
||||||
|
...
|
||||||
|
...
|
||||||
|
};
|
||||||
@@ -18,6 +18,8 @@ Properties:
|
|||||||
interrupt (NAND_EVTER_STAT). If there is only one,
|
interrupt (NAND_EVTER_STAT). If there is only one,
|
||||||
that interrupt reports both types of event.
|
that interrupt reports both types of event.
|
||||||
|
|
||||||
|
- little-endian : If this property is absent, the big-endian mode will
|
||||||
|
be in use as default for registers.
|
||||||
|
|
||||||
- ranges : Each range corresponds to a single chipselect, and covers
|
- ranges : Each range corresponds to a single chipselect, and covers
|
||||||
the entire access window as configured.
|
the entire access window as configured.
|
||||||
@@ -34,6 +36,7 @@ Example:
|
|||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
reg = <0x0 0xffe1e000 0 0x2000>;
|
reg = <0x0 0xffe1e000 0 0x2000>;
|
||||||
interrupts = <16 2 19 2>;
|
interrupts = <16 2 19 2>;
|
||||||
|
little-endian;
|
||||||
|
|
||||||
/* NOR, NAND Flashes and CPLD on board */
|
/* NOR, NAND Flashes and CPLD on board */
|
||||||
ranges = <0x0 0x0 0x0 0xee000000 0x02000000
|
ranges = <0x0 0x0 0x0 0xee000000 0x02000000
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
Freescale Supplement configuration unit (SCFG)
|
||||||
|
|
||||||
|
SCFG is the supplemental configuration unit, that provides SoC specific
|
||||||
|
configuration and status registers for the chip. Such as getting PEX port
|
||||||
|
status.
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
|
||||||
|
- compatible: should be "fsl,<chip>-scfg"
|
||||||
|
- reg: should contain base address and length of SCFG memory-mapped
|
||||||
|
registers
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
scfg: global-utilities@fc000 {
|
||||||
|
compatible = "fsl,t1040-scfg";
|
||||||
|
reg = <0xfc000 0x1000>;
|
||||||
|
};
|
||||||
@@ -346,6 +346,11 @@ of ftrace. Here is a list of some of the key files:
|
|||||||
x86-tsc: Architectures may define their own clocks. For
|
x86-tsc: Architectures may define their own clocks. For
|
||||||
example, x86 uses its own TSC cycle clock here.
|
example, x86 uses its own TSC cycle clock here.
|
||||||
|
|
||||||
|
ppc-tb: This uses the powerpc timebase register value.
|
||||||
|
This is in sync across CPUs and can also be used
|
||||||
|
to correlate events across hypervisor/guest if
|
||||||
|
tb_offset is known.
|
||||||
|
|
||||||
To set a clock, simply echo the clock name into this file.
|
To set a clock, simply echo the clock name into this file.
|
||||||
|
|
||||||
echo global > trace_clock
|
echo global > trace_clock
|
||||||
|
|||||||
+11
-11
@@ -82,6 +82,9 @@ config GENERIC_HWEIGHT
|
|||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config ARCH_HAS_DMA_SET_COHERENT_MASK
|
||||||
|
bool
|
||||||
|
|
||||||
config PPC
|
config PPC
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
@@ -155,6 +158,8 @@ config PPC
|
|||||||
select HAVE_PERF_EVENTS_NMI if PPC64
|
select HAVE_PERF_EVENTS_NMI if PPC64
|
||||||
select EDAC_SUPPORT
|
select EDAC_SUPPORT
|
||||||
select EDAC_ATOMIC_SCRUB
|
select EDAC_ATOMIC_SCRUB
|
||||||
|
select ARCH_HAS_DMA_SET_COHERENT_MASK
|
||||||
|
select HAVE_ARCH_SECCOMP_FILTER
|
||||||
|
|
||||||
config GENERIC_CSUM
|
config GENERIC_CSUM
|
||||||
def_bool CPU_LITTLE_ENDIAN
|
def_bool CPU_LITTLE_ENDIAN
|
||||||
@@ -514,11 +519,6 @@ config NODES_SPAN_OTHER_NODES
|
|||||||
def_bool y
|
def_bool y
|
||||||
depends on NEED_MULTIPLE_NODES
|
depends on NEED_MULTIPLE_NODES
|
||||||
|
|
||||||
config PPC_HAS_HASH_64K
|
|
||||||
bool
|
|
||||||
depends on PPC64
|
|
||||||
default n
|
|
||||||
|
|
||||||
config STDBINUTILS
|
config STDBINUTILS
|
||||||
bool "Using standard binutils settings"
|
bool "Using standard binutils settings"
|
||||||
depends on 44x
|
depends on 44x
|
||||||
@@ -560,16 +560,16 @@ config PPC_4K_PAGES
|
|||||||
bool "4k page size"
|
bool "4k page size"
|
||||||
|
|
||||||
config PPC_16K_PAGES
|
config PPC_16K_PAGES
|
||||||
bool "16k page size" if 44x || PPC_8xx
|
bool "16k page size"
|
||||||
|
depends on 44x || PPC_8xx
|
||||||
|
|
||||||
config PPC_64K_PAGES
|
config PPC_64K_PAGES
|
||||||
bool "64k page size" if 44x || PPC_STD_MMU_64 || PPC_BOOK3E_64
|
bool "64k page size"
|
||||||
depends on !PPC_FSL_BOOK3E
|
depends on !PPC_FSL_BOOK3E && (44x || PPC_STD_MMU_64 || PPC_BOOK3E_64)
|
||||||
select PPC_HAS_HASH_64K if PPC_STD_MMU_64
|
|
||||||
|
|
||||||
config PPC_256K_PAGES
|
config PPC_256K_PAGES
|
||||||
bool "256k page size" if 44x
|
bool "256k page size"
|
||||||
depends on !STDBINUTILS
|
depends on 44x && !STDBINUTILS
|
||||||
help
|
help
|
||||||
Make the page size 256k.
|
Make the page size 256k.
|
||||||
|
|
||||||
|
|||||||
@@ -288,6 +288,26 @@ PHONY += pseries_le_defconfig
|
|||||||
pseries_le_defconfig:
|
pseries_le_defconfig:
|
||||||
$(call merge_into_defconfig,pseries_defconfig,le)
|
$(call merge_into_defconfig,pseries_defconfig,le)
|
||||||
|
|
||||||
|
PHONY += mpc85xx_defconfig
|
||||||
|
mpc85xx_defconfig:
|
||||||
|
$(call merge_into_defconfig,mpc85xx_basic_defconfig,\
|
||||||
|
85xx-32bit 85xx-hw fsl-emb-nonhw)
|
||||||
|
|
||||||
|
PHONY += mpc85xx_smp_defconfig
|
||||||
|
mpc85xx_smp_defconfig:
|
||||||
|
$(call merge_into_defconfig,mpc85xx_basic_defconfig,\
|
||||||
|
85xx-32bit 85xx-smp 85xx-hw fsl-emb-nonhw)
|
||||||
|
|
||||||
|
PHONY += corenet32_smp_defconfig
|
||||||
|
corenet32_smp_defconfig:
|
||||||
|
$(call merge_into_defconfig,corenet_basic_defconfig,\
|
||||||
|
85xx-32bit 85xx-smp 85xx-hw fsl-emb-nonhw)
|
||||||
|
|
||||||
|
PHONY += corenet64_smp_defconfig
|
||||||
|
corenet64_smp_defconfig:
|
||||||
|
$(call merge_into_defconfig,corenet_basic_defconfig,\
|
||||||
|
85xx-64bit 85xx-smp altivec 85xx-hw fsl-emb-nonhw)
|
||||||
|
|
||||||
define archhelp
|
define archhelp
|
||||||
@echo '* zImage - Build default images selected by kernel config'
|
@echo '* zImage - Build default images selected by kernel config'
|
||||||
@echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
|
@echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)'
|
||||||
|
|||||||
@@ -175,7 +175,7 @@
|
|||||||
|
|
||||||
/include/ "pq3-gpio-0.dtsi"
|
/include/ "pq3-gpio-0.dtsi"
|
||||||
|
|
||||||
display@10000 {
|
display: display@10000 {
|
||||||
compatible = "fsl,diu", "fsl,p1022-diu";
|
compatible = "fsl,diu", "fsl,p1022-diu";
|
||||||
reg = <0x10000 1000>;
|
reg = <0x10000 1000>;
|
||||||
interrupts = <64 2 0 0>;
|
interrupts = <64 2 0 0>;
|
||||||
|
|||||||
@@ -50,6 +50,8 @@
|
|||||||
pci0 = &pci0;
|
pci0 = &pci0;
|
||||||
pci1 = &pci1;
|
pci1 = &pci1;
|
||||||
pci2 = &pci2;
|
pci2 = &pci2;
|
||||||
|
vga = &display;
|
||||||
|
display = &display;
|
||||||
};
|
};
|
||||||
|
|
||||||
cpus {
|
cpus {
|
||||||
|
|||||||
@@ -484,6 +484,11 @@
|
|||||||
reg = <0xea000 0x4000>;
|
reg = <0xea000 0x4000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
scfg: global-utilities@fc000 {
|
||||||
|
compatible = "fsl,t1040-scfg";
|
||||||
|
reg = <0xfc000 0x1000>;
|
||||||
|
};
|
||||||
|
|
||||||
/include/ "elo3-dma-0.dtsi"
|
/include/ "elo3-dma-0.dtsi"
|
||||||
/include/ "elo3-dma-1.dtsi"
|
/include/ "elo3-dma-1.dtsi"
|
||||||
/include/ "qoriq-espi-0.dtsi"
|
/include/ "qoriq-espi-0.dtsi"
|
||||||
|
|||||||
@@ -60,7 +60,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
compatible = "fsl,ifc-nand";
|
compatible = "fsl,ifc-nand";
|
||||||
reg = <0x2 0x0 0x10000>;
|
reg = <0x1 0x0 0x10000>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -99,6 +99,17 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
i2c@118100 {
|
i2c@118100 {
|
||||||
|
current-sensor@40 {
|
||||||
|
compatible = "ti,ina220";
|
||||||
|
reg = <0x40>;
|
||||||
|
shunt-resistor = <1000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
current-sensor@41 {
|
||||||
|
compatible = "ti,ina220";
|
||||||
|
reg = <0x41>;
|
||||||
|
shunt-resistor = <1000>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -114,6 +114,12 @@
|
|||||||
reg = <0x4c>;
|
reg = <0x4c>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
current-sensor@40 {
|
||||||
|
compatible = "ti,ina220";
|
||||||
|
reg = <0x40>;
|
||||||
|
shunt-resistor = <1000>;
|
||||||
|
};
|
||||||
|
|
||||||
eeprom@50 {
|
eeprom@50 {
|
||||||
compatible = "atmel,24c256";
|
compatible = "atmel,24c256";
|
||||||
reg = <0x50>;
|
reg = <0x50>;
|
||||||
|
|||||||
@@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* T1040D4RDB Device Tree Source
|
||||||
|
*
|
||||||
|
* Copyright 2015 Freescale Semiconductor Inc.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of Freescale Semiconductor nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* ALTERNATIVELY, this software may be distributed under the terms of the
|
||||||
|
* GNU General Public License ("GPL") as published by the Free Software
|
||||||
|
* Foundation, either version 2 of that License or (at your option) any
|
||||||
|
* later version.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor "AS IS" AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/include/ "fsl/t104xsi-pre.dtsi"
|
||||||
|
/include/ "t104xd4rdb.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "fsl,T1040D4RDB";
|
||||||
|
compatible = "fsl,T1040D4RDB";
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
interrupt-parent = <&mpic>;
|
||||||
|
};
|
||||||
|
|
||||||
|
/include/ "fsl/t1040si-post.dtsi"
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* T1042D4RDB Device Tree Source
|
||||||
|
*
|
||||||
|
* Copyright 2015 Freescale Semiconductor Inc.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of Freescale Semiconductor nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* ALTERNATIVELY, this software may be distributed under the terms of the
|
||||||
|
* GNU General Public License ("GPL") as published by the Free Software
|
||||||
|
* Foundation, either version 2 of that License or (at your option) any
|
||||||
|
* later version.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor "AS IS" AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/include/ "fsl/t104xsi-pre.dtsi"
|
||||||
|
/include/ "t104xd4rdb.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "fsl,T1042D4RDB";
|
||||||
|
compatible = "fsl,T1042D4RDB";
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
interrupt-parent = <&mpic>;
|
||||||
|
|
||||||
|
ifc: localbus@ffe124000 {
|
||||||
|
cpld@3,0 {
|
||||||
|
compatible = "fsl,t1040d4rdb-cpld",
|
||||||
|
"fsl,deepsleep-cpld";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/include/ "fsl/t1040si-post.dtsi"
|
||||||
@@ -0,0 +1,205 @@
|
|||||||
|
/*
|
||||||
|
* T1040D4RDB/T1042D4RDB Device Tree Source
|
||||||
|
*
|
||||||
|
* Copyright 2015 Freescale Semiconductor Inc.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of Freescale Semiconductor nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* ALTERNATIVELY, this software may be distributed under the terms of the
|
||||||
|
* GNU General Public License ("GPL") as published by the Free Software
|
||||||
|
* Foundation, either version 2 of that License or (at your option) any
|
||||||
|
* later version.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor "AS IS" AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/ {
|
||||||
|
reserved-memory {
|
||||||
|
#address-cells = <2>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
bman_fbpr: bman-fbpr {
|
||||||
|
size = <0 0x1000000>;
|
||||||
|
alignment = <0 0x1000000>;
|
||||||
|
};
|
||||||
|
qman_fqd: qman-fqd {
|
||||||
|
size = <0 0x400000>;
|
||||||
|
alignment = <0 0x400000>;
|
||||||
|
};
|
||||||
|
qman_pfdr: qman-pfdr {
|
||||||
|
size = <0 0x2000000>;
|
||||||
|
alignment = <0 0x2000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
ifc: localbus@ffe124000 {
|
||||||
|
reg = <0xf 0xfe124000 0 0x2000>;
|
||||||
|
ranges = <0 0 0xf 0xe8000000 0x08000000
|
||||||
|
2 0 0xf 0xff800000 0x00010000
|
||||||
|
3 0 0xf 0xffdf0000 0x00008000>;
|
||||||
|
|
||||||
|
nor@0,0 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "cfi-flash";
|
||||||
|
reg = <0x0 0x0 0x8000000>;
|
||||||
|
bank-width = <2>;
|
||||||
|
device-width = <1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
nand@2,0 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "fsl,ifc-nand";
|
||||||
|
reg = <0x2 0x0 0x10000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cpld@3,0 {
|
||||||
|
compatible = "fsl,t1040d4rdb-cpld";
|
||||||
|
reg = <3 0 0x300>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
device_type = "memory";
|
||||||
|
};
|
||||||
|
|
||||||
|
dcsr: dcsr@f00000000 {
|
||||||
|
ranges = <0x00000000 0xf 0x00000000 0x01072000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
bportals: bman-portals@ff4000000 {
|
||||||
|
ranges = <0x0 0xf 0xf4000000 0x2000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
qportals: qman-portals@ff6000000 {
|
||||||
|
ranges = <0x0 0xf 0xf6000000 0x2000000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
soc: soc@ffe000000 {
|
||||||
|
ranges = <0x00000000 0xf 0xfe000000 0x1000000>;
|
||||||
|
reg = <0xf 0xfe000000 0 0x00001000>;
|
||||||
|
|
||||||
|
spi@110000 {
|
||||||
|
flash@0 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
compatible = "micron,n25q512ax3";
|
||||||
|
reg = <0>;
|
||||||
|
/* input clock */
|
||||||
|
spi-max-frequency = <10000000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
i2c@118000 {
|
||||||
|
hwmon@4c {
|
||||||
|
compatible = "adi,adt7461";
|
||||||
|
reg = <0x4c>;
|
||||||
|
};
|
||||||
|
|
||||||
|
rtc@68 {
|
||||||
|
compatible = "dallas,ds1337";
|
||||||
|
reg = <0x68>;
|
||||||
|
interrupts = <0x2 0x1 0 0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c@118100 {
|
||||||
|
mux@77 {
|
||||||
|
/*
|
||||||
|
* Child nodes of mux depend on which i2c
|
||||||
|
* devices are connected via the mini PCI
|
||||||
|
* connector slot1, the mini PCI connector
|
||||||
|
* slot2, the HDMI connector, and the PEX
|
||||||
|
* slot. Systems with such devices attached
|
||||||
|
* should provide a wrapper .dts file that
|
||||||
|
* includes this one, and adds those nodes
|
||||||
|
*/
|
||||||
|
compatible = "nxp,pca9546";
|
||||||
|
reg = <0x77>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
pci0: pcie@ffe240000 {
|
||||||
|
reg = <0xf 0xfe240000 0 0x10000>;
|
||||||
|
ranges = <0x02000000 0 0xe0000000 0xc 0x0 0x0 0x10000000
|
||||||
|
0x01000000 0 0x0 0xf 0xf8000000 0x0 0x00010000>;
|
||||||
|
pcie@0 {
|
||||||
|
ranges = <0x02000000 0 0xe0000000
|
||||||
|
0x02000000 0 0xe0000000
|
||||||
|
0 0x10000000
|
||||||
|
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0 0x00010000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pci1: pcie@ffe250000 {
|
||||||
|
reg = <0xf 0xfe250000 0 0x10000>;
|
||||||
|
ranges = <0x02000000 0 0xe0000000 0xc 0x10000000 0 0x10000000
|
||||||
|
0x01000000 0 0 0xf 0xf8010000 0 0x00010000>;
|
||||||
|
pcie@0 {
|
||||||
|
ranges = <0x02000000 0 0xe0000000
|
||||||
|
0x02000000 0 0xe0000000
|
||||||
|
0 0x10000000
|
||||||
|
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0 0x00010000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pci2: pcie@ffe260000 {
|
||||||
|
reg = <0xf 0xfe260000 0 0x10000>;
|
||||||
|
ranges = <0x02000000 0 0xe0000000 0xc 0x20000000 0 0x10000000
|
||||||
|
0x01000000 0 0x00000000 0xf 0xf8020000 0 0x00010000>;
|
||||||
|
pcie@0 {
|
||||||
|
ranges = <0x02000000 0 0xe0000000
|
||||||
|
0x02000000 0 0xe0000000
|
||||||
|
0 0x10000000
|
||||||
|
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0 0x00010000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
pci3: pcie@ffe270000 {
|
||||||
|
reg = <0xf 0xfe270000 0 0x10000>;
|
||||||
|
ranges = <0x02000000 0 0xe0000000 0xc 0x30000000 0 0x10000000
|
||||||
|
0x01000000 0 0x00000000 0xf 0xf8030000 0 0x00010000>;
|
||||||
|
pcie@0 {
|
||||||
|
ranges = <0x02000000 0 0xe0000000
|
||||||
|
0x02000000 0 0xe0000000
|
||||||
|
0 0x10000000
|
||||||
|
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0x01000000 0 0x00000000
|
||||||
|
0 0x00010000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
CONFIG_HIGHMEM=y
|
||||||
|
CONFIG_KEXEC=y
|
||||||
|
CONFIG_PPC_85xx=y
|
||||||
|
CONFIG_PROC_KCORE=y
|
||||||
|
CONFIG_PHYS_64BIT=y
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
CONFIG_MATH_EMULATION=y
|
||||||
|
CONFIG_MATH_EMULATION_HW_UNIMPLEMENTED=y
|
||||||
|
CONFIG_PPC64=y
|
||||||
|
CONFIG_PPC_BOOK3E_64=y
|
||||||
@@ -0,0 +1,142 @@
|
|||||||
|
CONFIG_AQUANTIA_PHY=y
|
||||||
|
CONFIG_AT803X_PHY=y
|
||||||
|
CONFIG_ATA=y
|
||||||
|
CONFIG_BLK_DEV_SD=y
|
||||||
|
CONFIG_BLK_DEV_SR_VENDOR=y
|
||||||
|
CONFIG_BLK_DEV_SR=y
|
||||||
|
CONFIG_BROADCOM_PHY=y
|
||||||
|
CONFIG_C293_PCIE=y
|
||||||
|
CONFIG_CHR_DEV_SG=y
|
||||||
|
CONFIG_CHR_DEV_ST=y
|
||||||
|
CONFIG_CICADA_PHY=y
|
||||||
|
CONFIG_CLK_QORIQ=y
|
||||||
|
CONFIG_CRYPTO_DEV_FSL_CAAM=y
|
||||||
|
CONFIG_CRYPTO_DEV_TALITOS=y
|
||||||
|
CONFIG_DAVICOM_PHY=y
|
||||||
|
CONFIG_DMADEVICES=y
|
||||||
|
CONFIG_E1000E=y
|
||||||
|
CONFIG_E1000=y
|
||||||
|
CONFIG_EDAC_MM_EDAC=y
|
||||||
|
CONFIG_EDAC_MPC85XX=y
|
||||||
|
CONFIG_EDAC=y
|
||||||
|
CONFIG_EEPROM_AT24=y
|
||||||
|
CONFIG_EEPROM_LEGACY=y
|
||||||
|
CONFIG_FB_FSL_DIU=y
|
||||||
|
CONFIG_FS_ENET=y
|
||||||
|
CONFIG_FSL_CORENET_CF=y
|
||||||
|
CONFIG_FSL_DMA=y
|
||||||
|
CONFIG_FSL_HV_MANAGER=y
|
||||||
|
CONFIG_FSL_PQ_MDIO=y
|
||||||
|
CONFIG_FSL_RIO=y
|
||||||
|
CONFIG_FSL_XGMAC_MDIO=y
|
||||||
|
CONFIG_GIANFAR=y
|
||||||
|
CONFIG_GPIO_MPC8XXX=y
|
||||||
|
CONFIG_HID_A4TECH=y
|
||||||
|
CONFIG_HID_APPLE=y
|
||||||
|
CONFIG_HID_BELKIN=y
|
||||||
|
CONFIG_HID_CHERRY=y
|
||||||
|
CONFIG_HID_CHICONY=y
|
||||||
|
CONFIG_HID_CYPRESS=y
|
||||||
|
CONFIG_HID_EZKEY=y
|
||||||
|
CONFIG_HID_GYRATION=y
|
||||||
|
CONFIG_HID_LOGITECH=y
|
||||||
|
CONFIG_HID_MICROSOFT=y
|
||||||
|
CONFIG_HID_MONTEREY=y
|
||||||
|
CONFIG_HID_PANTHERLORD=y
|
||||||
|
CONFIG_HID_PETALYNX=y
|
||||||
|
CONFIG_HID_SAMSUNG=y
|
||||||
|
CONFIG_HID_SUNPLUS=y
|
||||||
|
CONFIG_I2C_CHARDEV=y
|
||||||
|
CONFIG_I2C_CPM=m
|
||||||
|
CONFIG_I2C_MPC=y
|
||||||
|
CONFIG_I2C_MUX_PCA954x=y
|
||||||
|
CONFIG_I2C_MUX=y
|
||||||
|
CONFIG_I2C=y
|
||||||
|
CONFIG_IGB=y
|
||||||
|
CONFIG_INPUT_FF_MEMLESS=m
|
||||||
|
# CONFIG_INPUT_KEYBOARD is not set
|
||||||
|
# CONFIG_INPUT_MOUSEDEV is not set
|
||||||
|
# CONFIG_INPUT_MOUSE is not set
|
||||||
|
CONFIG_MARVELL_PHY=y
|
||||||
|
CONFIG_MDIO_BUS_MUX_GPIO=y
|
||||||
|
CONFIG_MDIO_BUS_MUX_MMIOREG=y
|
||||||
|
CONFIG_MMC_SDHCI_OF_ESDHC=y
|
||||||
|
CONFIG_MMC_SDHCI_PLTFM=y
|
||||||
|
CONFIG_MMC_SDHCI=y
|
||||||
|
CONFIG_MMC=y
|
||||||
|
CONFIG_MTD_BLOCK=y
|
||||||
|
CONFIG_MTD_CFI_AMDSTD=y
|
||||||
|
CONFIG_MTD_CFI_INTELEXT=y
|
||||||
|
CONFIG_MTD_CFI=y
|
||||||
|
CONFIG_MTD_CMDLINE_PARTS=y
|
||||||
|
CONFIG_MTD_M25P80=y
|
||||||
|
CONFIG_MTD_NAND_FSL_ELBC=y
|
||||||
|
CONFIG_MTD_NAND_FSL_IFC=y
|
||||||
|
CONFIG_MTD_NAND=y
|
||||||
|
CONFIG_MTD_PHYSMAP_OF=y
|
||||||
|
CONFIG_MTD_PHYSMAP=y
|
||||||
|
CONFIG_MTD_PLATRAM=y
|
||||||
|
CONFIG_MTD_SPI_NOR=y
|
||||||
|
CONFIG_NETDEVICES=y
|
||||||
|
CONFIG_NVRAM=y
|
||||||
|
CONFIG_PATA_ALI=y
|
||||||
|
CONFIG_PATA_SIL680=y
|
||||||
|
CONFIG_PATA_VIA=y
|
||||||
|
# CONFIG_PCIEASPM is not set
|
||||||
|
CONFIG_PCIEPORTBUS=y
|
||||||
|
CONFIG_PCI_MSI=y
|
||||||
|
CONFIG_PCI=y
|
||||||
|
CONFIG_PPC_EPAPR_HV_BYTECHAN=y
|
||||||
|
# CONFIG_PPC_OF_BOOT_TRAMPOLINE is not set
|
||||||
|
CONFIG_QE_GPIO=y
|
||||||
|
CONFIG_QUICC_ENGINE=y
|
||||||
|
CONFIG_RAPIDIO=y
|
||||||
|
CONFIG_RTC_CLASS=y
|
||||||
|
CONFIG_RTC_DRV_CMOS=y
|
||||||
|
CONFIG_RTC_DRV_DS1307=y
|
||||||
|
CONFIG_RTC_DRV_DS1374=y
|
||||||
|
CONFIG_RTC_DRV_DS3232=y
|
||||||
|
CONFIG_SATA_AHCI=y
|
||||||
|
CONFIG_SATA_FSL=y
|
||||||
|
CONFIG_SATA_SIL24=y
|
||||||
|
CONFIG_SATA_SIL=y
|
||||||
|
CONFIG_SCSI_LOGGING=y
|
||||||
|
CONFIG_SCSI_SYM53C8XX_2=y
|
||||||
|
CONFIG_SENSORS_INA2XX=y
|
||||||
|
CONFIG_SENSORS_LM90=y
|
||||||
|
CONFIG_SERIAL_8250_CONSOLE=y
|
||||||
|
CONFIG_SERIAL_8250_DETECT_IRQ=y
|
||||||
|
CONFIG_SERIAL_8250_MANY_PORTS=y
|
||||||
|
CONFIG_SERIAL_8250_NR_UARTS=6
|
||||||
|
CONFIG_SERIAL_8250_RSA=y
|
||||||
|
CONFIG_SERIAL_8250_RUNTIME_UARTS=6
|
||||||
|
CONFIG_SERIAL_8250=y
|
||||||
|
CONFIG_SERIAL_QE=m
|
||||||
|
CONFIG_SERIO_LIBPS2=y
|
||||||
|
# CONFIG_SND_DRIVERS is not set
|
||||||
|
CONFIG_SND_INTEL8X0=y
|
||||||
|
CONFIG_SND_POWERPC_SOC=y
|
||||||
|
# CONFIG_SND_PPC is not set
|
||||||
|
CONFIG_SND_SOC=y
|
||||||
|
# CONFIG_SND_SUPPORT_OLD_API is not set
|
||||||
|
# CONFIG_SND_USB is not set
|
||||||
|
CONFIG_SND=y
|
||||||
|
CONFIG_SOUND=y
|
||||||
|
CONFIG_SPI_FSL_ESPI=y
|
||||||
|
CONFIG_SPI_FSL_SPI=y
|
||||||
|
CONFIG_SPI_GPIO=y
|
||||||
|
CONFIG_SPI=y
|
||||||
|
CONFIG_TERANETICS_PHY=y
|
||||||
|
CONFIG_UCC_GETH=y
|
||||||
|
CONFIG_USB_EHCI_FSL=y
|
||||||
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
CONFIG_USB_HID=m
|
||||||
|
CONFIG_USB_MON=y
|
||||||
|
CONFIG_USB_OHCI_HCD_PPC_OF_BE=y
|
||||||
|
CONFIG_USB_OHCI_HCD_PPC_OF_LE=y
|
||||||
|
CONFIG_USB_OHCI_HCD=y
|
||||||
|
CONFIG_USB_STORAGE=y
|
||||||
|
CONFIG_USB=y
|
||||||
|
# CONFIG_VGA_CONSOLE is not set
|
||||||
|
CONFIG_VIRT_DRIVERS=y
|
||||||
|
CONFIG_VITESSE_PHY=y
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
CONFIG_NR_CPUS=24
|
||||||
|
CONFIG_SMP=y
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
CONFIG_ALTIVEC=y
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user