0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #include <subdev/bios.h>
0025 #include <subdev/bios/bit.h>
0026 #include <subdev/bios/bmp.h>
0027 #include <subdev/bios/conn.h>
0028 #include <subdev/bios/dcb.h>
0029 #include <subdev/bios/dp.h>
0030 #include <subdev/bios/gpio.h>
0031 #include <subdev/bios/init.h>
0032 #include <subdev/bios/ramcfg.h>
0033
0034 #include <subdev/devinit.h>
0035 #include <subdev/gpio.h>
0036 #include <subdev/i2c.h>
0037 #include <subdev/vga.h>
0038
0039 #include <linux/kernel.h>
0040
0041 #define bioslog(lvl, fmt, args...) do { \
0042 nvkm_printk(init->subdev, lvl, info, "0x%08x[%c]: "fmt, \
0043 init->offset, init_exec(init) ? \
0044 '0' + (init->nested - 1) : ' ', ##args); \
0045 } while(0)
0046 #define cont(fmt, args...) do { \
0047 if (init->subdev->debug >= NV_DBG_TRACE) \
0048 printk(fmt, ##args); \
0049 } while(0)
0050 #define trace(fmt, args...) bioslog(TRACE, fmt, ##args)
0051 #define warn(fmt, args...) bioslog(WARN, fmt, ##args)
0052 #define error(fmt, args...) bioslog(ERROR, fmt, ##args)
0053
0054
0055
0056
0057
0058 static inline bool
0059 init_exec(struct nvbios_init *init)
0060 {
0061 return (init->execute == 1) || ((init->execute & 5) == 5);
0062 }
0063
0064 static inline void
0065 init_exec_set(struct nvbios_init *init, bool exec)
0066 {
0067 if (exec) init->execute &= 0xfd;
0068 else init->execute |= 0x02;
0069 }
0070
0071 static inline void
0072 init_exec_inv(struct nvbios_init *init)
0073 {
0074 init->execute ^= 0x02;
0075 }
0076
0077 static inline void
0078 init_exec_force(struct nvbios_init *init, bool exec)
0079 {
0080 if (exec) init->execute |= 0x04;
0081 else init->execute &= 0xfb;
0082 }
0083
0084
0085
0086
0087
0088 static inline int
0089 init_or(struct nvbios_init *init)
0090 {
0091 if (init_exec(init)) {
0092 if (init->or >= 0)
0093 return init->or;
0094 error("script needs OR!!\n");
0095 }
0096 return 0;
0097 }
0098
0099 static inline int
0100 init_link(struct nvbios_init *init)
0101 {
0102 if (init_exec(init)) {
0103 if (init->link)
0104 return init->link == 2;
0105 error("script needs OR link\n");
0106 }
0107 return 0;
0108 }
0109
0110 static inline int
0111 init_head(struct nvbios_init *init)
0112 {
0113 if (init_exec(init)) {
0114 if (init->head >= 0)
0115 return init->head;
0116 error("script needs head\n");
0117 }
0118 return 0;
0119 }
0120
0121 static u8
0122 init_conn(struct nvbios_init *init)
0123 {
0124 struct nvkm_bios *bios = init->subdev->device->bios;
0125 struct nvbios_connE connE;
0126 u8 ver, hdr;
0127 u32 conn;
0128
0129 if (init_exec(init)) {
0130 if (init->outp) {
0131 conn = init->outp->connector;
0132 conn = nvbios_connEp(bios, conn, &ver, &hdr, &connE);
0133 if (conn)
0134 return connE.type;
0135 }
0136
0137 error("script needs connector type\n");
0138 }
0139
0140 return 0xff;
0141 }
0142
0143 static inline u32
0144 init_nvreg(struct nvbios_init *init, u32 reg)
0145 {
0146 struct nvkm_devinit *devinit = init->subdev->device->devinit;
0147
0148
0149
0150
0151
0152
0153
0154 reg &= ~0x00000003;
0155
0156
0157
0158
0159 if (init->subdev->device->card_type >= NV_50) {
0160 if (reg & 0x80000000) {
0161 reg += init_head(init) * 0x800;
0162 reg &= ~0x80000000;
0163 }
0164
0165 if (reg & 0x40000000) {
0166 reg += init_or(init) * 0x800;
0167 reg &= ~0x40000000;
0168 if (reg & 0x20000000) {
0169 reg += init_link(init) * 0x80;
0170 reg &= ~0x20000000;
0171 }
0172 }
0173 }
0174
0175 if (reg & ~0x00fffffc)
0176 warn("unknown bits in register 0x%08x\n", reg);
0177
0178 return nvkm_devinit_mmio(devinit, reg);
0179 }
0180
0181 static u32
0182 init_rd32(struct nvbios_init *init, u32 reg)
0183 {
0184 struct nvkm_device *device = init->subdev->device;
0185 reg = init_nvreg(init, reg);
0186 if (reg != ~0 && init_exec(init))
0187 return nvkm_rd32(device, reg);
0188 return 0x00000000;
0189 }
0190
0191 static void
0192 init_wr32(struct nvbios_init *init, u32 reg, u32 val)
0193 {
0194 struct nvkm_device *device = init->subdev->device;
0195 reg = init_nvreg(init, reg);
0196 if (reg != ~0 && init_exec(init))
0197 nvkm_wr32(device, reg, val);
0198 }
0199
0200 static u32
0201 init_mask(struct nvbios_init *init, u32 reg, u32 mask, u32 val)
0202 {
0203 struct nvkm_device *device = init->subdev->device;
0204 reg = init_nvreg(init, reg);
0205 if (reg != ~0 && init_exec(init)) {
0206 u32 tmp = nvkm_rd32(device, reg);
0207 nvkm_wr32(device, reg, (tmp & ~mask) | val);
0208 return tmp;
0209 }
0210 return 0x00000000;
0211 }
0212
0213 static u8
0214 init_rdport(struct nvbios_init *init, u16 port)
0215 {
0216 if (init_exec(init))
0217 return nvkm_rdport(init->subdev->device, init->head, port);
0218 return 0x00;
0219 }
0220
0221 static void
0222 init_wrport(struct nvbios_init *init, u16 port, u8 value)
0223 {
0224 if (init_exec(init))
0225 nvkm_wrport(init->subdev->device, init->head, port, value);
0226 }
0227
0228 static u8
0229 init_rdvgai(struct nvbios_init *init, u16 port, u8 index)
0230 {
0231 struct nvkm_subdev *subdev = init->subdev;
0232 if (init_exec(init)) {
0233 int head = init->head < 0 ? 0 : init->head;
0234 return nvkm_rdvgai(subdev->device, head, port, index);
0235 }
0236 return 0x00;
0237 }
0238
0239 static void
0240 init_wrvgai(struct nvbios_init *init, u16 port, u8 index, u8 value)
0241 {
0242 struct nvkm_device *device = init->subdev->device;
0243
0244
0245 if (device->card_type < NV_50) {
0246 if (port == 0x03d4 && index == 0x44)
0247 init->head = 0;
0248 }
0249
0250 if (init_exec(init)) {
0251 int head = init->head < 0 ? 0 : init->head;
0252 nvkm_wrvgai(device, head, port, index, value);
0253 }
0254
0255
0256 if (device->card_type < NV_50) {
0257 if (port == 0x03d4 && index == 0x44 && value == 3)
0258 init->head = 1;
0259 }
0260 }
0261
0262 static struct i2c_adapter *
0263 init_i2c(struct nvbios_init *init, int index)
0264 {
0265 struct nvkm_i2c *i2c = init->subdev->device->i2c;
0266 struct nvkm_i2c_bus *bus;
0267
0268 if (index == 0xff) {
0269 index = NVKM_I2C_BUS_PRI;
0270 if (init->outp && init->outp->i2c_upper_default)
0271 index = NVKM_I2C_BUS_SEC;
0272 } else
0273 if (index == 0x80) {
0274 index = NVKM_I2C_BUS_PRI;
0275 } else
0276 if (index == 0x81) {
0277 index = NVKM_I2C_BUS_SEC;
0278 }
0279
0280 bus = nvkm_i2c_bus_find(i2c, index);
0281 return bus ? &bus->i2c : NULL;
0282 }
0283
0284 static int
0285 init_rdi2cr(struct nvbios_init *init, u8 index, u8 addr, u8 reg)
0286 {
0287 struct i2c_adapter *adap = init_i2c(init, index);
0288 if (adap && init_exec(init))
0289 return nvkm_rdi2cr(adap, addr, reg);
0290 return -ENODEV;
0291 }
0292
0293 static int
0294 init_wri2cr(struct nvbios_init *init, u8 index, u8 addr, u8 reg, u8 val)
0295 {
0296 struct i2c_adapter *adap = init_i2c(init, index);
0297 if (adap && init_exec(init))
0298 return nvkm_wri2cr(adap, addr, reg, val);
0299 return -ENODEV;
0300 }
0301
0302 static struct nvkm_i2c_aux *
0303 init_aux(struct nvbios_init *init)
0304 {
0305 struct nvkm_i2c *i2c = init->subdev->device->i2c;
0306 if (!init->outp) {
0307 if (init_exec(init))
0308 error("script needs output for aux\n");
0309 return NULL;
0310 }
0311 return nvkm_i2c_aux_find(i2c, init->outp->i2c_index);
0312 }
0313
0314 static u8
0315 init_rdauxr(struct nvbios_init *init, u32 addr)
0316 {
0317 struct nvkm_i2c_aux *aux = init_aux(init);
0318 u8 data;
0319
0320 if (aux && init_exec(init)) {
0321 int ret = nvkm_rdaux(aux, addr, &data, 1);
0322 if (ret == 0)
0323 return data;
0324 trace("auxch read failed with %d\n", ret);
0325 }
0326
0327 return 0x00;
0328 }
0329
0330 static int
0331 init_wrauxr(struct nvbios_init *init, u32 addr, u8 data)
0332 {
0333 struct nvkm_i2c_aux *aux = init_aux(init);
0334 if (aux && init_exec(init)) {
0335 int ret = nvkm_wraux(aux, addr, &data, 1);
0336 if (ret)
0337 trace("auxch write failed with %d\n", ret);
0338 return ret;
0339 }
0340 return -ENODEV;
0341 }
0342
0343 static void
0344 init_prog_pll(struct nvbios_init *init, u32 id, u32 freq)
0345 {
0346 struct nvkm_devinit *devinit = init->subdev->device->devinit;
0347 if (init_exec(init)) {
0348 int ret = nvkm_devinit_pll_set(devinit, id, freq);
0349 if (ret)
0350 warn("failed to prog pll 0x%08x to %dkHz\n", id, freq);
0351 }
0352 }
0353
0354
0355
0356
0357
0358 static u16
0359 init_table(struct nvkm_bios *bios, u16 *len)
0360 {
0361 struct bit_entry bit_I;
0362
0363 if (!bit_entry(bios, 'I', &bit_I)) {
0364 *len = bit_I.length;
0365 return bit_I.offset;
0366 }
0367
0368 if (bmp_version(bios) >= 0x0510) {
0369 *len = 14;
0370 return bios->bmp_offset + 75;
0371 }
0372
0373 return 0x0000;
0374 }
0375
0376 static u16
0377 init_table_(struct nvbios_init *init, u16 offset, const char *name)
0378 {
0379 struct nvkm_bios *bios = init->subdev->device->bios;
0380 u16 len, data = init_table(bios, &len);
0381 if (data) {
0382 if (len >= offset + 2) {
0383 data = nvbios_rd16(bios, data + offset);
0384 if (data)
0385 return data;
0386
0387 warn("%s pointer invalid\n", name);
0388 return 0x0000;
0389 }
0390
0391 warn("init data too short for %s pointer", name);
0392 return 0x0000;
0393 }
0394
0395 warn("init data not found\n");
0396 return 0x0000;
0397 }
0398
0399 #define init_script_table(b) init_table_((b), 0x00, "script table")
0400 #define init_macro_index_table(b) init_table_((b), 0x02, "macro index table")
0401 #define init_macro_table(b) init_table_((b), 0x04, "macro table")
0402 #define init_condition_table(b) init_table_((b), 0x06, "condition table")
0403 #define init_io_condition_table(b) init_table_((b), 0x08, "io condition table")
0404 #define init_io_flag_condition_table(b) init_table_((b), 0x0a, "io flag condition table")
0405 #define init_function_table(b) init_table_((b), 0x0c, "function table")
0406 #define init_xlat_table(b) init_table_((b), 0x10, "xlat table");
0407
0408 static u16
0409 init_script(struct nvkm_bios *bios, int index)
0410 {
0411 struct nvbios_init init = { .subdev = &bios->subdev };
0412 u16 bmp_ver = bmp_version(bios), data;
0413
0414 if (bmp_ver && bmp_ver < 0x0510) {
0415 if (index > 1 || bmp_ver < 0x0100)
0416 return 0x0000;
0417
0418 data = bios->bmp_offset + (bmp_ver < 0x0200 ? 14 : 18);
0419 return nvbios_rd16(bios, data + (index * 2));
0420 }
0421
0422 data = init_script_table(&init);
0423 if (data)
0424 return nvbios_rd16(bios, data + (index * 2));
0425
0426 return 0x0000;
0427 }
0428
0429 static u16
0430 init_unknown_script(struct nvkm_bios *bios)
0431 {
0432 u16 len, data = init_table(bios, &len);
0433 if (data && len >= 16)
0434 return nvbios_rd16(bios, data + 14);
0435 return 0x0000;
0436 }
0437
0438 static u8
0439 init_ram_restrict_group_count(struct nvbios_init *init)
0440 {
0441 return nvbios_ramcfg_count(init->subdev->device->bios);
0442 }
0443
0444 static u8
0445 init_ram_restrict(struct nvbios_init *init)
0446 {
0447
0448
0449
0450
0451
0452
0453
0454
0455 if (!init->ramcfg || init->subdev->device->bios->version.major < 0x70)
0456 init->ramcfg = 0x80000000 | nvbios_ramcfg_index(init->subdev);
0457 return (init->ramcfg & 0x7fffffff);
0458 }
0459
0460 static u8
0461 init_xlat_(struct nvbios_init *init, u8 index, u8 offset)
0462 {
0463 struct nvkm_bios *bios = init->subdev->device->bios;
0464 u16 table = init_xlat_table(init);
0465 if (table) {
0466 u16 data = nvbios_rd16(bios, table + (index * 2));
0467 if (data)
0468 return nvbios_rd08(bios, data + offset);
0469 warn("xlat table pointer %d invalid\n", index);
0470 }
0471 return 0x00;
0472 }
0473
0474
0475
0476
0477
0478 static bool
0479 init_condition_met(struct nvbios_init *init, u8 cond)
0480 {
0481 struct nvkm_bios *bios = init->subdev->device->bios;
0482 u16 table = init_condition_table(init);
0483 if (table) {
0484 u32 reg = nvbios_rd32(bios, table + (cond * 12) + 0);
0485 u32 msk = nvbios_rd32(bios, table + (cond * 12) + 4);
0486 u32 val = nvbios_rd32(bios, table + (cond * 12) + 8);
0487 trace("\t[0x%02x] (R[0x%06x] & 0x%08x) == 0x%08x\n",
0488 cond, reg, msk, val);
0489 return (init_rd32(init, reg) & msk) == val;
0490 }
0491 return false;
0492 }
0493
0494 static bool
0495 init_io_condition_met(struct nvbios_init *init, u8 cond)
0496 {
0497 struct nvkm_bios *bios = init->subdev->device->bios;
0498 u16 table = init_io_condition_table(init);
0499 if (table) {
0500 u16 port = nvbios_rd16(bios, table + (cond * 5) + 0);
0501 u8 index = nvbios_rd08(bios, table + (cond * 5) + 2);
0502 u8 mask = nvbios_rd08(bios, table + (cond * 5) + 3);
0503 u8 value = nvbios_rd08(bios, table + (cond * 5) + 4);
0504 trace("\t[0x%02x] (0x%04x[0x%02x] & 0x%02x) == 0x%02x\n",
0505 cond, port, index, mask, value);
0506 return (init_rdvgai(init, port, index) & mask) == value;
0507 }
0508 return false;
0509 }
0510
0511 static bool
0512 init_io_flag_condition_met(struct nvbios_init *init, u8 cond)
0513 {
0514 struct nvkm_bios *bios = init->subdev->device->bios;
0515 u16 table = init_io_flag_condition_table(init);
0516 if (table) {
0517 u16 port = nvbios_rd16(bios, table + (cond * 9) + 0);
0518 u8 index = nvbios_rd08(bios, table + (cond * 9) + 2);
0519 u8 mask = nvbios_rd08(bios, table + (cond * 9) + 3);
0520 u8 shift = nvbios_rd08(bios, table + (cond * 9) + 4);
0521 u16 data = nvbios_rd16(bios, table + (cond * 9) + 5);
0522 u8 dmask = nvbios_rd08(bios, table + (cond * 9) + 7);
0523 u8 value = nvbios_rd08(bios, table + (cond * 9) + 8);
0524 u8 ioval = (init_rdvgai(init, port, index) & mask) >> shift;
0525 return (nvbios_rd08(bios, data + ioval) & dmask) == value;
0526 }
0527 return false;
0528 }
0529
0530 static inline u32
0531 init_shift(u32 data, u8 shift)
0532 {
0533 if (shift < 0x80)
0534 return data >> shift;
0535 return data << (0x100 - shift);
0536 }
0537
0538 static u32
0539 init_tmds_reg(struct nvbios_init *init, u8 tmds)
0540 {
0541
0542
0543
0544
0545
0546
0547
0548
0549 const int pramdac_offset[13] = {
0550 0, 0, 0x8, 0, 0x2000, 0, 0, 0, 0x2008, 0, 0, 0, 0x2000 };
0551 const u32 pramdac_table[4] = {
0552 0x6808b0, 0x6808b8, 0x6828b0, 0x6828b8 };
0553
0554 if (tmds >= 0x80) {
0555 if (init->outp) {
0556 u32 dacoffset = pramdac_offset[init->outp->or];
0557 if (tmds == 0x81)
0558 dacoffset ^= 8;
0559 return 0x6808b0 + dacoffset;
0560 }
0561
0562 if (init_exec(init))
0563 error("tmds opcodes need dcb\n");
0564 } else {
0565 if (tmds < ARRAY_SIZE(pramdac_table))
0566 return pramdac_table[tmds];
0567
0568 error("tmds selector 0x%02x unknown\n", tmds);
0569 }
0570
0571 return 0;
0572 }
0573
0574
0575
0576
0577
0578
0579
0580
0581
0582 static void
0583 init_reserved(struct nvbios_init *init)
0584 {
0585 struct nvkm_bios *bios = init->subdev->device->bios;
0586 u8 opcode = nvbios_rd08(bios, init->offset);
0587 u8 length, i;
0588
0589 switch (opcode) {
0590 case 0xaa:
0591 length = 4;
0592 break;
0593 default:
0594 length = 1;
0595 break;
0596 }
0597
0598 trace("RESERVED 0x%02x\t", opcode);
0599 for (i = 1; i < length; i++)
0600 cont(" 0x%02x", nvbios_rd08(bios, init->offset + i));
0601 cont("\n");
0602 init->offset += length;
0603 }
0604
0605
0606
0607
0608
0609 static void
0610 init_done(struct nvbios_init *init)
0611 {
0612 trace("DONE\n");
0613 init->offset = 0x0000;
0614 }
0615
0616
0617
0618
0619
0620 static void
0621 init_io_restrict_prog(struct nvbios_init *init)
0622 {
0623 struct nvkm_bios *bios = init->subdev->device->bios;
0624 u16 port = nvbios_rd16(bios, init->offset + 1);
0625 u8 index = nvbios_rd08(bios, init->offset + 3);
0626 u8 mask = nvbios_rd08(bios, init->offset + 4);
0627 u8 shift = nvbios_rd08(bios, init->offset + 5);
0628 u8 count = nvbios_rd08(bios, init->offset + 6);
0629 u32 reg = nvbios_rd32(bios, init->offset + 7);
0630 u8 conf, i;
0631
0632 trace("IO_RESTRICT_PROG\tR[0x%06x] = "
0633 "((0x%04x[0x%02x] & 0x%02x) >> %d) [{\n",
0634 reg, port, index, mask, shift);
0635 init->offset += 11;
0636
0637 conf = (init_rdvgai(init, port, index) & mask) >> shift;
0638 for (i = 0; i < count; i++) {
0639 u32 data = nvbios_rd32(bios, init->offset);
0640
0641 if (i == conf) {
0642 trace("\t0x%08x *\n", data);
0643 init_wr32(init, reg, data);
0644 } else {
0645 trace("\t0x%08x\n", data);
0646 }
0647
0648 init->offset += 4;
0649 }
0650 trace("}]\n");
0651 }
0652
0653
0654
0655
0656
0657 static void
0658 init_repeat(struct nvbios_init *init)
0659 {
0660 struct nvkm_bios *bios = init->subdev->device->bios;
0661 u8 count = nvbios_rd08(bios, init->offset + 1);
0662 u16 repeat = init->repeat;
0663
0664 trace("REPEAT\t0x%02x\n", count);
0665 init->offset += 2;
0666
0667 init->repeat = init->offset;
0668 init->repend = init->offset;
0669 while (count--) {
0670 init->offset = init->repeat;
0671 nvbios_exec(init);
0672 if (count)
0673 trace("REPEAT\t0x%02x\n", count);
0674 }
0675 init->offset = init->repend;
0676 init->repeat = repeat;
0677 }
0678
0679
0680
0681
0682
0683 static void
0684 init_io_restrict_pll(struct nvbios_init *init)
0685 {
0686 struct nvkm_bios *bios = init->subdev->device->bios;
0687 u16 port = nvbios_rd16(bios, init->offset + 1);
0688 u8 index = nvbios_rd08(bios, init->offset + 3);
0689 u8 mask = nvbios_rd08(bios, init->offset + 4);
0690 u8 shift = nvbios_rd08(bios, init->offset + 5);
0691 s8 iofc = nvbios_rd08(bios, init->offset + 6);
0692 u8 count = nvbios_rd08(bios, init->offset + 7);
0693 u32 reg = nvbios_rd32(bios, init->offset + 8);
0694 u8 conf, i;
0695
0696 trace("IO_RESTRICT_PLL\tR[0x%06x] =PLL= "
0697 "((0x%04x[0x%02x] & 0x%02x) >> 0x%02x) IOFCOND 0x%02x [{\n",
0698 reg, port, index, mask, shift, iofc);
0699 init->offset += 12;
0700
0701 conf = (init_rdvgai(init, port, index) & mask) >> shift;
0702 for (i = 0; i < count; i++) {
0703 u32 freq = nvbios_rd16(bios, init->offset) * 10;
0704
0705 if (i == conf) {
0706 trace("\t%dkHz *\n", freq);
0707 if (iofc > 0 && init_io_flag_condition_met(init, iofc))
0708 freq *= 2;
0709 init_prog_pll(init, reg, freq);
0710 } else {
0711 trace("\t%dkHz\n", freq);
0712 }
0713
0714 init->offset += 2;
0715 }
0716 trace("}]\n");
0717 }
0718
0719
0720
0721
0722
0723 static void
0724 init_end_repeat(struct nvbios_init *init)
0725 {
0726 trace("END_REPEAT\n");
0727 init->offset += 1;
0728
0729 if (init->repeat) {
0730 init->repend = init->offset;
0731 init->offset = 0;
0732 }
0733 }
0734
0735
0736
0737
0738
0739 static void
0740 init_copy(struct nvbios_init *init)
0741 {
0742 struct nvkm_bios *bios = init->subdev->device->bios;
0743 u32 reg = nvbios_rd32(bios, init->offset + 1);
0744 u8 shift = nvbios_rd08(bios, init->offset + 5);
0745 u8 smask = nvbios_rd08(bios, init->offset + 6);
0746 u16 port = nvbios_rd16(bios, init->offset + 7);
0747 u8 index = nvbios_rd08(bios, init->offset + 9);
0748 u8 mask = nvbios_rd08(bios, init->offset + 10);
0749 u8 data;
0750
0751 trace("COPY\t0x%04x[0x%02x] &= 0x%02x |= "
0752 "((R[0x%06x] %s 0x%02x) & 0x%02x)\n",
0753 port, index, mask, reg, (shift & 0x80) ? "<<" : ">>",
0754 (shift & 0x80) ? (0x100 - shift) : shift, smask);
0755 init->offset += 11;
0756
0757 data = init_rdvgai(init, port, index) & mask;
0758 data |= init_shift(init_rd32(init, reg), shift) & smask;
0759 init_wrvgai(init, port, index, data);
0760 }
0761
0762
0763
0764
0765
0766 static void
0767 init_not(struct nvbios_init *init)
0768 {
0769 trace("NOT\n");
0770 init->offset += 1;
0771 init_exec_inv(init);
0772 }
0773
0774
0775
0776
0777
0778 static void
0779 init_io_flag_condition(struct nvbios_init *init)
0780 {
0781 struct nvkm_bios *bios = init->subdev->device->bios;
0782 u8 cond = nvbios_rd08(bios, init->offset + 1);
0783
0784 trace("IO_FLAG_CONDITION\t0x%02x\n", cond);
0785 init->offset += 2;
0786
0787 if (!init_io_flag_condition_met(init, cond))
0788 init_exec_set(init, false);
0789 }
0790
0791
0792
0793
0794
0795 static void
0796 init_generic_condition(struct nvbios_init *init)
0797 {
0798 struct nvkm_bios *bios = init->subdev->device->bios;
0799 struct nvbios_dpout info;
0800 u8 cond = nvbios_rd08(bios, init->offset + 1);
0801 u8 size = nvbios_rd08(bios, init->offset + 2);
0802 u8 ver, hdr, cnt, len;
0803 u16 data;
0804
0805 trace("GENERIC_CONDITION\t0x%02x 0x%02x\n", cond, size);
0806 init->offset += 3;
0807
0808 switch (cond) {
0809 case 0:
0810 if (init_conn(init) != DCB_CONNECTOR_eDP)
0811 init_exec_set(init, false);
0812 break;
0813 case 1:
0814 case 2:
0815 if ( init->outp &&
0816 (data = nvbios_dpout_match(bios, DCB_OUTPUT_DP,
0817 (init->outp->or << 0) |
0818 (init->outp->sorconf.link << 6),
0819 &ver, &hdr, &cnt, &len, &info)))
0820 {
0821 if (!(info.flags & cond))
0822 init_exec_set(init, false);
0823 break;
0824 }
0825
0826 if (init_exec(init))
0827 warn("script needs dp output table data\n");
0828 break;
0829 case 5:
0830 if (!(init_rdauxr(init, 0x0d) & 1))
0831 init_exec_set(init, false);
0832 break;
0833 case 7:
0834 init_exec_set(init, false);
0835 break;
0836 default:
0837 warn("INIT_GENERIC_CONDITION: unknown 0x%02x\n", cond);
0838 init->offset += size;
0839 break;
0840 }
0841 }
0842
0843
0844
0845
0846
0847 static void
0848 init_io_mask_or(struct nvbios_init *init)
0849 {
0850 struct nvkm_bios *bios = init->subdev->device->bios;
0851 u8 index = nvbios_rd08(bios, init->offset + 1);
0852 u8 or = init_or(init);
0853 u8 data;
0854
0855 trace("IO_MASK_OR\t0x03d4[0x%02x] &= ~(1 << 0x%02x)\n", index, or);
0856 init->offset += 2;
0857
0858 data = init_rdvgai(init, 0x03d4, index);
0859 init_wrvgai(init, 0x03d4, index, data &= ~(1 << or));
0860 }
0861
0862
0863
0864
0865
0866 static void
0867 init_io_or(struct nvbios_init *init)
0868 {
0869 struct nvkm_bios *bios = init->subdev->device->bios;
0870 u8 index = nvbios_rd08(bios, init->offset + 1);
0871 u8 or = init_or(init);
0872 u8 data;
0873
0874 trace("IO_OR\t0x03d4[0x%02x] |= (1 << 0x%02x)\n", index, or);
0875 init->offset += 2;
0876
0877 data = init_rdvgai(init, 0x03d4, index);
0878 init_wrvgai(init, 0x03d4, index, data | (1 << or));
0879 }
0880
0881
0882
0883
0884
0885 static void
0886 init_andn_reg(struct nvbios_init *init)
0887 {
0888 struct nvkm_bios *bios = init->subdev->device->bios;
0889 u32 reg = nvbios_rd32(bios, init->offset + 1);
0890 u32 mask = nvbios_rd32(bios, init->offset + 5);
0891
0892 trace("ANDN_REG\tR[0x%06x] &= ~0x%08x\n", reg, mask);
0893 init->offset += 9;
0894
0895 init_mask(init, reg, mask, 0);
0896 }
0897
0898
0899
0900
0901
0902 static void
0903 init_or_reg(struct nvbios_init *init)
0904 {
0905 struct nvkm_bios *bios = init->subdev->device->bios;
0906 u32 reg = nvbios_rd32(bios, init->offset + 1);
0907 u32 mask = nvbios_rd32(bios, init->offset + 5);
0908
0909 trace("OR_REG\tR[0x%06x] |= 0x%08x\n", reg, mask);
0910 init->offset += 9;
0911
0912 init_mask(init, reg, 0, mask);
0913 }
0914
0915
0916
0917
0918
0919 static void
0920 init_idx_addr_latched(struct nvbios_init *init)
0921 {
0922 struct nvkm_bios *bios = init->subdev->device->bios;
0923 u32 creg = nvbios_rd32(bios, init->offset + 1);
0924 u32 dreg = nvbios_rd32(bios, init->offset + 5);
0925 u32 mask = nvbios_rd32(bios, init->offset + 9);
0926 u32 data = nvbios_rd32(bios, init->offset + 13);
0927 u8 count = nvbios_rd08(bios, init->offset + 17);
0928
0929 trace("INDEX_ADDRESS_LATCHED\tR[0x%06x] : R[0x%06x]\n", creg, dreg);
0930 trace("\tCTRL &= 0x%08x |= 0x%08x\n", mask, data);
0931 init->offset += 18;
0932
0933 while (count--) {
0934 u8 iaddr = nvbios_rd08(bios, init->offset + 0);
0935 u8 idata = nvbios_rd08(bios, init->offset + 1);
0936
0937 trace("\t[0x%02x] = 0x%02x\n", iaddr, idata);
0938 init->offset += 2;
0939
0940 init_wr32(init, dreg, idata);
0941 init_mask(init, creg, ~mask, data | iaddr);
0942 }
0943 }
0944
0945
0946
0947
0948
0949 static void
0950 init_io_restrict_pll2(struct nvbios_init *init)
0951 {
0952 struct nvkm_bios *bios = init->subdev->device->bios;
0953 u16 port = nvbios_rd16(bios, init->offset + 1);
0954 u8 index = nvbios_rd08(bios, init->offset + 3);
0955 u8 mask = nvbios_rd08(bios, init->offset + 4);
0956 u8 shift = nvbios_rd08(bios, init->offset + 5);
0957 u8 count = nvbios_rd08(bios, init->offset + 6);
0958 u32 reg = nvbios_rd32(bios, init->offset + 7);
0959 u8 conf, i;
0960
0961 trace("IO_RESTRICT_PLL2\t"
0962 "R[0x%06x] =PLL= ((0x%04x[0x%02x] & 0x%02x) >> 0x%02x) [{\n",
0963 reg, port, index, mask, shift);
0964 init->offset += 11;
0965
0966 conf = (init_rdvgai(init, port, index) & mask) >> shift;
0967 for (i = 0; i < count; i++) {
0968 u32 freq = nvbios_rd32(bios, init->offset);
0969 if (i == conf) {
0970 trace("\t%dkHz *\n", freq);
0971 init_prog_pll(init, reg, freq);
0972 } else {
0973 trace("\t%dkHz\n", freq);
0974 }
0975 init->offset += 4;
0976 }
0977 trace("}]\n");
0978 }
0979
0980
0981
0982
0983
0984 static void
0985 init_pll2(struct nvbios_init *init)
0986 {
0987 struct nvkm_bios *bios = init->subdev->device->bios;
0988 u32 reg = nvbios_rd32(bios, init->offset + 1);
0989 u32 freq = nvbios_rd32(bios, init->offset + 5);
0990
0991 trace("PLL2\tR[0x%06x] =PLL= %dkHz\n", reg, freq);
0992 init->offset += 9;
0993
0994 init_prog_pll(init, reg, freq);
0995 }
0996
0997
0998
0999
1000
1001 static void
1002 init_i2c_byte(struct nvbios_init *init)
1003 {
1004 struct nvkm_bios *bios = init->subdev->device->bios;
1005 u8 index = nvbios_rd08(bios, init->offset + 1);
1006 u8 addr = nvbios_rd08(bios, init->offset + 2) >> 1;
1007 u8 count = nvbios_rd08(bios, init->offset + 3);
1008
1009 trace("I2C_BYTE\tI2C[0x%02x][0x%02x]\n", index, addr);
1010 init->offset += 4;
1011
1012 while (count--) {
1013 u8 reg = nvbios_rd08(bios, init->offset + 0);
1014 u8 mask = nvbios_rd08(bios, init->offset + 1);
1015 u8 data = nvbios_rd08(bios, init->offset + 2);
1016 int val;
1017
1018 trace("\t[0x%02x] &= 0x%02x |= 0x%02x\n", reg, mask, data);
1019 init->offset += 3;
1020
1021 val = init_rdi2cr(init, index, addr, reg);
1022 if (val < 0)
1023 continue;
1024 init_wri2cr(init, index, addr, reg, (val & mask) | data);
1025 }
1026 }
1027
1028
1029
1030
1031
1032 static void
1033 init_zm_i2c_byte(struct nvbios_init *init)
1034 {
1035 struct nvkm_bios *bios = init->subdev->device->bios;
1036 u8 index = nvbios_rd08(bios, init->offset + 1);
1037 u8 addr = nvbios_rd08(bios, init->offset + 2) >> 1;
1038 u8 count = nvbios_rd08(bios, init->offset + 3);
1039
1040 trace("ZM_I2C_BYTE\tI2C[0x%02x][0x%02x]\n", index, addr);
1041 init->offset += 4;
1042
1043 while (count--) {
1044 u8 reg = nvbios_rd08(bios, init->offset + 0);
1045 u8 data = nvbios_rd08(bios, init->offset + 1);
1046
1047 trace("\t[0x%02x] = 0x%02x\n", reg, data);
1048 init->offset += 2;
1049
1050 init_wri2cr(init, index, addr, reg, data);
1051 }
1052 }
1053
1054
1055
1056
1057
1058 static void
1059 init_zm_i2c(struct nvbios_init *init)
1060 {
1061 struct nvkm_bios *bios = init->subdev->device->bios;
1062 u8 index = nvbios_rd08(bios, init->offset + 1);
1063 u8 addr = nvbios_rd08(bios, init->offset + 2) >> 1;
1064 u8 count = nvbios_rd08(bios, init->offset + 3);
1065 u8 data[256], i;
1066
1067 trace("ZM_I2C\tI2C[0x%02x][0x%02x]\n", index, addr);
1068 init->offset += 4;
1069
1070 for (i = 0; i < count; i++) {
1071 data[i] = nvbios_rd08(bios, init->offset);
1072 trace("\t0x%02x\n", data[i]);
1073 init->offset++;
1074 }
1075
1076 if (init_exec(init)) {
1077 struct i2c_adapter *adap = init_i2c(init, index);
1078 struct i2c_msg msg = {
1079 .addr = addr, .flags = 0, .len = count, .buf = data,
1080 };
1081 int ret;
1082
1083 if (adap && (ret = i2c_transfer(adap, &msg, 1)) != 1)
1084 warn("i2c wr failed, %d\n", ret);
1085 }
1086 }
1087
1088
1089
1090
1091
1092 static void
1093 init_tmds(struct nvbios_init *init)
1094 {
1095 struct nvkm_bios *bios = init->subdev->device->bios;
1096 u8 tmds = nvbios_rd08(bios, init->offset + 1);
1097 u8 addr = nvbios_rd08(bios, init->offset + 2);
1098 u8 mask = nvbios_rd08(bios, init->offset + 3);
1099 u8 data = nvbios_rd08(bios, init->offset + 4);
1100 u32 reg = init_tmds_reg(init, tmds);
1101
1102 trace("TMDS\tT[0x%02x][0x%02x] &= 0x%02x |= 0x%02x\n",
1103 tmds, addr, mask, data);
1104 init->offset += 5;
1105
1106 if (reg == 0)
1107 return;
1108
1109 init_wr32(init, reg + 0, addr | 0x00010000);
1110 init_wr32(init, reg + 4, data | (init_rd32(init, reg + 4) & mask));
1111 init_wr32(init, reg + 0, addr);
1112 }
1113
1114
1115
1116
1117
1118 static void
1119 init_zm_tmds_group(struct nvbios_init *init)
1120 {
1121 struct nvkm_bios *bios = init->subdev->device->bios;
1122 u8 tmds = nvbios_rd08(bios, init->offset + 1);
1123 u8 count = nvbios_rd08(bios, init->offset + 2);
1124 u32 reg = init_tmds_reg(init, tmds);
1125
1126 trace("TMDS_ZM_GROUP\tT[0x%02x]\n", tmds);
1127 init->offset += 3;
1128
1129 while (count--) {
1130 u8 addr = nvbios_rd08(bios, init->offset + 0);
1131 u8 data = nvbios_rd08(bios, init->offset + 1);
1132
1133 trace("\t[0x%02x] = 0x%02x\n", addr, data);
1134 init->offset += 2;
1135
1136 init_wr32(init, reg + 4, data);
1137 init_wr32(init, reg + 0, addr);
1138 }
1139 }
1140
1141
1142
1143
1144
1145 static void
1146 init_cr_idx_adr_latch(struct nvbios_init *init)
1147 {
1148 struct nvkm_bios *bios = init->subdev->device->bios;
1149 u8 addr0 = nvbios_rd08(bios, init->offset + 1);
1150 u8 addr1 = nvbios_rd08(bios, init->offset + 2);
1151 u8 base = nvbios_rd08(bios, init->offset + 3);
1152 u8 count = nvbios_rd08(bios, init->offset + 4);
1153 u8 save0;
1154
1155 trace("CR_INDEX_ADDR C[%02x] C[%02x]\n", addr0, addr1);
1156 init->offset += 5;
1157
1158 save0 = init_rdvgai(init, 0x03d4, addr0);
1159 while (count--) {
1160 u8 data = nvbios_rd08(bios, init->offset);
1161
1162 trace("\t\t[0x%02x] = 0x%02x\n", base, data);
1163 init->offset += 1;
1164
1165 init_wrvgai(init, 0x03d4, addr0, base++);
1166 init_wrvgai(init, 0x03d4, addr1, data);
1167 }
1168 init_wrvgai(init, 0x03d4, addr0, save0);
1169 }
1170
1171
1172
1173
1174
1175 static void
1176 init_cr(struct nvbios_init *init)
1177 {
1178 struct nvkm_bios *bios = init->subdev->device->bios;
1179 u8 addr = nvbios_rd08(bios, init->offset + 1);
1180 u8 mask = nvbios_rd08(bios, init->offset + 2);
1181 u8 data = nvbios_rd08(bios, init->offset + 3);
1182 u8 val;
1183
1184 trace("CR\t\tC[0x%02x] &= 0x%02x |= 0x%02x\n", addr, mask, data);
1185 init->offset += 4;
1186
1187 val = init_rdvgai(init, 0x03d4, addr) & mask;
1188 init_wrvgai(init, 0x03d4, addr, val | data);
1189 }
1190
1191
1192
1193
1194
1195 static void
1196 init_zm_cr(struct nvbios_init *init)
1197 {
1198 struct nvkm_bios *bios = init->subdev->device->bios;
1199 u8 addr = nvbios_rd08(bios, init->offset + 1);
1200 u8 data = nvbios_rd08(bios, init->offset + 2);
1201
1202 trace("ZM_CR\tC[0x%02x] = 0x%02x\n", addr, data);
1203 init->offset += 3;
1204
1205 init_wrvgai(init, 0x03d4, addr, data);
1206 }
1207
1208
1209
1210
1211
1212 static void
1213 init_zm_cr_group(struct nvbios_init *init)
1214 {
1215 struct nvkm_bios *bios = init->subdev->device->bios;
1216 u8 count = nvbios_rd08(bios, init->offset + 1);
1217
1218 trace("ZM_CR_GROUP\n");
1219 init->offset += 2;
1220
1221 while (count--) {
1222 u8 addr = nvbios_rd08(bios, init->offset + 0);
1223 u8 data = nvbios_rd08(bios, init->offset + 1);
1224
1225 trace("\t\tC[0x%02x] = 0x%02x\n", addr, data);
1226 init->offset += 2;
1227
1228 init_wrvgai(init, 0x03d4, addr, data);
1229 }
1230 }
1231
1232
1233
1234
1235
1236 static void
1237 init_condition_time(struct nvbios_init *init)
1238 {
1239 struct nvkm_bios *bios = init->subdev->device->bios;
1240 u8 cond = nvbios_rd08(bios, init->offset + 1);
1241 u8 retry = nvbios_rd08(bios, init->offset + 2);
1242 u8 wait = min((u16)retry * 50, 100);
1243
1244 trace("CONDITION_TIME\t0x%02x 0x%02x\n", cond, retry);
1245 init->offset += 3;
1246
1247 if (!init_exec(init))
1248 return;
1249
1250 while (wait--) {
1251 if (init_condition_met(init, cond))
1252 return;
1253 mdelay(20);
1254 }
1255
1256 init_exec_set(init, false);
1257 }
1258
1259
1260
1261
1262
1263 static void
1264 init_ltime(struct nvbios_init *init)
1265 {
1266 struct nvkm_bios *bios = init->subdev->device->bios;
1267 u16 msec = nvbios_rd16(bios, init->offset + 1);
1268
1269 trace("LTIME\t0x%04x\n", msec);
1270 init->offset += 3;
1271
1272 if (init_exec(init))
1273 mdelay(msec);
1274 }
1275
1276
1277
1278
1279
1280 static void
1281 init_zm_reg_sequence(struct nvbios_init *init)
1282 {
1283 struct nvkm_bios *bios = init->subdev->device->bios;
1284 u32 base = nvbios_rd32(bios, init->offset + 1);
1285 u8 count = nvbios_rd08(bios, init->offset + 5);
1286
1287 trace("ZM_REG_SEQUENCE\t0x%02x\n", count);
1288 init->offset += 6;
1289
1290 while (count--) {
1291 u32 data = nvbios_rd32(bios, init->offset);
1292
1293 trace("\t\tR[0x%06x] = 0x%08x\n", base, data);
1294 init->offset += 4;
1295
1296 init_wr32(init, base, data);
1297 base += 4;
1298 }
1299 }
1300
1301
1302
1303
1304
1305 static void
1306 init_pll_indirect(struct nvbios_init *init)
1307 {
1308 struct nvkm_bios *bios = init->subdev->device->bios;
1309 u32 reg = nvbios_rd32(bios, init->offset + 1);
1310 u16 addr = nvbios_rd16(bios, init->offset + 5);
1311 u32 freq = (u32)nvbios_rd16(bios, addr) * 1000;
1312
1313 trace("PLL_INDIRECT\tR[0x%06x] =PLL= VBIOS[%04x] = %dkHz\n",
1314 reg, addr, freq);
1315 init->offset += 7;
1316
1317 init_prog_pll(init, reg, freq);
1318 }
1319
1320
1321
1322
1323
1324 static void
1325 init_zm_reg_indirect(struct nvbios_init *init)
1326 {
1327 struct nvkm_bios *bios = init->subdev->device->bios;
1328 u32 reg = nvbios_rd32(bios, init->offset + 1);
1329 u16 addr = nvbios_rd16(bios, init->offset + 5);
1330 u32 data = nvbios_rd32(bios, addr);
1331
1332 trace("ZM_REG_INDIRECT\tR[0x%06x] = VBIOS[0x%04x] = 0x%08x\n",
1333 reg, addr, data);
1334 init->offset += 7;
1335
1336 init_wr32(init, addr, data);
1337 }
1338
1339
1340
1341
1342
1343 static void
1344 init_sub_direct(struct nvbios_init *init)
1345 {
1346 struct nvkm_bios *bios = init->subdev->device->bios;
1347 u16 addr = nvbios_rd16(bios, init->offset + 1);
1348 u16 save;
1349
1350 trace("SUB_DIRECT\t0x%04x\n", addr);
1351
1352 if (init_exec(init)) {
1353 save = init->offset;
1354 init->offset = addr;
1355 if (nvbios_exec(init)) {
1356 error("error parsing sub-table\n");
1357 return;
1358 }
1359 init->offset = save;
1360 }
1361
1362 init->offset += 3;
1363 }
1364
1365
1366
1367
1368
1369 static void
1370 init_jump(struct nvbios_init *init)
1371 {
1372 struct nvkm_bios *bios = init->subdev->device->bios;
1373 u16 offset = nvbios_rd16(bios, init->offset + 1);
1374
1375 trace("JUMP\t0x%04x\n", offset);
1376
1377 if (init_exec(init))
1378 init->offset = offset;
1379 else
1380 init->offset += 3;
1381 }
1382
1383
1384
1385
1386
1387 static void
1388 init_i2c_if(struct nvbios_init *init)
1389 {
1390 struct nvkm_bios *bios = init->subdev->device->bios;
1391 u8 index = nvbios_rd08(bios, init->offset + 1);
1392 u8 addr = nvbios_rd08(bios, init->offset + 2);
1393 u8 reg = nvbios_rd08(bios, init->offset + 3);
1394 u8 mask = nvbios_rd08(bios, init->offset + 4);
1395 u8 data = nvbios_rd08(bios, init->offset + 5);
1396 u8 value;
1397
1398 trace("I2C_IF\tI2C[0x%02x][0x%02x][0x%02x] & 0x%02x == 0x%02x\n",
1399 index, addr, reg, mask, data);
1400 init->offset += 6;
1401 init_exec_force(init, true);
1402
1403 value = init_rdi2cr(init, index, addr, reg);
1404 if ((value & mask) != data)
1405 init_exec_set(init, false);
1406
1407 init_exec_force(init, false);
1408 }
1409
1410
1411
1412
1413
1414 static void
1415 init_copy_nv_reg(struct nvbios_init *init)
1416 {
1417 struct nvkm_bios *bios = init->subdev->device->bios;
1418 u32 sreg = nvbios_rd32(bios, init->offset + 1);
1419 u8 shift = nvbios_rd08(bios, init->offset + 5);
1420 u32 smask = nvbios_rd32(bios, init->offset + 6);
1421 u32 sxor = nvbios_rd32(bios, init->offset + 10);
1422 u32 dreg = nvbios_rd32(bios, init->offset + 14);
1423 u32 dmask = nvbios_rd32(bios, init->offset + 18);
1424 u32 data;
1425
1426 trace("COPY_NV_REG\tR[0x%06x] &= 0x%08x |= "
1427 "((R[0x%06x] %s 0x%02x) & 0x%08x ^ 0x%08x)\n",
1428 dreg, dmask, sreg, (shift & 0x80) ? "<<" : ">>",
1429 (shift & 0x80) ? (0x100 - shift) : shift, smask, sxor);
1430 init->offset += 22;
1431
1432 data = init_shift(init_rd32(init, sreg), shift);
1433 init_mask(init, dreg, ~dmask, (data & smask) ^ sxor);
1434 }
1435
1436
1437
1438
1439
1440 static void
1441 init_zm_index_io(struct nvbios_init *init)
1442 {
1443 struct nvkm_bios *bios = init->subdev->device->bios;
1444 u16 port = nvbios_rd16(bios, init->offset + 1);
1445 u8 index = nvbios_rd08(bios, init->offset + 3);
1446 u8 data = nvbios_rd08(bios, init->offset + 4);
1447
1448 trace("ZM_INDEX_IO\tI[0x%04x][0x%02x] = 0x%02x\n", port, index, data);
1449 init->offset += 5;
1450
1451 init_wrvgai(init, port, index, data);
1452 }
1453
1454
1455
1456
1457
1458 static void
1459 init_compute_mem(struct nvbios_init *init)
1460 {
1461 struct nvkm_devinit *devinit = init->subdev->device->devinit;
1462
1463 trace("COMPUTE_MEM\n");
1464 init->offset += 1;
1465
1466 init_exec_force(init, true);
1467 if (init_exec(init))
1468 nvkm_devinit_meminit(devinit);
1469 init_exec_force(init, false);
1470 }
1471
1472
1473
1474
1475
1476 static void
1477 init_reset(struct nvbios_init *init)
1478 {
1479 struct nvkm_bios *bios = init->subdev->device->bios;
1480 u32 reg = nvbios_rd32(bios, init->offset + 1);
1481 u32 data1 = nvbios_rd32(bios, init->offset + 5);
1482 u32 data2 = nvbios_rd32(bios, init->offset + 9);
1483 u32 savepci19;
1484
1485 trace("RESET\tR[0x%08x] = 0x%08x, 0x%08x", reg, data1, data2);
1486 init->offset += 13;
1487 init_exec_force(init, true);
1488
1489 savepci19 = init_mask(init, 0x00184c, 0x00000f00, 0x00000000);
1490 init_wr32(init, reg, data1);
1491 udelay(10);
1492 init_wr32(init, reg, data2);
1493 init_wr32(init, 0x00184c, savepci19);
1494 init_mask(init, 0x001850, 0x00000001, 0x00000000);
1495
1496 init_exec_force(init, false);
1497 }
1498
1499
1500
1501
1502
1503 static u16
1504 init_configure_mem_clk(struct nvbios_init *init)
1505 {
1506 u16 mdata = bmp_mem_init_table(init->subdev->device->bios);
1507 if (mdata)
1508 mdata += (init_rdvgai(init, 0x03d4, 0x3c) >> 4) * 66;
1509 return mdata;
1510 }
1511
1512 static void
1513 init_configure_mem(struct nvbios_init *init)
1514 {
1515 struct nvkm_bios *bios = init->subdev->device->bios;
1516 u16 mdata, sdata;
1517 u32 addr, data;
1518
1519 trace("CONFIGURE_MEM\n");
1520 init->offset += 1;
1521
1522 if (bios->version.major > 2) {
1523 init_done(init);
1524 return;
1525 }
1526 init_exec_force(init, true);
1527
1528 mdata = init_configure_mem_clk(init);
1529 sdata = bmp_sdr_seq_table(bios);
1530 if (nvbios_rd08(bios, mdata) & 0x01)
1531 sdata = bmp_ddr_seq_table(bios);
1532 mdata += 6;
1533
1534 data = init_rdvgai(init, 0x03c4, 0x01);
1535 init_wrvgai(init, 0x03c4, 0x01, data | 0x20);
1536
1537 for (; (addr = nvbios_rd32(bios, sdata)) != 0xffffffff; sdata += 4) {
1538 switch (addr) {
1539 case 0x10021c:
1540 case 0x1002d0:
1541 case 0x1002d4:
1542 data = 0x00000001;
1543 break;
1544 default:
1545 data = nvbios_rd32(bios, mdata);
1546 mdata += 4;
1547 if (data == 0xffffffff)
1548 continue;
1549 break;
1550 }
1551
1552 init_wr32(init, addr, data);
1553 }
1554
1555 init_exec_force(init, false);
1556 }
1557
1558
1559
1560
1561
1562 static void
1563 init_configure_clk(struct nvbios_init *init)
1564 {
1565 struct nvkm_bios *bios = init->subdev->device->bios;
1566 u16 mdata, clock;
1567
1568 trace("CONFIGURE_CLK\n");
1569 init->offset += 1;
1570
1571 if (bios->version.major > 2) {
1572 init_done(init);
1573 return;
1574 }
1575 init_exec_force(init, true);
1576
1577 mdata = init_configure_mem_clk(init);
1578
1579
1580 clock = nvbios_rd16(bios, mdata + 4) * 10;
1581 init_prog_pll(init, 0x680500, clock);
1582
1583
1584 clock = nvbios_rd16(bios, mdata + 2) * 10;
1585 if (nvbios_rd08(bios, mdata) & 0x01)
1586 clock *= 2;
1587 init_prog_pll(init, 0x680504, clock);
1588
1589 init_exec_force(init, false);
1590 }
1591
1592
1593
1594
1595
1596 static void
1597 init_configure_preinit(struct nvbios_init *init)
1598 {
1599 struct nvkm_bios *bios = init->subdev->device->bios;
1600 u32 strap;
1601
1602 trace("CONFIGURE_PREINIT\n");
1603 init->offset += 1;
1604
1605 if (bios->version.major > 2) {
1606 init_done(init);
1607 return;
1608 }
1609 init_exec_force(init, true);
1610
1611 strap = init_rd32(init, 0x101000);
1612 strap = ((strap << 2) & 0xf0) | ((strap & 0x40) >> 6);
1613 init_wrvgai(init, 0x03d4, 0x3c, strap);
1614
1615 init_exec_force(init, false);
1616 }
1617
1618
1619
1620
1621
1622 static void
1623 init_io(struct nvbios_init *init)
1624 {
1625 struct nvkm_bios *bios = init->subdev->device->bios;
1626 u16 port = nvbios_rd16(bios, init->offset + 1);
1627 u8 mask = nvbios_rd16(bios, init->offset + 3);
1628 u8 data = nvbios_rd16(bios, init->offset + 4);
1629 u8 value;
1630
1631 trace("IO\t\tI[0x%04x] &= 0x%02x |= 0x%02x\n", port, mask, data);
1632 init->offset += 5;
1633
1634
1635
1636
1637
1638 if (bios->subdev.device->card_type >= NV_50 &&
1639 port == 0x03c3 && data == 0x01) {
1640 init_mask(init, 0x614100, 0xf0800000, 0x00800000);
1641 init_mask(init, 0x00e18c, 0x00020000, 0x00020000);
1642 init_mask(init, 0x614900, 0xf0800000, 0x00800000);
1643 init_mask(init, 0x000200, 0x40000000, 0x00000000);
1644 mdelay(10);
1645 init_mask(init, 0x00e18c, 0x00020000, 0x00000000);
1646 init_mask(init, 0x000200, 0x40000000, 0x40000000);
1647 init_wr32(init, 0x614100, 0x00800018);
1648 init_wr32(init, 0x614900, 0x00800018);
1649 mdelay(10);
1650 init_wr32(init, 0x614100, 0x10000018);
1651 init_wr32(init, 0x614900, 0x10000018);
1652 }
1653
1654 value = init_rdport(init, port) & mask;
1655 init_wrport(init, port, data | value);
1656 }
1657
1658
1659
1660
1661
1662 static void
1663 init_sub(struct nvbios_init *init)
1664 {
1665 struct nvkm_bios *bios = init->subdev->device->bios;
1666 u8 index = nvbios_rd08(bios, init->offset + 1);
1667 u16 addr, save;
1668
1669 trace("SUB\t0x%02x\n", index);
1670
1671 addr = init_script(bios, index);
1672 if (addr && init_exec(init)) {
1673 save = init->offset;
1674 init->offset = addr;
1675 if (nvbios_exec(init)) {
1676 error("error parsing sub-table\n");
1677 return;
1678 }
1679 init->offset = save;
1680 }
1681
1682 init->offset += 2;
1683 }
1684
1685
1686
1687
1688
1689 static void
1690 init_ram_condition(struct nvbios_init *init)
1691 {
1692 struct nvkm_bios *bios = init->subdev->device->bios;
1693 u8 mask = nvbios_rd08(bios, init->offset + 1);
1694 u8 value = nvbios_rd08(bios, init->offset + 2);
1695
1696 trace("RAM_CONDITION\t"
1697 "(R[0x100000] & 0x%02x) == 0x%02x\n", mask, value);
1698 init->offset += 3;
1699
1700 if ((init_rd32(init, 0x100000) & mask) != value)
1701 init_exec_set(init, false);
1702 }
1703
1704
1705
1706
1707
1708 static void
1709 init_nv_reg(struct nvbios_init *init)
1710 {
1711 struct nvkm_bios *bios = init->subdev->device->bios;
1712 u32 reg = nvbios_rd32(bios, init->offset + 1);
1713 u32 mask = nvbios_rd32(bios, init->offset + 5);
1714 u32 data = nvbios_rd32(bios, init->offset + 9);
1715
1716 trace("NV_REG\tR[0x%06x] &= 0x%08x |= 0x%08x\n", reg, mask, data);
1717 init->offset += 13;
1718
1719 init_mask(init, reg, ~mask, data);
1720 }
1721
1722
1723
1724
1725
1726 static void
1727 init_macro(struct nvbios_init *init)
1728 {
1729 struct nvkm_bios *bios = init->subdev->device->bios;
1730 u8 macro = nvbios_rd08(bios, init->offset + 1);
1731 u16 table;
1732
1733 trace("MACRO\t0x%02x\n", macro);
1734
1735 table = init_macro_table(init);
1736 if (table) {
1737 u32 addr = nvbios_rd32(bios, table + (macro * 8) + 0);
1738 u32 data = nvbios_rd32(bios, table + (macro * 8) + 4);
1739 trace("\t\tR[0x%06x] = 0x%08x\n", addr, data);
1740 init_wr32(init, addr, data);
1741 }
1742
1743 init->offset += 2;
1744 }
1745
1746
1747
1748
1749
1750 static void
1751 init_resume(struct nvbios_init *init)
1752 {
1753 trace("RESUME\n");
1754 init->offset += 1;
1755 init_exec_set(init, true);
1756 }
1757
1758
1759
1760
1761
1762 static void
1763 init_strap_condition(struct nvbios_init *init)
1764 {
1765 struct nvkm_bios *bios = init->subdev->device->bios;
1766 u32 mask = nvbios_rd32(bios, init->offset + 1);
1767 u32 value = nvbios_rd32(bios, init->offset + 5);
1768
1769 trace("STRAP_CONDITION\t(R[0x101000] & 0x%08x) == 0x%08x\n", mask, value);
1770 init->offset += 9;
1771
1772 if ((init_rd32(init, 0x101000) & mask) != value)
1773 init_exec_set(init, false);
1774 }
1775
1776
1777
1778
1779
1780 static void
1781 init_time(struct nvbios_init *init)
1782 {
1783 struct nvkm_bios *bios = init->subdev->device->bios;
1784 u16 usec = nvbios_rd16(bios, init->offset + 1);
1785
1786 trace("TIME\t0x%04x\n", usec);
1787 init->offset += 3;
1788
1789 if (init_exec(init)) {
1790 if (usec < 1000)
1791 udelay(usec);
1792 else
1793 mdelay((usec + 900) / 1000);
1794 }
1795 }
1796
1797
1798
1799
1800
1801 static void
1802 init_condition(struct nvbios_init *init)
1803 {
1804 struct nvkm_bios *bios = init->subdev->device->bios;
1805 u8 cond = nvbios_rd08(bios, init->offset + 1);
1806
1807 trace("CONDITION\t0x%02x\n", cond);
1808 init->offset += 2;
1809
1810 if (!init_condition_met(init, cond))
1811 init_exec_set(init, false);
1812 }
1813
1814
1815
1816
1817
1818 static void
1819 init_io_condition(struct nvbios_init *init)
1820 {
1821 struct nvkm_bios *bios = init->subdev->device->bios;
1822 u8 cond = nvbios_rd08(bios, init->offset + 1);
1823
1824 trace("IO_CONDITION\t0x%02x\n", cond);
1825 init->offset += 2;
1826
1827 if (!init_io_condition_met(init, cond))
1828 init_exec_set(init, false);
1829 }
1830
1831
1832
1833
1834
1835 static void
1836 init_zm_reg16(struct nvbios_init *init)
1837 {
1838 struct nvkm_bios *bios = init->subdev->device->bios;
1839 u32 addr = nvbios_rd32(bios, init->offset + 1);
1840 u16 data = nvbios_rd16(bios, init->offset + 5);
1841
1842 trace("ZM_REG\tR[0x%06x] = 0x%04x\n", addr, data);
1843 init->offset += 7;
1844
1845 init_wr32(init, addr, data);
1846 }
1847
1848
1849
1850
1851
1852 static void
1853 init_index_io(struct nvbios_init *init)
1854 {
1855 struct nvkm_bios *bios = init->subdev->device->bios;
1856 u16 port = nvbios_rd16(bios, init->offset + 1);
1857 u8 index = nvbios_rd16(bios, init->offset + 3);
1858 u8 mask = nvbios_rd08(bios, init->offset + 4);
1859 u8 data = nvbios_rd08(bios, init->offset + 5);
1860 u8 value;
1861
1862 trace("INDEX_IO\tI[0x%04x][0x%02x] &= 0x%02x |= 0x%02x\n",
1863 port, index, mask, data);
1864 init->offset += 6;
1865
1866 value = init_rdvgai(init, port, index) & mask;
1867 init_wrvgai(init, port, index, data | value);
1868 }
1869
1870
1871
1872
1873
1874 static void
1875 init_pll(struct nvbios_init *init)
1876 {
1877 struct nvkm_bios *bios = init->subdev->device->bios;
1878 u32 reg = nvbios_rd32(bios, init->offset + 1);
1879 u32 freq = nvbios_rd16(bios, init->offset + 5) * 10;
1880
1881 trace("PLL\tR[0x%06x] =PLL= %dkHz\n", reg, freq);
1882 init->offset += 7;
1883
1884 init_prog_pll(init, reg, freq);
1885 }
1886
1887
1888
1889
1890
1891 static void
1892 init_zm_reg(struct nvbios_init *init)
1893 {
1894 struct nvkm_bios *bios = init->subdev->device->bios;
1895 u32 addr = nvbios_rd32(bios, init->offset + 1);
1896 u32 data = nvbios_rd32(bios, init->offset + 5);
1897
1898 trace("ZM_REG\tR[0x%06x] = 0x%08x\n", addr, data);
1899 init->offset += 9;
1900
1901 if (addr == 0x000200)
1902 data |= 0x00000001;
1903
1904 init_wr32(init, addr, data);
1905 }
1906
1907
1908
1909
1910
1911 static void
1912 init_ram_restrict_pll(struct nvbios_init *init)
1913 {
1914 struct nvkm_bios *bios = init->subdev->device->bios;
1915 u8 type = nvbios_rd08(bios, init->offset + 1);
1916 u8 count = init_ram_restrict_group_count(init);
1917 u8 strap = init_ram_restrict(init);
1918 u8 cconf;
1919
1920 trace("RAM_RESTRICT_PLL\t0x%02x\n", type);
1921 init->offset += 2;
1922
1923 for (cconf = 0; cconf < count; cconf++) {
1924 u32 freq = nvbios_rd32(bios, init->offset);
1925
1926 if (cconf == strap) {
1927 trace("%dkHz *\n", freq);
1928 init_prog_pll(init, type, freq);
1929 } else {
1930 trace("%dkHz\n", freq);
1931 }
1932
1933 init->offset += 4;
1934 }
1935 }
1936
1937
1938
1939
1940
1941 static void
1942 init_reset_begun(struct nvbios_init *init)
1943 {
1944 trace("RESET_BEGUN\n");
1945 init->offset += 1;
1946 }
1947
1948
1949
1950
1951
1952 static void
1953 init_reset_end(struct nvbios_init *init)
1954 {
1955 trace("RESET_END\n");
1956 init->offset += 1;
1957 }
1958
1959
1960
1961
1962
1963 static void
1964 init_gpio(struct nvbios_init *init)
1965 {
1966 struct nvkm_gpio *gpio = init->subdev->device->gpio;
1967
1968 trace("GPIO\n");
1969 init->offset += 1;
1970
1971 if (init_exec(init))
1972 nvkm_gpio_reset(gpio, DCB_GPIO_UNUSED);
1973 }
1974
1975
1976
1977
1978
1979 static void
1980 init_ram_restrict_zm_reg_group(struct nvbios_init *init)
1981 {
1982 struct nvkm_bios *bios = init->subdev->device->bios;
1983 u32 addr = nvbios_rd32(bios, init->offset + 1);
1984 u8 incr = nvbios_rd08(bios, init->offset + 5);
1985 u8 num = nvbios_rd08(bios, init->offset + 6);
1986 u8 count = init_ram_restrict_group_count(init);
1987 u8 index = init_ram_restrict(init);
1988 u8 i, j;
1989
1990 trace("RAM_RESTRICT_ZM_REG_GROUP\t"
1991 "R[0x%08x] 0x%02x 0x%02x\n", addr, incr, num);
1992 init->offset += 7;
1993
1994 for (i = 0; i < num; i++) {
1995 trace("\tR[0x%06x] = {\n", addr);
1996 for (j = 0; j < count; j++) {
1997 u32 data = nvbios_rd32(bios, init->offset);
1998
1999 if (j == index) {
2000 trace("\t\t0x%08x *\n", data);
2001 init_wr32(init, addr, data);
2002 } else {
2003 trace("\t\t0x%08x\n", data);
2004 }
2005
2006 init->offset += 4;
2007 }
2008 trace("\t}\n");
2009 addr += incr;
2010 }
2011 }
2012
2013
2014
2015
2016
2017 static void
2018 init_copy_zm_reg(struct nvbios_init *init)
2019 {
2020 struct nvkm_bios *bios = init->subdev->device->bios;
2021 u32 sreg = nvbios_rd32(bios, init->offset + 1);
2022 u32 dreg = nvbios_rd32(bios, init->offset + 5);
2023
2024 trace("COPY_ZM_REG\tR[0x%06x] = R[0x%06x]\n", dreg, sreg);
2025 init->offset += 9;
2026
2027 init_wr32(init, dreg, init_rd32(init, sreg));
2028 }
2029
2030
2031
2032
2033
2034 static void
2035 init_zm_reg_group(struct nvbios_init *init)
2036 {
2037 struct nvkm_bios *bios = init->subdev->device->bios;
2038 u32 addr = nvbios_rd32(bios, init->offset + 1);
2039 u8 count = nvbios_rd08(bios, init->offset + 5);
2040
2041 trace("ZM_REG_GROUP\tR[0x%06x] =\n", addr);
2042 init->offset += 6;
2043
2044 while (count--) {
2045 u32 data = nvbios_rd32(bios, init->offset);
2046 trace("\t0x%08x\n", data);
2047 init_wr32(init, addr, data);
2048 init->offset += 4;
2049 }
2050 }
2051
2052
2053
2054
2055
2056 static void
2057 init_xlat(struct nvbios_init *init)
2058 {
2059 struct nvkm_bios *bios = init->subdev->device->bios;
2060 u32 saddr = nvbios_rd32(bios, init->offset + 1);
2061 u8 sshift = nvbios_rd08(bios, init->offset + 5);
2062 u8 smask = nvbios_rd08(bios, init->offset + 6);
2063 u8 index = nvbios_rd08(bios, init->offset + 7);
2064 u32 daddr = nvbios_rd32(bios, init->offset + 8);
2065 u32 dmask = nvbios_rd32(bios, init->offset + 12);
2066 u8 shift = nvbios_rd08(bios, init->offset + 16);
2067 u32 data;
2068
2069 trace("INIT_XLAT\tR[0x%06x] &= 0x%08x |= "
2070 "(X%02x((R[0x%06x] %s 0x%02x) & 0x%02x) << 0x%02x)\n",
2071 daddr, dmask, index, saddr, (sshift & 0x80) ? "<<" : ">>",
2072 (sshift & 0x80) ? (0x100 - sshift) : sshift, smask, shift);
2073 init->offset += 17;
2074
2075 data = init_shift(init_rd32(init, saddr), sshift) & smask;
2076 data = init_xlat_(init, index, data) << shift;
2077 init_mask(init, daddr, ~dmask, data);
2078 }
2079
2080
2081
2082
2083
2084 static void
2085 init_zm_mask_add(struct nvbios_init *init)
2086 {
2087 struct nvkm_bios *bios = init->subdev->device->bios;
2088 u32 addr = nvbios_rd32(bios, init->offset + 1);
2089 u32 mask = nvbios_rd32(bios, init->offset + 5);
2090 u32 add = nvbios_rd32(bios, init->offset + 9);
2091 u32 data;
2092
2093 trace("ZM_MASK_ADD\tR[0x%06x] &= 0x%08x += 0x%08x\n", addr, mask, add);
2094 init->offset += 13;
2095
2096 data = init_rd32(init, addr);
2097 data = (data & mask) | ((data + add) & ~mask);
2098 init_wr32(init, addr, data);
2099 }
2100
2101
2102
2103
2104
2105 static void
2106 init_auxch(struct nvbios_init *init)
2107 {
2108 struct nvkm_bios *bios = init->subdev->device->bios;
2109 u32 addr = nvbios_rd32(bios, init->offset + 1);
2110 u8 count = nvbios_rd08(bios, init->offset + 5);
2111
2112 trace("AUXCH\tAUX[0x%08x] 0x%02x\n", addr, count);
2113 init->offset += 6;
2114
2115 while (count--) {
2116 u8 mask = nvbios_rd08(bios, init->offset + 0);
2117 u8 data = nvbios_rd08(bios, init->offset + 1);
2118 trace("\tAUX[0x%08x] &= 0x%02x |= 0x%02x\n", addr, mask, data);
2119 mask = init_rdauxr(init, addr) & mask;
2120 init_wrauxr(init, addr, mask | data);
2121 init->offset += 2;
2122 }
2123 }
2124
2125
2126
2127
2128
2129 static void
2130 init_zm_auxch(struct nvbios_init *init)
2131 {
2132 struct nvkm_bios *bios = init->subdev->device->bios;
2133 u32 addr = nvbios_rd32(bios, init->offset + 1);
2134 u8 count = nvbios_rd08(bios, init->offset + 5);
2135
2136 trace("ZM_AUXCH\tAUX[0x%08x] 0x%02x\n", addr, count);
2137 init->offset += 6;
2138
2139 while (count--) {
2140 u8 data = nvbios_rd08(bios, init->offset + 0);
2141 trace("\tAUX[0x%08x] = 0x%02x\n", addr, data);
2142 init_wrauxr(init, addr, data);
2143 init->offset += 1;
2144 }
2145 }
2146
2147
2148
2149
2150
2151 static void
2152 init_i2c_long_if(struct nvbios_init *init)
2153 {
2154 struct nvkm_bios *bios = init->subdev->device->bios;
2155 u8 index = nvbios_rd08(bios, init->offset + 1);
2156 u8 addr = nvbios_rd08(bios, init->offset + 2) >> 1;
2157 u8 reglo = nvbios_rd08(bios, init->offset + 3);
2158 u8 reghi = nvbios_rd08(bios, init->offset + 4);
2159 u8 mask = nvbios_rd08(bios, init->offset + 5);
2160 u8 data = nvbios_rd08(bios, init->offset + 6);
2161 struct i2c_adapter *adap;
2162
2163 trace("I2C_LONG_IF\t"
2164 "I2C[0x%02x][0x%02x][0x%02x%02x] & 0x%02x == 0x%02x\n",
2165 index, addr, reglo, reghi, mask, data);
2166 init->offset += 7;
2167
2168 adap = init_i2c(init, index);
2169 if (adap) {
2170 u8 i[2] = { reghi, reglo };
2171 u8 o[1] = {};
2172 struct i2c_msg msg[] = {
2173 { .addr = addr, .flags = 0, .len = 2, .buf = i },
2174 { .addr = addr, .flags = I2C_M_RD, .len = 1, .buf = o }
2175 };
2176 int ret;
2177
2178 ret = i2c_transfer(adap, msg, 2);
2179 if (ret == 2 && ((o[0] & mask) == data))
2180 return;
2181 }
2182
2183 init_exec_set(init, false);
2184 }
2185
2186
2187
2188
2189
2190 static void
2191 init_gpio_ne(struct nvbios_init *init)
2192 {
2193 struct nvkm_bios *bios = init->subdev->device->bios;
2194 struct nvkm_gpio *gpio = bios->subdev.device->gpio;
2195 struct dcb_gpio_func func;
2196 u8 count = nvbios_rd08(bios, init->offset + 1);
2197 u8 idx = 0, ver, len;
2198 u16 data, i;
2199
2200 trace("GPIO_NE\t");
2201 init->offset += 2;
2202
2203 for (i = init->offset; i < init->offset + count; i++)
2204 cont("0x%02x ", nvbios_rd08(bios, i));
2205 cont("\n");
2206
2207 while ((data = dcb_gpio_parse(bios, 0, idx++, &ver, &len, &func))) {
2208 if (func.func != DCB_GPIO_UNUSED) {
2209 for (i = init->offset; i < init->offset + count; i++) {
2210 if (func.func == nvbios_rd08(bios, i))
2211 break;
2212 }
2213
2214 trace("\tFUNC[0x%02x]", func.func);
2215 if (i == (init->offset + count)) {
2216 cont(" *");
2217 if (init_exec(init))
2218 nvkm_gpio_reset(gpio, func.func);
2219 }
2220 cont("\n");
2221 }
2222 }
2223
2224 init->offset += count;
2225 }
2226
2227 static struct nvbios_init_opcode {
2228 void (*exec)(struct nvbios_init *);
2229 } init_opcode[] = {
2230 [0x32] = { init_io_restrict_prog },
2231 [0x33] = { init_repeat },
2232 [0x34] = { init_io_restrict_pll },
2233 [0x36] = { init_end_repeat },
2234 [0x37] = { init_copy },
2235 [0x38] = { init_not },
2236 [0x39] = { init_io_flag_condition },
2237 [0x3a] = { init_generic_condition },
2238 [0x3b] = { init_io_mask_or },
2239 [0x3c] = { init_io_or },
2240 [0x47] = { init_andn_reg },
2241 [0x48] = { init_or_reg },
2242 [0x49] = { init_idx_addr_latched },
2243 [0x4a] = { init_io_restrict_pll2 },
2244 [0x4b] = { init_pll2 },
2245 [0x4c] = { init_i2c_byte },
2246 [0x4d] = { init_zm_i2c_byte },
2247 [0x4e] = { init_zm_i2c },
2248 [0x4f] = { init_tmds },
2249 [0x50] = { init_zm_tmds_group },
2250 [0x51] = { init_cr_idx_adr_latch },
2251 [0x52] = { init_cr },
2252 [0x53] = { init_zm_cr },
2253 [0x54] = { init_zm_cr_group },
2254 [0x56] = { init_condition_time },
2255 [0x57] = { init_ltime },
2256 [0x58] = { init_zm_reg_sequence },
2257 [0x59] = { init_pll_indirect },
2258 [0x5a] = { init_zm_reg_indirect },
2259 [0x5b] = { init_sub_direct },
2260 [0x5c] = { init_jump },
2261 [0x5e] = { init_i2c_if },
2262 [0x5f] = { init_copy_nv_reg },
2263 [0x62] = { init_zm_index_io },
2264 [0x63] = { init_compute_mem },
2265 [0x65] = { init_reset },
2266 [0x66] = { init_configure_mem },
2267 [0x67] = { init_configure_clk },
2268 [0x68] = { init_configure_preinit },
2269 [0x69] = { init_io },
2270 [0x6b] = { init_sub },
2271 [0x6d] = { init_ram_condition },
2272 [0x6e] = { init_nv_reg },
2273 [0x6f] = { init_macro },
2274 [0x71] = { init_done },
2275 [0x72] = { init_resume },
2276 [0x73] = { init_strap_condition },
2277 [0x74] = { init_time },
2278 [0x75] = { init_condition },
2279 [0x76] = { init_io_condition },
2280 [0x77] = { init_zm_reg16 },
2281 [0x78] = { init_index_io },
2282 [0x79] = { init_pll },
2283 [0x7a] = { init_zm_reg },
2284 [0x87] = { init_ram_restrict_pll },
2285 [0x8c] = { init_reset_begun },
2286 [0x8d] = { init_reset_end },
2287 [0x8e] = { init_gpio },
2288 [0x8f] = { init_ram_restrict_zm_reg_group },
2289 [0x90] = { init_copy_zm_reg },
2290 [0x91] = { init_zm_reg_group },
2291 [0x92] = { init_reserved },
2292 [0x96] = { init_xlat },
2293 [0x97] = { init_zm_mask_add },
2294 [0x98] = { init_auxch },
2295 [0x99] = { init_zm_auxch },
2296 [0x9a] = { init_i2c_long_if },
2297 [0xa9] = { init_gpio_ne },
2298 [0xaa] = { init_reserved },
2299 };
2300
2301 int
2302 nvbios_exec(struct nvbios_init *init)
2303 {
2304 struct nvkm_bios *bios = init->subdev->device->bios;
2305
2306 init->nested++;
2307 while (init->offset) {
2308 u8 opcode = nvbios_rd08(bios, init->offset);
2309 if (opcode >= ARRAY_SIZE(init_opcode) ||
2310 !init_opcode[opcode].exec) {
2311 error("unknown opcode 0x%02x\n", opcode);
2312 return -EINVAL;
2313 }
2314
2315 init_opcode[opcode].exec(init);
2316 }
2317 init->nested--;
2318 return 0;
2319 }
2320
2321 int
2322 nvbios_post(struct nvkm_subdev *subdev, bool execute)
2323 {
2324 struct nvkm_bios *bios = subdev->device->bios;
2325 int ret = 0;
2326 int i = -1;
2327 u16 data;
2328
2329 if (execute)
2330 nvkm_debug(subdev, "running init tables\n");
2331 while (!ret && (data = (init_script(bios, ++i)))) {
2332 ret = nvbios_init(subdev, data,
2333 init.execute = execute ? 1 : 0;
2334 );
2335 }
2336
2337
2338
2339
2340 if (!ret && (data = init_unknown_script(bios))) {
2341 ret = nvbios_init(subdev, data,
2342 init.execute = execute ? 1 : 0;
2343 );
2344 }
2345
2346 return ret;
2347 }