blob: 52c8e3c7789dc81f6f6bd5ae60a6672f500dc8ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implement 'Simple Boot Flag Specification 2.0'
3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/types.h>
5#include <linux/kernel.h>
6#include <linux/init.h>
7#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/spinlock.h>
9#include <linux/acpi.h>
10#include <asm/io.h>
11
12#include <linux/mc146818rtc.h>
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#define SBF_RESERVED (0x78)
15#define SBF_PNPOS (1<<0)
16#define SBF_BOOTING (1<<1)
17#define SBF_DIAG (1<<2)
18#define SBF_PARITY (1<<7)
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020int sbf_port __initdata = -1; /* set via acpi_boot_init() */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static int __init parity(u8 v)
23{
24 int x = 0;
25 int i;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010026
27 for (i = 0; i < 8; i++) {
28 x ^= (v & 1);
29 v >>= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 }
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return x;
33}
34
35static void __init sbf_write(u8 v)
36{
37 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010039 if (sbf_port != -1) {
40 v &= ~SBF_PARITY;
41 if (!parity(v))
42 v |= SBF_PARITY;
43
44 printk(KERN_INFO "Simple Boot Flag at 0x%x set to 0x%x\n",
45 sbf_port, v);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47 spin_lock_irqsave(&rtc_lock, flags);
48 CMOS_WRITE(v, sbf_port);
49 spin_unlock_irqrestore(&rtc_lock, flags);
50 }
51}
52
53static u8 __init sbf_read(void)
54{
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 unsigned long flags;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010056 u8 v;
57
58 if (sbf_port == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 spin_lock_irqsave(&rtc_lock, flags);
62 v = CMOS_READ(sbf_port);
63 spin_unlock_irqrestore(&rtc_lock, flags);
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return v;
66}
67
68static int __init sbf_value_valid(u8 v)
69{
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010070 if (v & SBF_RESERVED) /* Reserved bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010072 if (!parity(v))
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010074
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return 1;
76}
77
78static int __init sbf_init(void)
79{
80 u8 v;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010081
82 if (sbf_port == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 return 0;
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 v = sbf_read();
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010086 if (!sbf_value_valid(v)) {
87 printk(KERN_WARNING "Simple Boot Flag value 0x%x read from "
88 "CMOS RAM was invalid\n", v);
89 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 v &= ~SBF_RESERVED;
92 v &= ~SBF_BOOTING;
93 v &= ~SBF_DIAG;
94#if defined(CONFIG_ISAPNP)
95 v |= SBF_PNPOS;
96#endif
97 sbf_write(v);
Cyrill Gorcunov8eed9262008-01-30 13:32:31 +010098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 0;
100}
Paul Gortmaker1206f532015-05-01 20:08:21 -0400101arch_initcall(sbf_init);