1270866Simp/*
2270866Simp * Copyright (c) 2014 Tomasz Figa <tomasz.figa@gmail.com>
3270866Simp *
4270866Simp * This program is free software; you can redistribute it and/or modify
5270866Simp * it under the terms of the GNU General Public License version 2 as
6270866Simp * published by the Free Software Foundation.
7270866Simp *
8270866Simp * This header provides constants for Samsung audio subsystem
9270866Simp * clock controller.
10270866Simp *
11270866Simp * The constants defined in this header are being used in dts
12270866Simp * and s5pv210 audss driver.
13270866Simp */
14270866Simp
15270866Simp#ifndef _DT_BINDINGS_CLOCK_S5PV210_AUDSS_H
16270866Simp#define _DT_BINDINGS_CLOCK_S5PV210_AUDSS_H
17270866Simp
18270866Simp#define CLK_MOUT_AUDSS		0
19270866Simp#define CLK_MOUT_I2S_A		1
20270866Simp
21270866Simp#define CLK_DOUT_AUD_BUS	2
22270866Simp#define CLK_DOUT_I2S_A		3
23270866Simp
24270866Simp#define CLK_I2S			4
25270866Simp#define CLK_HCLK_I2S		5
26270866Simp#define CLK_HCLK_UART		6
27270866Simp#define CLK_HCLK_HWA		7
28270866Simp#define CLK_HCLK_DMA		8
29270866Simp#define CLK_HCLK_BUF		9
30270866Simp#define CLK_HCLK_RP		10
31270866Simp
32270866Simp#define AUDSS_MAX_CLKS		11
33270866Simp
34270866Simp#endif
35