132 lines · plain
1* NXP LPC1850 Clock Generation Unit (CGU)2 3The CGU generates multiple independent clocks for the core and the4peripheral blocks of the LPC18xx. Each independent clock is called5a base clock and itself is one of the inputs to the two Clock6Control Units (CCUs) which control the branch clocks to the7individual peripherals.8 9The CGU selects the inputs to the clock generators from multiple10clock sources, controls the clock generation, and routes the outputs11of the clock generators through the clock source bus to the output12stages. Each output stage provides an independent clock source and13corresponds to one of the base clocks for the LPC18xx.14 15 - Above text taken from NXP LPC1850 User Manual.16 17 18This binding uses the common clock binding:19 Documentation/devicetree/bindings/clock/clock-bindings.txt20 21Required properties:22- compatible:23 Should be "nxp,lpc1850-cgu"24- reg:25 Shall define the base and range of the address space26 containing clock control registers27- #clock-cells:28 Shall have value <1>. The permitted clock-specifier values29 are the base clock numbers defined below.30- clocks:31 Shall contain a list of phandles for the external input32 sources to the CGU. The list shall be in the following33 order: xtal, 32khz, enet_rx_clk, enet_tx_clk, gp_clkin.34- clock-indices:35 Shall be an ordered list of numbers defining the base clock36 number provided by the CGU.37- clock-output-names:38 Shall be an ordered list of strings defining the names of39 the clocks provided by the CGU.40 41Which base clocks that are available on the CGU depends on the42specific LPC part. Base clocks are numbered from 0 to 27.43 44Number: Name: Description:45 0 BASE_SAFE_CLK Base safe clock (always on) for WWDT46 1 BASE_USB0_CLK Base clock for USB047 2 BASE_PERIPH_CLK Base clock for Cortex-M0SUB subsystem,48 SPI, and SGPIO49 3 BASE_USB1_CLK Base clock for USB150 4 BASE_CPU_CLK System base clock for ARM Cortex-M core51 and APB peripheral blocks #0 and #252 5 BASE_SPIFI_CLK Base clock for SPIFI53 6 BASE_SPI_CLK Base clock for SPI54 7 BASE_PHY_RX_CLK Base clock for Ethernet PHY Receive clock55 8 BASE_PHY_TX_CLK Base clock for Ethernet PHY Transmit clock56 9 BASE_APB1_CLK Base clock for APB peripheral block # 15710 BASE_APB3_CLK Base clock for APB peripheral block # 35811 BASE_LCD_CLK Base clock for LCD5912 BASE_ADCHS_CLK Base clock for ADCHS6013 BASE_SDIO_CLK Base clock for SD/MMC6114 BASE_SSP0_CLK Base clock for SSP06215 BASE_SSP1_CLK Base clock for SSP16316 BASE_UART0_CLK Base clock for UART06417 BASE_UART1_CLK Base clock for UART16518 BASE_UART2_CLK Base clock for UART26619 BASE_UART3_CLK Base clock for UART36720 BASE_OUT_CLK Base clock for CLKOUT pin6824-21 - Reserved6925 BASE_AUDIO_CLK Base clock for audio system (I2S)7026 BASE_CGU_OUT0_CLK Base clock for CGU_OUT0 clock output7127 BASE_CGU_OUT1_CLK Base clock for CGU_OUT1 clock output72 73BASE_PERIPH_CLK and BASE_SPI_CLK is only available on LPC43xx.74BASE_ADCHS_CLK is only available on LPC4370.75 76 77Example board file:78 79/ {80 clocks {81 xtal: xtal {82 compatible = "fixed-clock";83 #clock-cells = <0>;84 clock-frequency = <12000000>;85 };86 87 xtal32: xtal32 {88 compatible = "fixed-clock";89 #clock-cells = <0>;90 clock-frequency = <32768>;91 };92 93 enet_rx_clk: enet_rx_clk {94 compatible = "fixed-clock";95 #clock-cells = <0>;96 clock-frequency = <0>;97 clock-output-names = "enet_rx_clk";98 };99 100 enet_tx_clk: enet_tx_clk {101 compatible = "fixed-clock";102 #clock-cells = <0>;103 clock-frequency = <0>;104 clock-output-names = "enet_tx_clk";105 };106 107 gp_clkin: gp_clkin {108 compatible = "fixed-clock";109 #clock-cells = <0>;110 clock-frequency = <0>;111 clock-output-names = "gp_clkin";112 };113 };114 115 soc {116 cgu: clock-controller@40050000 {117 compatible = "nxp,lpc1850-cgu";118 reg = <0x40050000 0x1000>;119 #clock-cells = <1>;120 clocks = <&xtal>, <&creg_clk 1>, <&enet_rx_clk>, <&enet_tx_clk>, <&gp_clkin>;121 };122 123 /* A CGU and CCU clock consumer */124 lcdc: lcdc@40008000 {125 ...126 clocks = <&cgu BASE_LCD_CLK>, <&ccu1 CLK_CPU_LCD>;127 clock-names = "clcdclk", "apb_pclk";128 ...129 };130 };131};132