1*c9ccf3a3SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*c9ccf3a3SEmmanuel Vadot%YAML 1.2 3*c9ccf3a3SEmmanuel Vadot--- 4*c9ccf3a3SEmmanuel Vadot$id: "http://devicetree.org/schemas/soc/microchip/microchip,mpfs-sys-controller.yaml#" 5*c9ccf3a3SEmmanuel Vadot$schema: "http://devicetree.org/meta-schemas/core.yaml#" 6*c9ccf3a3SEmmanuel Vadot 7*c9ccf3a3SEmmanuel Vadottitle: Microchip PolarFire SoC (MPFS) MSS (microprocessor subsystem) system controller 8*c9ccf3a3SEmmanuel Vadot 9*c9ccf3a3SEmmanuel Vadotmaintainers: 10*c9ccf3a3SEmmanuel Vadot - Conor Dooley <conor.dooley@microchip.com> 11*c9ccf3a3SEmmanuel Vadot 12*c9ccf3a3SEmmanuel Vadotdescription: | 13*c9ccf3a3SEmmanuel Vadot PolarFire SoC devices include a microcontroller acting as the system controller, 14*c9ccf3a3SEmmanuel Vadot which provides "services" to the main processor and to the FPGA fabric. These 15*c9ccf3a3SEmmanuel Vadot services include hardware rng, reprogramming of the FPGA and verfification of the 16*c9ccf3a3SEmmanuel Vadot eNVM contents etc. More information on these services can be found online, at 17*c9ccf3a3SEmmanuel Vadot https://onlinedocs.microchip.com/pr/GUID-1409CF11-8EF9-4C24-A94E-70979A688632-en-US-1/index.html 18*c9ccf3a3SEmmanuel Vadot 19*c9ccf3a3SEmmanuel Vadot Communication with the system controller is done via a mailbox, of which the client 20*c9ccf3a3SEmmanuel Vadot portion is documented here. 21*c9ccf3a3SEmmanuel Vadot 22*c9ccf3a3SEmmanuel Vadotproperties: 23*c9ccf3a3SEmmanuel Vadot mboxes: 24*c9ccf3a3SEmmanuel Vadot maxItems: 1 25*c9ccf3a3SEmmanuel Vadot 26*c9ccf3a3SEmmanuel Vadot compatible: 27*c9ccf3a3SEmmanuel Vadot const: microchip,mpfs-sys-controller 28*c9ccf3a3SEmmanuel Vadot 29*c9ccf3a3SEmmanuel Vadotrequired: 30*c9ccf3a3SEmmanuel Vadot - compatible 31*c9ccf3a3SEmmanuel Vadot - mboxes 32*c9ccf3a3SEmmanuel Vadot 33*c9ccf3a3SEmmanuel VadotadditionalProperties: false 34*c9ccf3a3SEmmanuel Vadot 35*c9ccf3a3SEmmanuel Vadotexamples: 36*c9ccf3a3SEmmanuel Vadot - | 37*c9ccf3a3SEmmanuel Vadot syscontroller { 38*c9ccf3a3SEmmanuel Vadot compatible = "microchip,mpfs-sys-controller"; 39*c9ccf3a3SEmmanuel Vadot mboxes = <&mbox 0>; 40*c9ccf3a3SEmmanuel Vadot }; 41