summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-common/recipes-kernel/linux/linux-aspeed/0021-Initial-Port-of-Aspeed-LPC-SIO-driver.patch
blob: d1745ce5f5704bcadc7b1db1d2cb3d7b059b9236 (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
From 7d5cd323d3b05a00f8b8a6eb38a5a1ec7925660a Mon Sep 17 00:00:00 2001
From: Yong Li <yong.b.li@intel.com>
Date: Mon, 13 Nov 2017 16:29:44 +0800
Subject: [PATCH] Aspeed LPC SIO driver

Add lpc sio device driver for AST2500/2400

Signed-off-by: Yong Li <yong.b.li@intel.com>
Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@intel.com>
---
 .../devicetree/bindings/misc/aspeed-sio.txt        |  18 +
 arch/arm/boot/dts/aspeed-g4.dtsi                   |   7 +
 arch/arm/boot/dts/aspeed-g5.dtsi                   |   7 +
 drivers/misc/Kconfig                               |   9 +
 drivers/misc/Makefile                              |   1 +
 drivers/misc/aspeed-lpc-sio.c                      | 450 +++++++++++++++++++++
 include/uapi/linux/aspeed-lpc-sio.h                |  44 ++
 7 files changed, 536 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/misc/aspeed-sio.txt
 create mode 100644 drivers/misc/aspeed-lpc-sio.c
 create mode 100644 include/uapi/linux/aspeed-lpc-sio.h

diff --git a/Documentation/devicetree/bindings/misc/aspeed-sio.txt b/Documentation/devicetree/bindings/misc/aspeed-sio.txt
new file mode 100644
index 000000000000..3530c2b02f5c
--- /dev/null
+++ b/Documentation/devicetree/bindings/misc/aspeed-sio.txt
@@ -0,0 +1,18 @@
+* Aspeed LPC SIO driver.
+
+Required properties:
+- compatible : Should be one of:
+	"aspeed,ast2400-lpc-sio"
+	"aspeed,ast2500-lpc-sio"
+- reg : Should contain lpc-sio registers location and length
+- clocks: contains a phandle to the syscon node describing the clocks.
+	  There should then be one cell representing the clock to use.
+
+Example:
+lpc_sio: lpc-sio@100 {
+	compatible = "aspeed,ast2500-lpc-sio";
+	reg = <0x100 0x20>;
+        clocks = <&syscon ASPEED_CLK_GATE_LCLK>;
+	status = "disabled";
+};
+
diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi
index e8bcfc90bf7c..a87fd5ee1c84 100644
--- a/arch/arm/boot/dts/aspeed-g4.dtsi
+++ b/arch/arm/boot/dts/aspeed-g4.dtsi
@@ -340,6 +340,13 @@
 						compatible = "aspeed,bmc-misc";
 					};
 
+					lpc_sio: lpc-sio@100 {
+						compatible = "aspeed,ast2400-lpc-sio";
+						reg = <0x100 0x20>;
+						clocks = <&syscon ASPEED_CLK_GATE_LCLK>;
+						status = "disabled";
+					};
+
 					mbox: mbox@180 {
 						compatible = "aspeed,ast2400-mbox";
 						reg = <0x180 0x5c>;
diff --git a/arch/arm/boot/dts/aspeed-g5.dtsi b/arch/arm/boot/dts/aspeed-g5.dtsi
index e5c0ba0f87c8..a568699c28f4 100644
--- a/arch/arm/boot/dts/aspeed-g5.dtsi
+++ b/arch/arm/boot/dts/aspeed-g5.dtsi
@@ -451,6 +451,13 @@
 						compatible = "aspeed,bmc-misc";
 					};
 
+					lpc_sio: lpc-sio@100 {
+						compatible = "aspeed,ast2500-lpc-sio";
+						reg = <0x100 0x20>;
+						clocks = <&syscon ASPEED_CLK_GATE_LCLK>;
+						status = "disabled";
+					};
+
 					mbox: mbox@180 {
 						compatible = "aspeed,ast2500-mbox";
 						reg = <0x180 0x5c>;
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig
index 00d1c547ece7..3ffb18f915e8 100644
--- a/drivers/misc/Kconfig
+++ b/drivers/misc/Kconfig
@@ -493,6 +493,15 @@ config ASPEED_LPC_CTRL
 	  ioctl()s, the driver also provides a read/write interface to a BMC ram
 	  region where the host LPC read/write region can be buffered.
 
+config ASPEED_LPC_SIO
+	depends on (ARCH_ASPEED || COMPILE_TEST) && REGMAP && MFD_SYSCON
+	tristate "Aspeed ast2400/2500 HOST LPC SIO support"
+	help
+	  Provides a driver to control the LPC SIO interface
+          on ASPEED platform
+          through
+	  ioctl()s.
+
 config ASPEED_LPC_SNOOP
 	tristate "Aspeed ast2500 HOST LPC snoop support"
 	depends on (ARCH_ASPEED || COMPILE_TEST) && REGMAP && MFD_SYSCON
diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile
index 768278b059c3..de2d5c6d186c 100644
--- a/drivers/misc/Makefile
+++ b/drivers/misc/Makefile
@@ -53,6 +53,7 @@ obj-$(CONFIG_GENWQE)		+= genwqe/
 obj-$(CONFIG_ECHO)		+= echo/
 obj-$(CONFIG_VEXPRESS_SYSCFG)	+= vexpress-syscfg.o
 obj-$(CONFIG_CXL_BASE)		+= cxl/
+obj-$(CONFIG_ASPEED_LPC_SIO)	+= aspeed-lpc-sio.o
 obj-$(CONFIG_ASPEED_LPC_CTRL)	+= aspeed-lpc-ctrl.o
 obj-$(CONFIG_ASPEED_LPC_SNOOP)	+= aspeed-lpc-snoop.o
 obj-$(CONFIG_ASPEED_LPC_MBOX)	+= aspeed-lpc-mbox.o
--- /dev/null
+++ b/drivers/misc/aspeed-lpc-sio.c
@@ -0,0 +1,450 @@
+// SPDX-License-Identifier: GPL-2.0
+// Copyright (C) 2012-2017 ASPEED Technology Inc.
+// Copyright (c) 2017-2019 Intel Corporation
+
+#include <linux/clk.h>
+#include <linux/mfd/syscon.h>
+#include <linux/miscdevice.h>
+#include <linux/mm.h>
+#include <linux/module.h>
+#include <linux/of_address.h>
+#include <linux/platform_device.h>
+#include <linux/poll.h>
+#include <linux/regmap.h>
+
+#include <linux/aspeed-lpc-sio.h>
+
+#define SOC_NAME "aspeed"
+#define DEVICE_NAME	"lpc-sio"
+
+#define AST_LPC_SWCR0300			0x0
+#define LPC_PWRGD_STS                   (1 << 30)
+#define LPC_PWRGD_RISING_EVT_STS        (1 << 29)
+#define LPC_PWRGD_FALLING_EVT_STS       (1 << 28)
+#define LPC_PWRBTN_STS                  (1 << 27)
+#define LPC_PWRBTN_RISING_EVT_STS       (1 << 26)
+#define LPC_PWRBTN_FALLING_EVT_STS      (1 << 25)
+#define LPC_S5N_STS                     (1 << 21)
+#define LPC_S5N_RISING_EVT_STS          (1 << 20)
+#define LPC_S5N_FALLING_EVT_STS         (1 << 19)
+#define LPC_S3N_STS                     (1 << 18)
+#define LPC_S3N_RISING_EVT_STS          (1 << 17)
+#define LPC_S3N_FALLING_EVT_STS         (1 << 16)
+#define LPC_PWBTO_RAW_STS               (1 << 15)
+#define LPC_LAST_ONCTL_STS              (1 << 14)
+#define LPC_WAS_PFAIL_STS               (1 << 13)
+#define LPC_POWER_UP_FAIL_STS           (1 << 12) /* Crowbar */
+#define LPC_PWRBTN_OVERRIDE_STS         (1 << 11)
+
+#define AST_LPC_SWCR0704			0x4
+
+#define AST_LPC_SWCR0B08			0x8
+#define LPC_PWREQ_OUTPUT_LEVEL          (1 << 25)
+#define LPC_PWBTO_OUTPUT_LEVEL          (1 << 24)
+#define LPC_ONCTL_STS                   (1 << 15)
+#define LPC_ONCTL_GPIO_LEVEL            (1 << 14)
+#define LPC_ONCTL_EN_GPIO_OUTPUT        (1 << 13)
+#define LPC_ONCTL_EN_GPIO_MODE          (1 << 12)
+
+#define AST_LPC_SWCR0F0C			0xC
+#define AST_LPC_SWCR1310			0x10
+#define AST_LPC_SWCR1714			0x14
+#define AST_LPC_SWCR1B18			0x18
+#define AST_LPC_SWCR1F1C			0x1C
+#define AST_LPC_ACPIE3E0			0x20
+#define AST_LPC_ACPIC1C0			0x24
+#define AST_LPC_ACPIB3B0			0x28
+#define AST_LPC_ACPIB7B4			0x2C
+
+struct aspeed_lpc_sio {
+	struct miscdevice	miscdev;
+	struct regmap		*regmap;
+	struct clk		*clk;
+	struct semaphore	lock;
+	unsigned int		reg_base;
+};
+
+static struct aspeed_lpc_sio *file_aspeed_lpc_sio(struct file *file)
+{
+	return container_of(file->private_data, struct aspeed_lpc_sio,
+			miscdev);
+}
+
+static int aspeed_lpc_sio_open(struct inode *inode, struct file *filp)
+{
+	return 0;
+}
+
+#define LPC_SLP3N5N_EVENT_STATUS	(\
+		LPC_S5N_RISING_EVT_STS  |    \
+		LPC_S5N_FALLING_EVT_STS |    \
+		LPC_S3N_RISING_EVT_STS  |    \
+		LPC_S3N_FALLING_EVT_STS)
+/*************************************
+ *  SLPS3n SLPS5n State
+ *  ---------------------------------
+ *   1      1      S12
+ *   0      1      S3I
+ *   x      0      S45
+ *************************************
+ */
+
+static long sio_get_acpi_state(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0300;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	/* update the ACPI state event status */
+	if (sio_data->param != 0) {
+		if (val & LPC_SLP3N5N_EVENT_STATUS) {
+			sio_data->param = 1;
+			rc = regmap_write(lpc_sio->regmap, reg,
+				LPC_SLP3N5N_EVENT_STATUS);
+			if (rc) {
+				dev_err(lpc_sio->miscdev.parent,
+					"regmap_write() failed with %d(reg:0x%x)\n",
+					rc, reg);
+				return rc;
+			}
+		} else {
+			sio_data->param = 0;
+		}
+	}
+
+	if ((val & LPC_S3N_STS) && (val & LPC_S5N_STS))
+		sio_data->data = ACPI_STATE_S12;
+	else if ((val & LPC_S3N_STS) == 0 && (val & LPC_S5N_STS))
+		sio_data->data = ACPI_STATE_S3I;
+	else
+		sio_data->data = ACPI_STATE_S45;
+
+	return 0;
+}
+
+#define LPC_PWRGD_EVENT_STATUS  (   \
+		LPC_PWRGD_RISING_EVT_STS  | \
+		LPC_PWRGD_FALLING_EVT_STS)
+
+static long sio_get_pwrgd_status(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0300;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	/* update the PWRGD event status */
+	if (sio_data->param != 0) {
+		if (val & LPC_PWRGD_EVENT_STATUS) {
+			sio_data->param = 1;
+			rc = regmap_write(lpc_sio->regmap, reg,
+				LPC_PWRGD_EVENT_STATUS);
+			if (rc) {
+				dev_err(lpc_sio->miscdev.parent,
+					"regmap_write() failed with %d(reg:0x%x)\n",
+					rc, reg);
+				return rc;
+			}
+		} else {
+			sio_data->param = 0;
+		}
+	}
+
+	sio_data->data = (val & LPC_PWRGD_STS) != 0 ? 1 : 0;
+
+	return 0;
+}
+
+static long sio_get_onctl_status(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0B08;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	sio_data->data = (val & LPC_ONCTL_STS) != 0 ? 1 : 0;
+
+	return 0;
+}
+
+static long sio_set_onctl_gpio(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0B08;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	/* Enable ONCTL GPIO mode */
+	if (sio_data->param != 0) {
+		val |= LPC_ONCTL_EN_GPIO_MODE;
+		val |= LPC_ONCTL_EN_GPIO_OUTPUT;
+
+		if (sio_data->data != 0)
+			val |=  LPC_ONCTL_GPIO_LEVEL;
+		else
+			val &= ~LPC_ONCTL_GPIO_LEVEL;
+
+		rc = regmap_write(lpc_sio->regmap, reg, val);
+		if (rc) {
+			dev_err(lpc_sio->miscdev.parent,
+			"regmap_write() failed with %d(reg:0x%x)\n", rc, reg);
+			return rc;
+		}
+	} else {
+		val &= ~LPC_ONCTL_EN_GPIO_MODE;
+		rc = regmap_write(lpc_sio->regmap, reg, val);
+		if (rc) {
+			dev_err(lpc_sio->miscdev.parent,
+			"regmap_write() failed with %d(reg:0x%x)\n", rc, reg);
+			return rc;
+		}
+	}
+
+	return 0;
+}
+
+static long sio_get_pwrbtn_override(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0300;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	/* clear the PWRBTN OVERRIDE status */
+	if (sio_data->param != 0) {
+		if (val & LPC_PWRBTN_OVERRIDE_STS) {
+			rc = regmap_write(lpc_sio->regmap, reg,
+				LPC_PWRBTN_OVERRIDE_STS);
+			if (rc) {
+				dev_err(lpc_sio->miscdev.parent,
+				"regmap_write() failed with %d(reg:0x%x)\n",
+				rc, reg);
+				return rc;
+			}
+		}
+	}
+
+	sio_data->data = (val & LPC_PWRBTN_OVERRIDE_STS) != 0 ? 1 : 0;
+
+	return 0;
+}
+
+static long sio_get_pfail_status(struct aspeed_lpc_sio *lpc_sio,
+				struct sio_ioctl_data *sio_data)
+{
+	u32 reg;
+	u32 val;
+	int rc;
+
+	reg = lpc_sio->reg_base + AST_LPC_SWCR0300;
+	rc = regmap_read(lpc_sio->regmap, reg, &val);
+	if (rc) {
+		dev_err(lpc_sio->miscdev.parent,
+			"regmap_read() failed with %d(reg:0x%x)\n", rc, reg);
+		return rc;
+	}
+
+	/* [ASPEED]: SWCR_03_00[13] (Was_pfail: default 1) is used to identify
+	 * this current booting is from AC loss (not DC loss) if FW cleans this
+	 * bit after booting successfully every time.
+	 **********************************************************************/
+	if (val & LPC_WAS_PFAIL_STS) {
+		rc = regmap_write(lpc_sio->regmap, reg, 0);  /* W0C */
+		if (rc) {
+			dev_err(lpc_sio->miscdev.parent,
+			"regmap_write() failed with %d(reg:0x%x)\n", rc, reg);
+			return rc;
+		}
+		sio_data->data = 1;
+	} else {
+		sio_data->data = 0;
+	}
+
+	return 0;
+}
+
+typedef long (*sio_cmd_fn) (struct aspeed_lpc_sio *sio_dev,
+	struct sio_ioctl_data *sio_data);
+static sio_cmd_fn sio_cmd_handle[SIO_MAX_CMD] = {
+	[SIO_GET_ACPI_STATE]        = sio_get_acpi_state,
+	[SIO_GET_PWRGD_STATUS]      = sio_get_pwrgd_status,
+	[SIO_GET_ONCTL_STATUS]      = sio_get_onctl_status,
+	[SIO_SET_ONCTL_GPIO]        = sio_set_onctl_gpio,
+	[SIO_GET_PWRBTN_OVERRIDE]   = sio_get_pwrbtn_override,
+	[SIO_GET_PFAIL_STATUS]      = sio_get_pfail_status,
+};
+
+static long aspeed_lpc_sio_ioctl(struct file *file, unsigned int cmd,
+		unsigned long param)
+{
+	struct aspeed_lpc_sio *lpc_sio = file_aspeed_lpc_sio(file);
+	long ret;
+	sio_cmd_fn cmd_fn;
+	struct sio_ioctl_data sio_data;
+
+
+	if (copy_from_user(&sio_data, (void __user *)param, sizeof(sio_data)))
+		return -EFAULT;
+
+	if (cmd != SIO_IOC_COMMAND || sio_data.sio_cmd >= SIO_MAX_CMD)
+		return -EINVAL;
+
+	cmd_fn = sio_cmd_handle[sio_data.sio_cmd];
+	if (cmd_fn == NULL)
+		return -EINVAL;
+
+	if (down_interruptible(&lpc_sio->lock) != 0)
+		return -ERESTARTSYS;
+
+	ret = cmd_fn(lpc_sio, &sio_data);
+	if (ret == 0) {
+		if (copy_to_user((void __user *)param, &sio_data,
+			sizeof(sio_data)))
+			ret = -EFAULT;
+	}
+
+	up(&lpc_sio->lock);
+
+	return ret;
+}
+
+static const struct file_operations aspeed_lpc_sio_fops = {
+	.owner		= THIS_MODULE,
+	.open		= aspeed_lpc_sio_open,
+	.unlocked_ioctl	= aspeed_lpc_sio_ioctl,
+};
+
+static int aspeed_lpc_sio_probe(struct platform_device *pdev)
+{
+	struct aspeed_lpc_sio *lpc_sio;
+	struct device *dev;
+	int rc;
+
+	dev = &pdev->dev;
+
+	lpc_sio = devm_kzalloc(dev, sizeof(*lpc_sio), GFP_KERNEL);
+	if (!lpc_sio)
+		return -ENOMEM;
+
+	dev_set_drvdata(&pdev->dev, lpc_sio);
+
+	rc = of_property_read_u32(dev->of_node, "reg", &lpc_sio->reg_base);
+	if (rc) {
+		dev_err(dev, "Couldn't read reg device-tree property\n");
+		return rc;
+	}
+
+	lpc_sio->regmap = syscon_node_to_regmap(
+			pdev->dev.parent->of_node);
+	if (IS_ERR(lpc_sio->regmap)) {
+		dev_err(dev, "Couldn't get regmap\n");
+		return -ENODEV;
+	}
+
+	sema_init(&lpc_sio->lock, 1);
+
+	lpc_sio->clk = devm_clk_get(dev, NULL);
+	if (IS_ERR(lpc_sio->clk)) {
+		rc = PTR_ERR(lpc_sio->clk);
+		if (rc != -EPROBE_DEFER)
+			dev_err(dev, "couldn't get clock\n");
+		return rc;
+	}
+	rc = clk_prepare_enable(lpc_sio->clk);
+	if (rc) {
+		dev_err(dev, "couldn't enable clock\n");
+		return rc;
+	}
+
+	lpc_sio->miscdev.minor = MISC_DYNAMIC_MINOR;
+	lpc_sio->miscdev.name = DEVICE_NAME;
+	lpc_sio->miscdev.fops = &aspeed_lpc_sio_fops;
+	lpc_sio->miscdev.parent = dev;
+	rc = misc_register(&lpc_sio->miscdev);
+	if (rc) {
+		dev_err(dev, "Unable to register device\n");
+		goto err;
+	}
+
+	dev_info(dev, "Loaded at %pap (0x%08x)\n", &lpc_sio->regmap,
+		 lpc_sio->reg_base);
+
+	return 0;
+
+err:
+	clk_disable_unprepare(lpc_sio->clk);
+
+	return rc;
+}
+
+static int aspeed_lpc_sio_remove(struct platform_device *pdev)
+{
+	struct aspeed_lpc_sio *lpc_sio = dev_get_drvdata(&pdev->dev);
+
+	misc_deregister(&lpc_sio->miscdev);
+	clk_disable_unprepare(lpc_sio->clk);
+
+	return 0;
+}
+
+static const struct of_device_id aspeed_lpc_sio_match[] = {
+	{ .compatible = "aspeed,ast2500-lpc-sio" },
+	{ },
+};
+MODULE_DEVICE_TABLE(of, aspeed_lpc_sio_match);
+
+static struct platform_driver aspeed_lpc_sio_driver = {
+	.driver = {
+		.name		= SOC_NAME "-" DEVICE_NAME,
+		.of_match_table = aspeed_lpc_sio_match,
+	},
+	.probe = aspeed_lpc_sio_probe,
+	.remove = aspeed_lpc_sio_remove,
+};
+module_platform_driver(aspeed_lpc_sio_driver);
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Ryan Chen <ryan_chen@aspeedtech.com>");
+MODULE_AUTHOR("Yong Li <yong.blli@linux.intel.com>");
+MODULE_DESCRIPTION("ASPEED AST LPC SIO device driver");
diff --git a/include/uapi/linux/aspeed-lpc-sio.h b/include/uapi/linux/aspeed-lpc-sio.h
new file mode 100644
index 000000000000..5dc1efd4a426
--- /dev/null
+++ b/include/uapi/linux/aspeed-lpc-sio.h
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2012-2020	ASPEED Technology Inc.
+ * Copyright (c) 2017 Intel Corporation
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ *
+ */
+
+#ifndef _UAPI_LINUX_ASPEED_LPC_SIO_H
+#define _UAPI_LINUX_ASPEED_LPC_SIO_H
+
+#include <linux/ioctl.h>
+
+enum ACPI_SLP_STATE {
+	ACPI_STATE_S12 = 1,
+	ACPI_STATE_S3I,
+	ACPI_STATE_S45
+};
+
+/* SWC & ACPI for SuperIO IOCTL */
+enum SIO_CMD {
+	SIO_GET_ACPI_STATE = 0,
+	SIO_GET_PWRGD_STATUS,
+	SIO_GET_ONCTL_STATUS,
+	SIO_SET_ONCTL_GPIO,
+	SIO_GET_PWRBTN_OVERRIDE,
+	SIO_GET_PFAIL_STATUS, /* Start from AC Loss */
+
+	SIO_MAX_CMD
+};
+
+struct sio_ioctl_data {
+	unsigned short sio_cmd;
+	unsigned short param;
+	unsigned int   data;
+};
+
+#define SIO_IOC_BASE            'P'
+#define SIO_IOC_COMMAND         _IOWR(SIO_IOC_BASE, 1, struct sio_ioctl_data)
+
+#endif /* _UAPI_LINUX_ASPEED_LPC_SIO_H */
-- 
2.7.4