1c66ec88fSEmmanuel Vadot /* 2c66ec88fSEmmanuel Vadot * Copyright (C) 2016 Maxime Ripard <maxime.ripard@free-electrons.com> 3c66ec88fSEmmanuel Vadot * 4c66ec88fSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms 5c66ec88fSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual 6c66ec88fSEmmanuel Vadot * licensing only applies to this file, and not this project as a 7c66ec88fSEmmanuel Vadot * whole. 8c66ec88fSEmmanuel Vadot * 9c66ec88fSEmmanuel Vadot * a) This file is free software; you can redistribute it and/or 10c66ec88fSEmmanuel Vadot * modify it under the terms of the GNU General Public License as 11c66ec88fSEmmanuel Vadot * published by the Free Software Foundation; either version 2 of the 12c66ec88fSEmmanuel Vadot * License, or (at your option) any later version. 13c66ec88fSEmmanuel Vadot * 14c66ec88fSEmmanuel Vadot * This file is distributed in the hope that it will be useful, 15c66ec88fSEmmanuel Vadot * but WITHOUT ANY WARRANTY; without even the implied warranty of 16c66ec88fSEmmanuel Vadot * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17c66ec88fSEmmanuel Vadot * GNU General Public License for more details. 18c66ec88fSEmmanuel Vadot * 19c66ec88fSEmmanuel Vadot * Or, alternatively, 20c66ec88fSEmmanuel Vadot * 21c66ec88fSEmmanuel Vadot * b) Permission is hereby granted, free of charge, to any person 22c66ec88fSEmmanuel Vadot * obtaining a copy of this software and associated documentation 23c66ec88fSEmmanuel Vadot * files (the "Software"), to deal in the Software without 24c66ec88fSEmmanuel Vadot * restriction, including without limitation the rights to use, 25c66ec88fSEmmanuel Vadot * copy, modify, merge, publish, distribute, sublicense, and/or 26c66ec88fSEmmanuel Vadot * sell copies of the Software, and to permit persons to whom the 27c66ec88fSEmmanuel Vadot * Software is furnished to do so, subject to the following 28c66ec88fSEmmanuel Vadot * conditions: 29c66ec88fSEmmanuel Vadot * 30c66ec88fSEmmanuel Vadot * The above copyright notice and this permission notice shall be 31c66ec88fSEmmanuel Vadot * included in all copies or substantial portions of the Software. 32c66ec88fSEmmanuel Vadot * 33c66ec88fSEmmanuel Vadot * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 34c66ec88fSEmmanuel Vadot * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 35c66ec88fSEmmanuel Vadot * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 36c66ec88fSEmmanuel Vadot * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 37c66ec88fSEmmanuel Vadot * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 38c66ec88fSEmmanuel Vadot * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 39c66ec88fSEmmanuel Vadot * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 40c66ec88fSEmmanuel Vadot * OTHER DEALINGS IN THE SOFTWARE. 41c66ec88fSEmmanuel Vadot */ 42c66ec88fSEmmanuel Vadot 43c66ec88fSEmmanuel Vadot #ifndef _DT_BINDINGS_CLK_SUN8I_H3_H_ 44c66ec88fSEmmanuel Vadot #define _DT_BINDINGS_CLK_SUN8I_H3_H_ 45c66ec88fSEmmanuel Vadot 46c66ec88fSEmmanuel Vadot #define CLK_PLL_VIDEO 6 47c66ec88fSEmmanuel Vadot 48c66ec88fSEmmanuel Vadot #define CLK_PLL_PERIPH0 9 49c66ec88fSEmmanuel Vadot 50c66ec88fSEmmanuel Vadot #define CLK_CPUX 14 51c66ec88fSEmmanuel Vadot 52c66ec88fSEmmanuel Vadot #define CLK_BUS_CE 20 53c66ec88fSEmmanuel Vadot #define CLK_BUS_DMA 21 54c66ec88fSEmmanuel Vadot #define CLK_BUS_MMC0 22 55c66ec88fSEmmanuel Vadot #define CLK_BUS_MMC1 23 56c66ec88fSEmmanuel Vadot #define CLK_BUS_MMC2 24 57c66ec88fSEmmanuel Vadot #define CLK_BUS_NAND 25 58c66ec88fSEmmanuel Vadot #define CLK_BUS_DRAM 26 59c66ec88fSEmmanuel Vadot #define CLK_BUS_EMAC 27 60c66ec88fSEmmanuel Vadot #define CLK_BUS_TS 28 61c66ec88fSEmmanuel Vadot #define CLK_BUS_HSTIMER 29 62c66ec88fSEmmanuel Vadot #define CLK_BUS_SPI0 30 63c66ec88fSEmmanuel Vadot #define CLK_BUS_SPI1 31 64c66ec88fSEmmanuel Vadot #define CLK_BUS_OTG 32 65c66ec88fSEmmanuel Vadot #define CLK_BUS_EHCI0 33 66c66ec88fSEmmanuel Vadot #define CLK_BUS_EHCI1 34 67c66ec88fSEmmanuel Vadot #define CLK_BUS_EHCI2 35 68c66ec88fSEmmanuel Vadot #define CLK_BUS_EHCI3 36 69c66ec88fSEmmanuel Vadot #define CLK_BUS_OHCI0 37 70c66ec88fSEmmanuel Vadot #define CLK_BUS_OHCI1 38 71c66ec88fSEmmanuel Vadot #define CLK_BUS_OHCI2 39 72c66ec88fSEmmanuel Vadot #define CLK_BUS_OHCI3 40 73c66ec88fSEmmanuel Vadot #define CLK_BUS_VE 41 74c66ec88fSEmmanuel Vadot #define CLK_BUS_TCON0 42 75c66ec88fSEmmanuel Vadot #define CLK_BUS_TCON1 43 76c66ec88fSEmmanuel Vadot #define CLK_BUS_DEINTERLACE 44 77c66ec88fSEmmanuel Vadot #define CLK_BUS_CSI 45 78c66ec88fSEmmanuel Vadot #define CLK_BUS_TVE 46 79c66ec88fSEmmanuel Vadot #define CLK_BUS_HDMI 47 80c66ec88fSEmmanuel Vadot #define CLK_BUS_DE 48 81c66ec88fSEmmanuel Vadot #define CLK_BUS_GPU 49 82c66ec88fSEmmanuel Vadot #define CLK_BUS_MSGBOX 50 83c66ec88fSEmmanuel Vadot #define CLK_BUS_SPINLOCK 51 84c66ec88fSEmmanuel Vadot #define CLK_BUS_CODEC 52 85c66ec88fSEmmanuel Vadot #define CLK_BUS_SPDIF 53 86c66ec88fSEmmanuel Vadot #define CLK_BUS_PIO 54 87c66ec88fSEmmanuel Vadot #define CLK_BUS_THS 55 88c66ec88fSEmmanuel Vadot #define CLK_BUS_I2S0 56 89c66ec88fSEmmanuel Vadot #define CLK_BUS_I2S1 57 90c66ec88fSEmmanuel Vadot #define CLK_BUS_I2S2 58 91c66ec88fSEmmanuel Vadot #define CLK_BUS_I2C0 59 92c66ec88fSEmmanuel Vadot #define CLK_BUS_I2C1 60 93c66ec88fSEmmanuel Vadot #define CLK_BUS_I2C2 61 94c66ec88fSEmmanuel Vadot #define CLK_BUS_UART0 62 95c66ec88fSEmmanuel Vadot #define CLK_BUS_UART1 63 96c66ec88fSEmmanuel Vadot #define CLK_BUS_UART2 64 97c66ec88fSEmmanuel Vadot #define CLK_BUS_UART3 65 98c66ec88fSEmmanuel Vadot #define CLK_BUS_SCR0 66 99c66ec88fSEmmanuel Vadot #define CLK_BUS_EPHY 67 100c66ec88fSEmmanuel Vadot #define CLK_BUS_DBG 68 101c66ec88fSEmmanuel Vadot 102c66ec88fSEmmanuel Vadot #define CLK_THS 69 103c66ec88fSEmmanuel Vadot #define CLK_NAND 70 104c66ec88fSEmmanuel Vadot #define CLK_MMC0 71 105c66ec88fSEmmanuel Vadot #define CLK_MMC0_SAMPLE 72 106c66ec88fSEmmanuel Vadot #define CLK_MMC0_OUTPUT 73 107c66ec88fSEmmanuel Vadot #define CLK_MMC1 74 108c66ec88fSEmmanuel Vadot #define CLK_MMC1_SAMPLE 75 109c66ec88fSEmmanuel Vadot #define CLK_MMC1_OUTPUT 76 110c66ec88fSEmmanuel Vadot #define CLK_MMC2 77 111c66ec88fSEmmanuel Vadot #define CLK_MMC2_SAMPLE 78 112c66ec88fSEmmanuel Vadot #define CLK_MMC2_OUTPUT 79 113c66ec88fSEmmanuel Vadot #define CLK_TS 80 114c66ec88fSEmmanuel Vadot #define CLK_CE 81 115c66ec88fSEmmanuel Vadot #define CLK_SPI0 82 116c66ec88fSEmmanuel Vadot #define CLK_SPI1 83 117c66ec88fSEmmanuel Vadot #define CLK_I2S0 84 118c66ec88fSEmmanuel Vadot #define CLK_I2S1 85 119c66ec88fSEmmanuel Vadot #define CLK_I2S2 86 120c66ec88fSEmmanuel Vadot #define CLK_SPDIF 87 121c66ec88fSEmmanuel Vadot #define CLK_USB_PHY0 88 122c66ec88fSEmmanuel Vadot #define CLK_USB_PHY1 89 123c66ec88fSEmmanuel Vadot #define CLK_USB_PHY2 90 124c66ec88fSEmmanuel Vadot #define CLK_USB_PHY3 91 125c66ec88fSEmmanuel Vadot #define CLK_USB_OHCI0 92 126c66ec88fSEmmanuel Vadot #define CLK_USB_OHCI1 93 127c66ec88fSEmmanuel Vadot #define CLK_USB_OHCI2 94 128c66ec88fSEmmanuel Vadot #define CLK_USB_OHCI3 95 129*e67e8565SEmmanuel Vadot #define CLK_DRAM 96 130c66ec88fSEmmanuel Vadot #define CLK_DRAM_VE 97 131c66ec88fSEmmanuel Vadot #define CLK_DRAM_CSI 98 132c66ec88fSEmmanuel Vadot #define CLK_DRAM_DEINTERLACE 99 133c66ec88fSEmmanuel Vadot #define CLK_DRAM_TS 100 134c66ec88fSEmmanuel Vadot #define CLK_DE 101 135c66ec88fSEmmanuel Vadot #define CLK_TCON0 102 136c66ec88fSEmmanuel Vadot #define CLK_TVE 103 137c66ec88fSEmmanuel Vadot #define CLK_DEINTERLACE 104 138c66ec88fSEmmanuel Vadot #define CLK_CSI_MISC 105 139c66ec88fSEmmanuel Vadot #define CLK_CSI_SCLK 106 140c66ec88fSEmmanuel Vadot #define CLK_CSI_MCLK 107 141c66ec88fSEmmanuel Vadot #define CLK_VE 108 142c66ec88fSEmmanuel Vadot #define CLK_AC_DIG 109 143c66ec88fSEmmanuel Vadot #define CLK_AVS 110 144c66ec88fSEmmanuel Vadot #define CLK_HDMI 111 145c66ec88fSEmmanuel Vadot #define CLK_HDMI_DDC 112 146c66ec88fSEmmanuel Vadot #define CLK_MBUS 113 147c66ec88fSEmmanuel Vadot #define CLK_GPU 114 148c66ec88fSEmmanuel Vadot 149c66ec88fSEmmanuel Vadot /* New clocks imported in H5 */ 150c66ec88fSEmmanuel Vadot #define CLK_BUS_SCR1 115 151c66ec88fSEmmanuel Vadot 152c66ec88fSEmmanuel Vadot #endif /* _DT_BINDINGS_CLK_SUN8I_H3_H_ */ 153