blob: 20b958cfd4157ef05a506b5d9c1c0849438ae998 [file] [log] [blame]
Bin Mengfabb2b42018-07-03 02:48:40 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
4 *
5 * Generic reset driver for x86 processor
6 */
7
8#include <common.h>
9#include <dm.h>
10#include <sysreset.h>
11#include <asm/io.h>
12#include <asm/processor.h>
13
14static int x86_sysreset_request(struct udevice *dev, enum sysreset_t type)
15{
16 int value;
17
18 switch (type) {
19 case SYSRESET_WARM:
20 value = SYS_RST | RST_CPU;
21 break;
22 case SYSRESET_COLD:
23 value = SYS_RST | RST_CPU | FULL_RST;
24 break;
25 default:
26 return -ENOSYS;
27 }
28
29 outb(value, IO_PORT_RESET);
30
31 return -EINPROGRESS;
32}
33
34static const struct udevice_id x86_sysreset_ids[] = {
35 { .compatible = "x86,reset" },
36 { }
37};
38
39static struct sysreset_ops x86_sysreset_ops = {
40 .request = x86_sysreset_request,
41};
42
43U_BOOT_DRIVER(x86_sysreset) = {
44 .name = "x86-sysreset",
45 .id = UCLASS_SYSRESET,
46 .of_match = x86_sysreset_ids,
47 .ops = &x86_sysreset_ops,
Bin Mengfabb2b42018-07-03 02:48:40 -070048};