blob: c82d021bce50c401a172babf4638f340a2114e1b [file] [log] [blame]
Tom Rini53633a82024-02-29 12:33:36 -05001Microchip PIC32 Quad SPI controller
2-----------------------------------
3Required properties:
4- compatible: Should be "microchip,pic32mzda-sqi".
5- reg: Address and length of SQI controller register space.
6- interrupts: Should contain SQI interrupt.
7- clocks: Should contain phandle of two clocks in sequence, one that drives
8 clock on SPI bus and other that drives SQI controller.
9- clock-names: Should be "spi_ck" and "reg_ck" in order.
10
11Example:
12 sqi1: spi@1f8e2000 {
13 compatible = "microchip,pic32mzda-sqi";
14 reg = <0x1f8e2000 0x200>;
15 clocks = <&rootclk REF2CLK>, <&rootclk PB5CLK>;
16 clock-names = "spi_ck", "reg_ck";
17 interrupts = <169 IRQ_TYPE_LEVEL_HIGH>;
18 };