Skip to content

Commit 24ea869

Browse files
jsun26inteljren1
authored andcommitted
HV: add px data of bxt j3455 SOC
The cpu model name of "Intel(R) Celeron(R) CPU J3455 @ 1.50GHz" is used for APL NUC which is in Acrn official suport list. Signed-off-by: Victor Sun <victor.sun@intel.com> Acked-by: Kevin Tian <kevin.tian@intel.com>
1 parent 7647517 commit 24ea869

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

hypervisor/arch/x86/cpu_state_tbl.c

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,22 @@ struct cpu_px_data px_a3960[] = {
5555
{0x320, 0, 0xA, 0xA, 0x0800, 0x0800} /* P16 */
5656
};
5757

58+
/* The table includes cpu px info of Intel J3455 SoC */
59+
struct cpu_px_data px_j3455[] = {
60+
{0x5DD, 0, 0xA, 0xA, 0x1700, 0x1700}, /* P0 */
61+
{0x5DC, 0, 0xA, 0xA, 0x0F00, 0x0F00}, /* P1 */
62+
{0x578, 0, 0xA, 0xA, 0x0E00, 0x0E00}, /* P2 */
63+
{0x514, 0, 0xA, 0xA, 0x0D00, 0x0D00}, /* P3 */
64+
{0x4B0, 0, 0xA, 0xA, 0x0C00, 0x0C00}, /* P4 */
65+
{0x44C, 0, 0xA, 0xA, 0x0B00, 0x0B00}, /* P5 */
66+
{0x3E8, 0, 0xA, 0xA, 0x0A00, 0x0A00}, /* P6 */
67+
{0x384, 0, 0xA, 0xA, 0x0900, 0x0900}, /* P7 */
68+
{0x320, 0, 0xA, 0xA, 0x0800, 0x0800} /* P8 */
69+
};
70+
5871
struct cpu_state_table cpu_state_tbl[] = {
59-
{"Intel(R) Atom(TM) Processor A3960 @ 1.90GHz", 17, px_a3960}
72+
{"Intel(R) Atom(TM) Processor A3960 @ 1.90GHz", 17, px_a3960},
73+
{"Intel(R) Celeron(R) CPU J3455 @ 1.50GHz", 9, px_j3455}
6074
};
6175

6276
static int get_state_tbl_idx(char *cpuname)

0 commit comments

Comments
 (0)