aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.14/950-0281-Drivers-for-Allo-Katana-DAC.patch
blob: 16235f23eb0afaa618b809fd102008422dd79b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
From 87d450d98ef1f69dd6f5255c3b7e665c130935ea Mon Sep 17 00:00:00 2001
From: allocom <sparky-dev@allo.com>
Date: Thu, 19 Apr 2018 12:12:26 +0530
Subject: [PATCH 281/454] Drivers for Allo Katana DAC

---
 arch/arm/boot/dts/overlays/Makefile           |   1 +
 arch/arm/boot/dts/overlays/README             |   6 +
 .../allo-katana-dac-audio-overlay.dts         |  46 +++
 arch/arm/configs/bcm2709_defconfig            |   1 +
 arch/arm/configs/bcmrpi_defconfig             |   1 +
 sound/soc/bcm/Kconfig                         |   7 +
 sound/soc/bcm/Makefile                        |   2 +
 sound/soc/bcm/allo-katana-dac.c               | 105 ++++++
 sound/soc/codecs/Kconfig                      |  10 +
 sound/soc/codecs/Makefile                     |   4 +
 sound/soc/codecs/sabre-ess-i2c.c              |  69 ++++
 sound/soc/codecs/sabre-ess.c                  | 300 ++++++++++++++++++
 sound/soc/codecs/sabre-ess.h                  |  62 ++++
 13 files changed, 614 insertions(+)
 create mode 100644 arch/arm/boot/dts/overlays/allo-katana-dac-audio-overlay.dts
 create mode 100644 sound/soc/bcm/allo-katana-dac.c
 create mode 100644 sound/soc/codecs/sabre-ess-i2c.c
 create mode 100644 sound/soc/codecs/sabre-ess.c
 create mode 100644 sound/soc/codecs/sabre-ess.h

--- a/arch/arm/boot/dts/overlays/Makefile
+++ b/arch/arm/boot/dts/overlays/Makefile
@@ -9,6 +9,7 @@ dtbo-$(CONFIG_ARCH_BCM2835) += \
 	akkordion-iqdacplus.dtbo \
 	allo-boss-dac-pcm512x-audio.dtbo \
 	allo-digione.dtbo \
+	allo-katana-dac-audio.dtbo \
 	allo-piano-dac-pcm512x-audio.dtbo \
 	allo-piano-dac-plus-pcm512x-audio.dtbo \
 	applepi-dac.dtbo \
--- a/arch/arm/boot/dts/overlays/README
+++ b/arch/arm/boot/dts/overlays/README
@@ -317,6 +317,12 @@ Load:   dtoverlay=allo-digione
 Params: <None>
 
 
+Name:   allo-katana
+Info:   Configures the Allo Katana audio card
+Load:   dtoverlay=allo-katana-dac-audio
+Params: <None>
+
+
 Name:   allo-piano-dac-pcm512x-audio
 Info:   Configures the Allo Piano DAC (2.0/2.1) audio cards.
         (NB. This initial support is for 2.0 channel audio ONLY! ie. stereo.
--- /dev/null
+++ b/arch/arm/boot/dts/overlays/allo-katana-dac-audio-overlay.dts
@@ -0,0 +1,46 @@
+/*
+ * Definitions for Allo Katana DAC boards
+ *
+ * NB. The Katana DAC board contains SABER DAC.
+ */
+
+/dts-v1/;
+/plugin/;
+
+/ {
+	compatible = "brcm,bcm2708";
+
+	fragment@0 {
+		target = <&i2s>;
+		__overlay__ {
+			status = "okay";
+		};
+	};
+
+	fragment@1 {
+		target = <&i2c1>;
+		__overlay__ {
+			#address-cells = <1>;
+			#size-cells = <0>;
+			status = "okay";
+
+			sabre-ess@30 {
+				#sound-dai-cells = <0>;
+				compatible = "saber,sabre-ess";
+				reg = <0x30>;
+				status = "okay";
+			};
+		};
+	};
+
+	fragment@2 {
+		target = <&sound>;
+		katana_dac: __overlay__ {
+			compatible = "allo,katana-dac";
+			i2s-controller = <&i2s>;
+			status = "okay";
+		};
+	};
+
+};
+
--- a/arch/arm/configs/bcm2709_defconfig
+++ b/arch/arm/configs/bcm2709_defconfig
@@ -894,6 +894,7 @@ CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC=m
 CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC_PLUS=m
 CONFIG_SND_BCM2708_SOC_ALLO_BOSS_DAC=m
 CONFIG_SND_BCM2708_SOC_ALLO_DIGIONE=m
+CONFIG_SND_BCM2708_SOC_ALLO_KATANA_DAC=m
 CONFIG_SND_BCM2708_SOC_FE_PI_AUDIO=m
 CONFIG_SND_PISOUND=m
 CONFIG_SND_SOC_ADAU1701=m
--- a/arch/arm/configs/bcmrpi_defconfig
+++ b/arch/arm/configs/bcmrpi_defconfig
@@ -887,6 +887,7 @@ CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC=m
 CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC_PLUS=m
 CONFIG_SND_BCM2708_SOC_ALLO_BOSS_DAC=m
 CONFIG_SND_BCM2708_SOC_ALLO_DIGIONE=m
+CONFIG_SND_BCM2708_SOC_ALLO_KATANA_DAC=m
 CONFIG_SND_BCM2708_SOC_FE_PI_AUDIO=m
 CONFIG_SND_PISOUND=m
 CONFIG_SND_SOC_ADAU1701=m
--- a/sound/soc/bcm/Kconfig
+++ b/sound/soc/bcm/Kconfig
@@ -175,6 +175,13 @@ config SND_BCM2708_SOC_ALLO_DIGIONE
 	help
 	  Say Y or M if you want to add support for Allo DigiOne.
 
+config SND_BCM2708_SOC_ALLO_KATANA_DAC
+	tristate "Support for Allo Katana DAC"
+	depends on SND_BCM2708_SOC_I2S || SND_BCM2835_SOC_I2S
+	select SND_SOC_SABRE_ESS_I2C
+	help
+	  Say Y or M if you want to add support for Allo Katana DAC.
+
 config SND_BCM2708_SOC_FE_PI_AUDIO
 	tristate "Support for Fe-Pi-Audio"
 	depends on SND_BCM2708_SOC_I2S || SND_BCM2835_SOC_I2S
--- a/sound/soc/bcm/Makefile
+++ b/sound/soc/bcm/Makefile
@@ -34,6 +34,7 @@ snd-soc-allo-boss-dac-objs := allo-boss-
 snd-soc-allo-piano-dac-objs := allo-piano-dac.o
 snd-soc-allo-piano-dac-plus-objs := allo-piano-dac-plus.o
 snd-soc-allo-digione-objs := allo-digione.o
+snd-soc-allo-katana-dac-objs := allo-katana-dac.o
 snd-soc-pisound-objs := pisound.o
 snd-soc-fe-pi-audio-objs := fe-pi-audio.o
 
@@ -60,5 +61,6 @@ obj-$(CONFIG_SND_BCM2708_SOC_ALLO_BOSS_D
 obj-$(CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC) += snd-soc-allo-piano-dac.o
 obj-$(CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC_PLUS) += snd-soc-allo-piano-dac-plus.o
 obj-$(CONFIG_SND_BCM2708_SOC_ALLO_DIGIONE) += snd-soc-allo-digione.o
+obj-$(CONFIG_SND_BCM2708_SOC_ALLO_KATANA_DAC) += snd-soc-allo-katana-dac.o
 obj-$(CONFIG_SND_PISOUND) += snd-soc-pisound.o
 obj-$(CONFIG_SND_BCM2708_SOC_FE_PI_AUDIO) += snd-soc-fe-pi-audio.o
--- /dev/null
+++ b/sound/soc/bcm/allo-katana-dac.c
@@ -0,0 +1,105 @@
+/*
+ * ASoC Driver for KATANA DAC
+ *
+ * Author:	Jaikumar <jaikumar@cem-solutions.net>
+ *		Copyright 2018
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+#include <linux/module.h>
+#include <linux/platform_device.h>
+
+#include <sound/core.h>
+#include <sound/pcm.h>
+#include <sound/pcm_params.h>
+#include <sound/soc.h>
+
+static struct snd_soc_dai_link snd_allo_katana_dac_dai[] = {
+{
+	.name		= "KATANA DAC",
+	//.stream_name	= "KATANA DAC HiFi [Master]",
+	.stream_name	= "KATANA DAC",
+	.cpu_dai_name	= "bcm2708-i2s.0",
+	//.codec_dai_name	= "es9038q2m-hifi",
+	.codec_dai_name	= "sabre-ess",
+	.platform_name	= "bcm2708-i2s.0",
+	//.codec_name	= "es9038q2m.1-0030",
+	.codec_name	= "sabre-ess.1-0030",
+	.dai_fmt	= SND_SOC_DAIFMT_I2S |
+		SND_SOC_DAIFMT_NB_NF |
+		SND_SOC_DAIFMT_CBM_CFM,
+},
+};
+
+/* audio machine driver */
+static struct snd_soc_card snd_allo_katana_dac = {
+	.name         = "snd_allo_katana_dac",
+	.owner        = THIS_MODULE,
+	.dai_link     = snd_allo_katana_dac_dai,
+	.num_links    = ARRAY_SIZE(snd_allo_katana_dac_dai),
+};
+
+static int snd_allo_katana_dac_probe(struct platform_device *pdev)
+{
+	int ret = 0;
+
+	snd_allo_katana_dac.dev = &pdev->dev;
+
+	if (pdev->dev.of_node) {
+		struct device_node *i2s_node;
+		struct snd_soc_dai_link *dai = &snd_allo_katana_dac_dai[0];
+
+		i2s_node = of_parse_phandle(pdev->dev.of_node,
+				"i2s-controller", 0);
+
+		if (i2s_node) {
+			dai->cpu_dai_name = NULL;
+			dai->cpu_of_node = i2s_node;
+			dai->platform_name = NULL;
+			dai->platform_of_node = i2s_node;
+		}
+	}
+
+	ret = snd_soc_register_card(&snd_allo_katana_dac);
+	if (ret && ret != -EPROBE_DEFER)
+		dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
+					ret);
+
+	return ret;
+}
+
+static int snd_allo_katana_dac_remove(struct platform_device *pdev)
+{
+	return snd_soc_unregister_card(&snd_allo_katana_dac);
+}
+
+static const struct of_device_id snd_allo_katana_dac_of_match[] = {
+	{ .compatible = "allo,katana-dac", },
+	{},
+};
+MODULE_DEVICE_TABLE(of, snd_allo_katana_dac_of_match);
+
+static struct platform_driver snd_allo_katana_dac_driver = {
+	.driver = {
+		.name   = "snd-katana-dac",
+		.owner  = THIS_MODULE,
+		.of_match_table = snd_allo_katana_dac_of_match,
+	},
+	.probe          = snd_allo_katana_dac_probe,
+	.remove         = snd_allo_katana_dac_remove,
+};
+
+module_platform_driver(snd_allo_katana_dac_driver);
+
+MODULE_AUTHOR("Jaikumar <jaikumar@cem-solutions.net>");
+MODULE_DESCRIPTION("ALSA ASoC Machine Driver for Allo Katana DAC");
+MODULE_LICENSE("GPL v2");
+
--- a/sound/soc/codecs/Kconfig
+++ b/sound/soc/codecs/Kconfig
@@ -77,6 +77,7 @@ config SND_SOC_ALL_CODECS
 	select SND_SOC_ES8328_SPI if SPI_MASTER
 	select SND_SOC_ES8328_I2C if I2C
 	select SND_SOC_ES7134
+	select SND_SOC_SABRE_ESS_I2C if I2C
 	select SND_SOC_GTM601
 	select SND_SOC_HDAC_HDMI
 	select SND_SOC_ICS43432
@@ -1186,4 +1187,13 @@ config SND_SOC_TPA6130A2
 	tristate "Texas Instruments TPA6130A2 headphone amplifier"
 	depends on I2C
 
+config SND_SOC_SABRE_ESS
+	tristate
+
+config SND_SOC_SABRE_ESS_I2C
+	tristate "Sabre SABRE ESS CODEC - I2C"
+	depends on I2C
+	select SND_SOC_SABRE_ESS
+	select REGMAP_I2C
+
 endmenu
--- a/sound/soc/codecs/Makefile
+++ b/sound/soc/codecs/Makefile
@@ -71,6 +71,8 @@ snd-soc-es8316-objs := es8316.o
 snd-soc-es8328-objs := es8328.o
 snd-soc-es8328-i2c-objs := es8328-i2c.o
 snd-soc-es8328-spi-objs := es8328-spi.o
+snd-soc-sabre-ess-objs := sabre-ess.o
+snd-soc-sabre-ess-i2c-objs := sabre-ess-i2c.o
 snd-soc-gtm601-objs := gtm601.o
 snd-soc-hdac-hdmi-objs := hdac_hdmi.o
 snd-soc-ics43432-objs := ics43432.o
@@ -313,6 +315,8 @@ obj-$(CONFIG_SND_SOC_ES8316)    += snd-s
 obj-$(CONFIG_SND_SOC_ES8328)	+= snd-soc-es8328.o
 obj-$(CONFIG_SND_SOC_ES8328_I2C)+= snd-soc-es8328-i2c.o
 obj-$(CONFIG_SND_SOC_ES8328_SPI)+= snd-soc-es8328-spi.o
+obj-$(CONFIG_SND_SOC_SABRE_ESS) += snd-soc-sabre-ess.o
+obj-$(CONFIG_SND_SOC_SABRE_ESS_I2C) += snd-soc-sabre-ess-i2c.o
 obj-$(CONFIG_SND_SOC_GTM601)    += snd-soc-gtm601.o
 obj-$(CONFIG_SND_SOC_HDAC_HDMI) += snd-soc-hdac-hdmi.o
 obj-$(CONFIG_SND_SOC_ICS43432)	+= snd-soc-ics43432.o
--- /dev/null
+++ b/sound/soc/codecs/sabre-ess-i2c.c
@@ -0,0 +1,69 @@
+/*
+ * Driver for the SABRE ESS CODECs
+ *
+ * Author: Jaikumar <jaikumar@cem-solutions.net>	
+ *		Copyright 2018
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/i2c.h>
+
+#include "sabre-ess.h"
+
+static int sabre_ess_i2c_probe(struct i2c_client *i2c,
+			     const struct i2c_device_id *id)
+{
+	struct regmap *regmap;
+	struct regmap_config config = sabre_ess_regmap;
+
+	regmap = devm_regmap_init_i2c(i2c, &config);
+	if (IS_ERR(regmap))
+		return PTR_ERR(regmap);
+
+	return sabre_ess_probe(&i2c->dev, regmap);
+}
+
+static int sabre_ess_i2c_remove(struct i2c_client *i2c)
+{
+	sabre_ess_remove(&i2c->dev);
+	return 0;
+}
+
+static const struct i2c_device_id sabre_ess_i2c_id[] = {
+	{ "sabre-ess", },
+	{ }
+};
+MODULE_DEVICE_TABLE(i2c, sabre_ess_i2c_id);
+
+static const struct of_device_id sabre_ess_of_match[] = {
+	{ .compatible = "saber,sabre-ess", },
+	{ }
+};
+MODULE_DEVICE_TABLE(of, sabre_ess_of_match);
+
+static struct i2c_driver sabre_ess_i2c_driver = {
+	.probe 		= sabre_ess_i2c_probe,
+	.remove 	= sabre_ess_i2c_remove,
+	.id_table	= sabre_ess_i2c_id,
+	.driver		= {
+		.name	= "sabre-ess",
+		.of_match_table = sabre_ess_of_match,
+	},
+};
+
+module_i2c_driver(sabre_ess_i2c_driver);
+
+MODULE_DESCRIPTION("ASoC SABRE ESS codec driver - I2C");
+MODULE_AUTHOR("Jaikumar <jaikumar@cem-solutions.net>");
+MODULE_LICENSE("GPL v2");
+
--- /dev/null
+++ b/sound/soc/codecs/sabre-ess.c
@@ -0,0 +1,300 @@
+/*
+ * Driver for the SABRE ESS CODEC
+ *
+ * Author: Jaikumar <jaikumar@cem-solutions.net>
+ *		Copyright 2018
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/clk.h>
+#include <linux/kernel.h>
+#include <linux/pm_runtime.h>
+#include <linux/regmap.h>
+#include <linux/regulator/consumer.h>
+#include <linux/gcd.h>
+#include <sound/soc.h>
+#include <sound/soc-dapm.h>
+#include <sound/pcm_params.h>
+#include <sound/tlv.h>
+
+#include "sabre-ess.h"
+
+struct sabre_ess_priv {
+	struct regmap *regmap;
+	int fmt;
+};
+
+static const struct reg_default sabre_ess_reg_defaults[] = {
+	{ SABRE_ESS_RESET,			0x00 },
+	{ SABRE_ESS_VOLUME_1,		0xF0 },
+	{ SABRE_ESS_VOLUME_2,		0xF0 },
+	{ SABRE_ESS_MUTE,			0x00 },
+	{ SABRE_ESS_DSP_PROGRAM,	0x04 },
+	{ SABRE_ESS_DEEMPHASIS,		0x00 },
+	{ SABRE_ESS_DOP,			0x01 },
+	{ SABRE_ESS_FORMAT,			0xb4 },
+};
+
+static const char * const sabre_ess_dsp_program_texts[] = {
+	"Linear Phase Fast Roll-off Filter",
+	"Linear Phase Slow Roll-off Filter",
+	"Minimum Phase Fast Roll-off Filter",
+	"Minimum Phase Slow Roll-off Filter",
+	"Apodizing Fast Roll-off Filter",
+	"Corrected Minimum Phase Fast Roll-off Filter",
+	"Brick Wall Filter",
+};
+
+static const unsigned int sabre_ess_dsp_program_values[] = {
+	0,
+	1,
+	2,
+	3,
+	4,
+	6,
+	7,
+};
+
+static SOC_VALUE_ENUM_SINGLE_DECL(sabre_ess_dsp_program,
+				  SABRE_ESS_DSP_PROGRAM, 0, 0x07,
+				  sabre_ess_dsp_program_texts,
+				  sabre_ess_dsp_program_values);
+
+static const char * const sabre_ess_deemphasis_texts[] = {
+	"Bypass",
+	"32kHz",
+	"44.1kHz",
+	"48kHz",
+};
+
+static const unsigned int sabre_ess_deemphasis_values[] = {
+	0,
+	1,
+	2,
+	3,
+};
+
+static SOC_VALUE_ENUM_SINGLE_DECL(sabre_ess_deemphasis,
+				  SABRE_ESS_DEEMPHASIS, 0, 0x03,
+				  sabre_ess_deemphasis_texts,
+				  sabre_ess_deemphasis_values);
+
+static const SNDRV_CTL_TLVD_DECLARE_DB_MINMAX(master_tlv, -12700, 0);
+
+static const struct snd_kcontrol_new sabre_ess_controls[] = {
+	SOC_DOUBLE_R_TLV("Master Playback Volume", SABRE_ESS_VOLUME_1,
+			SABRE_ESS_VOLUME_2, 0, 255, 1, master_tlv),
+	SOC_DOUBLE("Master Playback Switch", SABRE_ESS_MUTE, 0, 0, 1, 1),
+	SOC_ENUM("DSP Program Route", sabre_ess_dsp_program),
+	SOC_ENUM("Deemphasis Route", sabre_ess_deemphasis),
+	SOC_SINGLE("DoP Playback Switch", SABRE_ESS_DOP, 0, 1, 1)
+};
+
+static bool sabre_ess_readable_register(struct device *dev, unsigned int reg)
+{
+	switch (reg) {
+	case SABRE_ESS_CHIP_ID_REG:
+		return true;
+	default:
+		return reg < 0xff;
+	}
+}
+
+static int sabre_ess_hw_params(struct snd_pcm_substream *substream,
+			     struct snd_pcm_hw_params *params,
+			     struct snd_soc_dai *dai)
+{
+	struct snd_soc_codec *codec = dai->codec;
+	struct sabre_ess_priv *sabre_ess = snd_soc_codec_get_drvdata(codec);
+	int fmt = 0;
+	int ret;
+
+	dev_dbg(codec->dev, "hw_params %u Hz, %u channels\n",
+			params_rate(params),
+			params_channels(params));
+
+	switch (sabre_ess->fmt & SND_SOC_DAIFMT_MASTER_MASK) {
+	case SND_SOC_DAIFMT_CBM_CFM: // master
+		if (params_channels(params) == 2)
+			fmt = SABRE_ESS_CHAN_STEREO;
+		else
+			fmt = SABRE_ESS_CHAN_MONO;
+
+		switch (params_width(params)) {
+		case 16:
+			fmt |= SABRE_ESS_ALEN_16;
+			break;
+		case 24:
+			fmt |= SABRE_ESS_ALEN_24;
+			break;
+		case 32:
+			fmt |= SABRE_ESS_ALEN_32;
+			break;
+		default:
+			dev_err(codec->dev, "Bad frame size: %d\n",
+					params_width(params));
+			return -EINVAL;
+		}
+
+		switch (params_rate(params)) {
+		case 44100:
+			fmt |= SABRE_ESS_RATE_44100;
+			break;
+		case 48000:
+			fmt |= SABRE_ESS_RATE_48000;
+			break;
+		case 88200:
+			fmt |= SABRE_ESS_RATE_88200;
+			break;
+		case 96000:
+			fmt |= SABRE_ESS_RATE_96000;
+			break;
+		case 176400:
+			fmt |= SABRE_ESS_RATE_176400;
+			break;
+		case 192000:
+			fmt |= SABRE_ESS_RATE_192000;
+			break;
+		case 352800:
+			fmt |= SABRE_ESS_RATE_352800;
+			break;
+		case 384000:
+			fmt |= SABRE_ESS_RATE_384000;
+			break;
+		default:
+			dev_err(codec->dev, "Bad sample rate: %d\n",
+					params_rate(params));
+			return -EINVAL;
+		}
+
+		ret = regmap_write(sabre_ess->regmap, SABRE_ESS_FORMAT, fmt);
+		if (ret != 0) {
+			dev_err(codec->dev, "Failed to set format: %d\n", ret);
+			return ret;
+		}
+		break;
+
+	default:
+		return -EINVAL;
+	}
+
+	return 0;
+}
+
+static int sabre_ess_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
+{
+	struct snd_soc_codec *codec = dai->codec;
+	struct sabre_ess_priv *sabre_ess = snd_soc_codec_get_drvdata(codec);
+
+	sabre_ess->fmt = fmt;
+
+	return 0;
+}
+
+static const struct snd_soc_dai_ops sabre_ess_dai_ops = {
+	.hw_params = sabre_ess_hw_params,
+	.set_fmt = sabre_ess_set_fmt,
+};
+
+static struct snd_soc_dai_driver sabre_ess_dai = {
+	.name = "sabre-ess",
+	.playback = {
+		.stream_name = "Playback",
+		.channels_min = 2,
+		.channels_max = 2,
+		.rates = SNDRV_PCM_RATE_CONTINUOUS,
+		.rate_min = 44100,
+		.rate_max = 384000,
+		.formats = SNDRV_PCM_FMTBIT_S16_LE |
+			SNDRV_PCM_FMTBIT_S32_LE
+	},
+	.ops = &sabre_ess_dai_ops,
+};
+
+static struct snd_soc_codec_driver sabre_ess_codec_driver = {
+	.idle_bias_off = false,
+
+	.component_driver = {
+		.controls		= sabre_ess_controls,
+		.num_controls	= ARRAY_SIZE(sabre_ess_controls),
+	},
+};
+
+static const struct regmap_range_cfg sabre_ess_range = {
+	.name = "Pages", .range_min = SABRE_ESS_VIRT_BASE,
+	.range_max = SABRE_ESS_MAX_REGISTER,
+	.selector_reg = SABRE_ESS_PAGE,
+	.selector_mask = 0xff,
+	.window_start = 0, .window_len = 0x100,
+};
+
+const struct regmap_config sabre_ess_regmap = {
+	.reg_bits = 8,
+	.val_bits = 8,
+
+	.ranges = &sabre_ess_range,
+	.num_ranges = 1,
+
+	.max_register = SABRE_ESS_MAX_REGISTER,
+	.readable_reg = sabre_ess_readable_register,
+	.reg_defaults = sabre_ess_reg_defaults,
+	.num_reg_defaults = ARRAY_SIZE(sabre_ess_reg_defaults),
+	.cache_type = REGCACHE_RBTREE,
+};
+EXPORT_SYMBOL_GPL(sabre_ess_regmap);
+
+int sabre_ess_probe(struct device *dev, struct regmap *regmap)
+{
+	struct sabre_ess_priv *sabre_ess;
+	unsigned int chip_id = 0;
+	int ret;
+
+	sabre_ess = devm_kzalloc(dev, sizeof(struct sabre_ess_priv),
+								GFP_KERNEL);
+	if (!sabre_ess)
+		return -ENOMEM;
+
+	dev_set_drvdata(dev, sabre_ess);
+	sabre_ess->regmap = regmap;
+
+	ret = regmap_read(regmap, SABRE_ESS_CHIP_ID_REG, &chip_id);
+	if ((ret != 0) || (chip_id != SABRE_ESS_CHIP_ID)) {
+		dev_err(dev, "Failed to read Chip or wrong Chip id: %d\n", ret);
+		return ret;
+	}
+	regmap_update_bits(regmap, SABRE_ESS_RESET, 0x01, 0x01);
+	msleep(10);
+
+	ret = snd_soc_register_codec(dev, &sabre_ess_codec_driver,
+				    &sabre_ess_dai, 1);
+	if (ret != 0) {
+		dev_err(dev, "failed to register codec: %d\n", ret);
+		return ret;
+	}
+
+	return 0;
+}
+EXPORT_SYMBOL_GPL(sabre_ess_probe);
+
+void sabre_ess_remove(struct device *dev)
+{
+	snd_soc_unregister_codec(dev);
+	pm_runtime_disable(dev);
+}
+EXPORT_SYMBOL_GPL(sabre_ess_remove);
+
+MODULE_DESCRIPTION("ASoC SABRE ESS codec driver");
+MODULE_AUTHOR("Jaikumar <jaikumar@cem-solutions.net>");
+MODULE_LICENSE("GPL v2");
+
--- /dev/null
+++ b/sound/soc/codecs/sabre-ess.h
@@ -0,0 +1,62 @@
+/*
+ * Driver for the SABRE ESS CODEC
+ *
+ * Author: Jaikumar <jaikumar@cem-solutions.net>
+ *		Copyright 2018
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * General Public License for more details.
+ */
+
+#ifndef _SND_SOC_SABRE_ESS_
+#define _SND_SOC_SABRE_ESS_
+
+#include <linux/pm.h>
+#include <linux/regmap.h>
+
+#define SABRE_ESS_CHIP_ID		0x30
+#define SABRE_ESS_VIRT_BASE		0x100
+#define SABRE_ESS_PAGE			0
+
+#define SABRE_ESS_CHIP_ID_REG	(SABRE_ESS_VIRT_BASE + 0)
+#define SABRE_ESS_RESET			(SABRE_ESS_VIRT_BASE + 1)
+#define SABRE_ESS_VOLUME_1		(SABRE_ESS_VIRT_BASE + 2)
+#define SABRE_ESS_VOLUME_2		(SABRE_ESS_VIRT_BASE + 3)
+#define SABRE_ESS_MUTE			(SABRE_ESS_VIRT_BASE + 4)
+#define SABRE_ESS_DSP_PROGRAM	(SABRE_ESS_VIRT_BASE + 5)
+#define SABRE_ESS_DEEMPHASIS	(SABRE_ESS_VIRT_BASE + 6)
+#define SABRE_ESS_DOP			(SABRE_ESS_VIRT_BASE + 7)
+#define SABRE_ESS_FORMAT		(SABRE_ESS_VIRT_BASE + 8)
+#define SABRE_ESS_COMMAND		(SABRE_ESS_VIRT_BASE + 9)
+#define SABRE_ESS_MAX_REGISTER	(SABRE_ESS_VIRT_BASE + 9)
+
+#define SABRE_ESS_FMT			0xff
+#define SABRE_ESS_CHAN_MONO		0x00
+#define SABRE_ESS_CHAN_STEREO	0x80
+#define SABRE_ESS_ALEN_16		0x10
+#define SABRE_ESS_ALEN_24		0x20
+#define SABRE_ESS_ALEN_32		0x30
+#define SABRE_ESS_RATE_11025	0x01
+#define SABRE_ESS_RATE_22050	0x02
+#define SABRE_ESS_RATE_32000	0x03
+#define SABRE_ESS_RATE_44100	0x04
+#define SABRE_ESS_RATE_48000	0x05
+#define SABRE_ESS_RATE_88200	0x06
+#define SABRE_ESS_RATE_96000	0x07
+#define SABRE_ESS_RATE_176400	0x08
+#define SABRE_ESS_RATE_192000	0x09
+#define SABRE_ESS_RATE_352800	0x0a
+#define SABRE_ESS_RATE_384000	0x0b
+
+extern const struct regmap_config sabre_ess_regmap;
+
+int sabre_ess_probe(struct device *dev, struct regmap *regmap);
+void sabre_ess_remove(struct device *dev);
+
+#endif /* _SND_SOC_SABRE_ESS_ */