1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/init.h>
15 static u8 centaur_mcr_reserved
;
16 static u8 centaur_mcr_type
; /* 0 for winchip, 1 for winchip2 */
19 * centaur_get_free_region - Get a free MTRR.
21 * @base: The starting (base) address of the region.
22 * @size: The size (in bytes) of the region.
24 * Returns: the index of the region on success, else -1 on error.
27 centaur_get_free_region(unsigned long base
, unsigned long size
, int replace_reg
)
29 unsigned long lbase
, lsize
;
34 if (replace_reg
>= 0 && replace_reg
< max
)
37 for (i
= 0; i
< max
; ++i
) {
38 if (centaur_mcr_reserved
& (1 << i
))
40 mtrr_if
->get(i
, &lbase
, &lsize
, <ype
);
49 centaur_get_mcr(unsigned int reg
, unsigned long *base
,
50 unsigned long *size
, mtrr_type
* type
)
52 *base
= centaur_mcr
[reg
].high
>> PAGE_SHIFT
;
53 *size
= -(centaur_mcr
[reg
].low
& 0xfffff000) >> PAGE_SHIFT
;
54 *type
= MTRR_TYPE_WRCOMB
; /* write-combining */
56 if (centaur_mcr_type
== 1 && ((centaur_mcr
[reg
].low
& 31) & 2))
57 *type
= MTRR_TYPE_UNCACHABLE
;
58 if (centaur_mcr_type
== 1 && (centaur_mcr
[reg
].low
& 31) == 25)
59 *type
= MTRR_TYPE_WRBACK
;
60 if (centaur_mcr_type
== 0 && (centaur_mcr
[reg
].low
& 31) == 31)
61 *type
= MTRR_TYPE_WRBACK
;
65 centaur_set_mcr(unsigned int reg
, unsigned long base
,
66 unsigned long size
, mtrr_type type
)
68 unsigned long low
, high
;
74 high
= base
<< PAGE_SHIFT
;
75 if (centaur_mcr_type
== 0) {
76 /* Only support write-combining... */
77 low
= -size
<< PAGE_SHIFT
| 0x1f;
79 if (type
== MTRR_TYPE_UNCACHABLE
)
80 low
= -size
<< PAGE_SHIFT
| 0x02; /* NC */
82 low
= -size
<< PAGE_SHIFT
| 0x09; /* WWO, WC */
85 centaur_mcr
[reg
].high
= high
;
86 centaur_mcr
[reg
].low
= low
;
87 wrmsr(MSR_IDT_MCR0
+ reg
, low
, high
);
91 centaur_validate_add_page(unsigned long base
, unsigned long size
, unsigned int type
)
94 * FIXME: Winchip2 supports uncached
96 if (type
!= MTRR_TYPE_WRCOMB
&&
97 (centaur_mcr_type
== 0 || type
!= MTRR_TYPE_UNCACHABLE
)) {
98 pr_warn("mtrr: only write-combining%s supported\n",
99 centaur_mcr_type
? " and uncacheable are" : " is");
105 const struct mtrr_ops centaur_mtrr_ops
= {
107 .set
= centaur_set_mcr
,
108 .get
= centaur_get_mcr
,
109 .get_free_region
= centaur_get_free_region
,
110 .validate_add_page
= centaur_validate_add_page
,
111 .have_wrcomb
= positive_have_wrcomb
,