1e7ef681aSLuis OliveiraSynopsys DesignWare Reset controller 2e7ef681aSLuis Oliveira======================================= 3e7ef681aSLuis Oliveira 4e7ef681aSLuis OliveiraPlease also refer to reset.txt in this directory for common reset 5e7ef681aSLuis Oliveiracontroller binding usage. 6e7ef681aSLuis Oliveira 7e7ef681aSLuis OliveiraRequired properties: 8e7ef681aSLuis Oliveira 9e7ef681aSLuis Oliveira- compatible: should be one of the following. 10e7ef681aSLuis Oliveira "snps,dw-high-reset" - for active high configuration 11e7ef681aSLuis Oliveira "snps,dw-low-reset" - for active low configuration 12e7ef681aSLuis Oliveira 13e7ef681aSLuis Oliveira- reg: physical base address of the controller and length of memory mapped 14e7ef681aSLuis Oliveira region. 15e7ef681aSLuis Oliveira 16e7ef681aSLuis Oliveira- #reset-cells: must be 1. 17e7ef681aSLuis Oliveira 18e7ef681aSLuis Oliveiraexample: 19e7ef681aSLuis Oliveira 20e7ef681aSLuis Oliveira dw_rst_1: reset-controller@0000 { 21e7ef681aSLuis Oliveira compatible = "snps,dw-high-reset"; 22e7ef681aSLuis Oliveira reg = <0x0000 0x4>; 23e7ef681aSLuis Oliveira #reset-cells = <1>; 24e7ef681aSLuis Oliveira }; 25e7ef681aSLuis Oliveira 26*3af2c1a4SGustavo Pimentel dw_rst_2: reset-controller@1000 { 27e7ef681aSLuis Oliveira compatible = "snps,dw-low-reset"; 28e7ef681aSLuis Oliveira reg = <0x1000 0x8>; 29e7ef681aSLuis Oliveira #reset-cells = <1>; 30e7ef681aSLuis Oliveira }; 31