Sam Protsenko | 8a0f634 | 2024-01-10 21:09:03 -0600 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (C) 2016 Samsung Electronics |
| 4 | * Copyright (C) 2023 Linaro Ltd. |
| 5 | * |
| 6 | * Authors: |
| 7 | * Thomas Abraham <thomas.ab@samsung.com> |
| 8 | * Sam Protsenko <semen.protsenko@linaro.org> |
| 9 | * |
| 10 | * Common Clock Framework support for all PLL's in Samsung platforms. |
| 11 | */ |
| 12 | |
| 13 | #ifndef __EXYNOS_CLK_PLL_H |
| 14 | #define __EXYNOS_CLK_PLL_H |
| 15 | |
| 16 | #include <linux/clk-provider.h> |
| 17 | |
| 18 | enum samsung_pll_type { |
| 19 | pll_0822x, |
| 20 | pll_0831x, |
| 21 | }; |
| 22 | |
| 23 | #endif /* __EXYNOS_CLK_PLL_H */ |