1*5def4c47SEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0-only */ 2*5def4c47SEmmanuel Vadot 3*5def4c47SEmmanuel Vadot #ifndef DT_CLOCK_FSL_QORIQ_CLOCKGEN_H 4*5def4c47SEmmanuel Vadot #define DT_CLOCK_FSL_QORIQ_CLOCKGEN_H 5*5def4c47SEmmanuel Vadot 6*5def4c47SEmmanuel Vadot #define QORIQ_CLK_SYSCLK 0 7*5def4c47SEmmanuel Vadot #define QORIQ_CLK_CMUX 1 8*5def4c47SEmmanuel Vadot #define QORIQ_CLK_HWACCEL 2 9*5def4c47SEmmanuel Vadot #define QORIQ_CLK_FMAN 3 10*5def4c47SEmmanuel Vadot #define QORIQ_CLK_PLATFORM_PLL 4 11*5def4c47SEmmanuel Vadot #define QORIQ_CLK_CORECLK 5 12*5def4c47SEmmanuel Vadot 13*5def4c47SEmmanuel Vadot #define QORIQ_CLK_PLL_DIV(x) ((x) - 1) 14*5def4c47SEmmanuel Vadot 15*5def4c47SEmmanuel Vadot #endif /* DT_CLOCK_FSL_QORIQ_CLOCKGEN_H */ 16