Path: blob/main/sys/contrib/device-tree/Bindings/board/fsl-board.txt
48378 views
Freescale Reference Board Bindings12This document describes device tree bindings for various devices that3exist on some Freescale reference boards.45* Board Control and Status (BCSR)67Required properties:89- compatible : Should be "fsl,<board>-bcsr"10- reg : Offset and length of the register set for the device1112Example:1314bcsr@f8000000 {15compatible = "fsl,mpc8360mds-bcsr";16reg = <f8000000 8000>;17};1819* Freescale on-board FPGA2021This is the memory-mapped registers for on board FPGA.2223Required properties:24- compatible: should be a board-specific string followed by a string25indicating the type of FPGA. Example:26"fsl,<board>-fpga", "fsl,fpga-pixis", or27"fsl,<board>-fpga", "fsl,fpga-qixis"28- reg: should contain the address and the length of the FPGA register set.2930Optional properties:31- interrupts: should specify event (wakeup) IRQ.3233Example (P1022DS):3435board-control@3,0 {36compatible = "fsl,p1022ds-fpga", "fsl,fpga-ngpixis";37reg = <3 0 0x30>;38interrupt-parent = <&mpic>;39interrupts = <8 8 0 0>;40};4142Example (LS2080A-RDB):4344cpld@3,0 {45compatible = "fsl,ls2080ardb-fpga", "fsl,fpga-qixis";46reg = <0x3 0 0x10000>;47};4849* Freescale on-board FPGA connected on I2C bus5051Some Freescale boards like BSC9132QDS have on board FPGA connected on52the i2c bus.5354Required properties:55- compatible: Should be a board-specific string followed by a string56indicating the type of FPGA. Example:57"fsl,<board>-fpga", "fsl,fpga-qixis-i2c"58- reg: Should contain the address of the FPGA5960Example:61fpga: fpga@66 {62compatible = "fsl,bsc9132qds-fpga", "fsl,fpga-qixis-i2c";63reg = <0x66>;64};6566* Freescale on-board CPLD6768Some Freescale boards like T1040RDB have an on board CPLD connected.6970Required properties:71- compatible: Should be a board-specific string like "fsl,<board>-cpld"72Example:73"fsl,t1040rdb-cpld", "fsl,t1042rdb-cpld", "fsl,t1042rdb_pi-cpld"74- reg: should describe CPLD registers7576Example:77cpld@3,0 {78compatible = "fsl,t1040rdb-cpld";79reg = <3 0 0x300>;80};818283