2016-02-18 21:35:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Martin Peres
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors: Martin Peres
|
|
|
|
*/
|
|
|
|
#include <subdev/bios.h>
|
|
|
|
#include <subdev/bios/bit.h>
|
2016-07-28 03:49:47 +08:00
|
|
|
#include <subdev/bios/extdev.h>
|
2016-02-18 21:35:12 +08:00
|
|
|
#include <subdev/bios/iccsense.h>
|
|
|
|
|
2016-11-18 09:31:27 +08:00
|
|
|
static u32
|
2016-02-18 21:35:12 +08:00
|
|
|
nvbios_iccsense_table(struct nvkm_bios *bios, u8 *ver, u8 *hdr, u8 *cnt,
|
|
|
|
u8 *len)
|
|
|
|
{
|
|
|
|
struct bit_entry bit_P;
|
2016-11-18 09:31:27 +08:00
|
|
|
u32 iccsense;
|
2016-02-18 21:35:12 +08:00
|
|
|
|
|
|
|
if (bit_entry(bios, 'P', &bit_P) || bit_P.version != 2 ||
|
|
|
|
bit_P.length < 0x2c)
|
|
|
|
return 0;
|
|
|
|
|
2016-11-18 09:31:27 +08:00
|
|
|
iccsense = nvbios_rd32(bios, bit_P.offset + 0x28);
|
2016-02-18 21:35:12 +08:00
|
|
|
if (!iccsense)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*ver = nvbios_rd08(bios, iccsense + 0);
|
|
|
|
switch (*ver) {
|
|
|
|
case 0x10:
|
|
|
|
case 0x20:
|
|
|
|
*hdr = nvbios_rd08(bios, iccsense + 1);
|
|
|
|
*len = nvbios_rd08(bios, iccsense + 2);
|
|
|
|
*cnt = nvbios_rd08(bios, iccsense + 3);
|
|
|
|
return iccsense;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
nvbios_iccsense_parse(struct nvkm_bios *bios, struct nvbios_iccsense *iccsense)
|
|
|
|
{
|
|
|
|
struct nvkm_subdev *subdev = &bios->subdev;
|
|
|
|
u8 ver, hdr, cnt, len, i;
|
2016-11-18 09:31:27 +08:00
|
|
|
u32 table, entry;
|
2016-02-18 21:35:12 +08:00
|
|
|
|
|
|
|
table = nvbios_iccsense_table(bios, &ver, &hdr, &cnt, &len);
|
|
|
|
if (!table || !cnt)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (ver != 0x10 && ver != 0x20) {
|
|
|
|
nvkm_error(subdev, "ICCSENSE version 0x%02x unknown\n", ver);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
iccsense->nr_entry = cnt;
|
treewide: kmalloc() -> kmalloc_array()
The kmalloc() function has a 2-factor argument form, kmalloc_array(). This
patch replaces cases of:
kmalloc(a * b, gfp)
with:
kmalloc_array(a * b, gfp)
as well as handling cases of:
kmalloc(a * b * c, gfp)
with:
kmalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kmalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kmalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The tools/ directory was manually excluded, since it has its own
implementation of kmalloc().
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kmalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kmalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kmalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kmalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kmalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kmalloc
+ kmalloc_array
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kmalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kmalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kmalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kmalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kmalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kmalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kmalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kmalloc(sizeof(THING) * C2, ...)
|
kmalloc(sizeof(TYPE) * C2, ...)
|
kmalloc(C1 * C2 * C3, ...)
|
kmalloc(C1 * C2, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * E2
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kmalloc
+ kmalloc_array
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 04:55:00 +08:00
|
|
|
iccsense->rail = kmalloc_array(cnt, sizeof(struct pwr_rail_t),
|
|
|
|
GFP_KERNEL);
|
2016-02-18 21:35:12 +08:00
|
|
|
if (!iccsense->rail)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
for (i = 0; i < cnt; ++i) {
|
2016-07-28 03:49:47 +08:00
|
|
|
struct nvbios_extdev_func extdev;
|
2016-02-18 21:35:12 +08:00
|
|
|
struct pwr_rail_t *rail = &iccsense->rail[i];
|
2016-07-28 03:49:47 +08:00
|
|
|
u8 res_start = 0;
|
|
|
|
int r;
|
|
|
|
|
2016-02-18 21:35:12 +08:00
|
|
|
entry = table + hdr + i * len;
|
|
|
|
|
|
|
|
switch(ver) {
|
|
|
|
case 0x10:
|
2017-04-24 02:06:37 +08:00
|
|
|
if ((nvbios_rd08(bios, entry + 0x1) & 0xf8) == 0xf8)
|
|
|
|
rail->mode = 1;
|
|
|
|
else
|
|
|
|
rail->mode = 0;
|
2016-02-18 21:35:12 +08:00
|
|
|
rail->extdev_id = nvbios_rd08(bios, entry + 0x2);
|
2016-07-28 03:49:47 +08:00
|
|
|
res_start = 0x3;
|
2016-02-18 21:35:12 +08:00
|
|
|
break;
|
|
|
|
case 0x20:
|
|
|
|
rail->mode = nvbios_rd08(bios, entry);
|
|
|
|
rail->extdev_id = nvbios_rd08(bios, entry + 0x1);
|
2016-07-28 03:49:47 +08:00
|
|
|
res_start = 0x5;
|
|
|
|
break;
|
2017-11-01 01:56:19 +08:00
|
|
|
}
|
2016-07-28 03:49:47 +08:00
|
|
|
|
|
|
|
if (nvbios_extdev_parse(bios, rail->extdev_id, &extdev))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (extdev.type) {
|
|
|
|
case NVBIOS_EXTDEV_INA209:
|
|
|
|
case NVBIOS_EXTDEV_INA219:
|
|
|
|
rail->resistor_count = 1;
|
|
|
|
break;
|
|
|
|
case NVBIOS_EXTDEV_INA3221:
|
|
|
|
rail->resistor_count = 3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
rail->resistor_count = 0;
|
2016-02-18 21:35:12 +08:00
|
|
|
break;
|
2017-11-01 01:56:19 +08:00
|
|
|
}
|
2016-07-28 03:49:47 +08:00
|
|
|
|
|
|
|
for (r = 0; r < rail->resistor_count; ++r) {
|
|
|
|
rail->resistors[r].mohm = nvbios_rd08(bios, entry + res_start + r * 2);
|
|
|
|
rail->resistors[r].enabled = !(nvbios_rd08(bios, entry + res_start + r * 2 + 1) & 0x40);
|
|
|
|
}
|
|
|
|
rail->config = nvbios_rd16(bios, entry + res_start + rail->resistor_count * 2);
|
2016-02-18 21:35:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|