summaryrefslogtreecommitdiffstats
path: root/stage1/init_hw.c
blob: 03520e60b44653b560f5f0620fa94eed312ebbc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
////////////////////////////////////////////////////////////////////////////////
///
/// @file       init_hw.c
///
/// @project
///
/// @brief      Hardware initialization routines for stage1
///
////////////////////////////////////////////////////////////////////////////////
///
////////////////////////////////////////////////////////////////////////////////
///
/// @copyright Copyright (c) 2018-2019, Evan Lojewski
/// @cond
///
/// All rights reserved.
///
/// Redistribution and use in source and binary forms, with or without
/// modification, are permitted provided that the following conditions are met:
/// 1. Redistributions of source code must retain the above copyright notice,
/// this list of conditions and the following disclaimer.
/// 2. Redistributions in binary form must reproduce the above copyright notice,
/// this list of conditions and the following disclaimer in the documentation
/// and/or other materials provided with the distribution.
/// 3. Neither the name of the copyright holder nor the
/// names of its contributors may be used to endorse or promote products
/// derived from this software without specific prior written permission.
///
////////////////////////////////////////////////////////////////////////////////
///
/// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
/// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
/// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
/// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
/// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
/// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
/// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
/// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
/// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
/// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
/// POSSIBILITY OF SUCH DAMAGE.
/// @endcond
////////////////////////////////////////////////////////////////////////////////

#include <MII.h>
#include <Timer.h>
#include <bcm5719_RXMBUF.h>
#include <bcm5719_SDBCACHE.h>
#include <bcm5719_TXMBUF.h>
#include <stage1.h>

#ifdef CXX_SIMULATOR
#define volatile
#endif

// #define MII_INIT_TIMEOUT_MS (3000) /* Allow up to 3 seconds for MII init to complete. */

void *memset(void *s, int c, size_t n)
{
#ifdef CXX_SIMULATOR
    // TODO: Use the memory window to set everything.
#else
    // We assume things are aligned here...
    int32_t *buffer = s;
    for (size_t i = 0; i < n / 4; i++)
    {
        buffer[i] = c;
    }
#endif
    return s;
}

#if 0
void init_mii_function0(volatile DEVICE_t *device)
{
    uint32_t currentTime;
    if (0 == DEVICE.Status.bits.FunctionNumber)
    {
        reportStatus(STATUS_INIT_HW, 0xf1);

        // MIIPORT 0 (0x8010):0x1A |= 0x4000
        (void)MII_selectBlock(device, 0, 0x8010);
        if (0x8010 == MII_getBlock(device, 0))
        {
            int32_t r1Ah_value = MII_readRegister(device, 0, (mii_reg_t)0x1A);
            if (r1Ah_value >= 0)
            {
                r1Ah_value |= 0x4000;
                (void)MII_writeRegister(device, 0, (mii_reg_t)0x1A, (uint16_t)r1Ah_value);

                reportStatus(STATUS_INIT_HW, 0xf2);

                // (Note: This is done in a retry loop which verifies the block select by
                // reading 0x1F and confirming it reads 0x8610
                currentTime = Timer_getCurrentTime1KHz();
                do
                {
                    (void)MII_selectBlock(device, 0, 0x8610);
                    if (Timer_didTimeElapsed1KHz(currentTime, MII_INIT_TIMEOUT_MS))
                    {
                        // exit from while loop early.
                        break;
                    }
                } while (0x8610 != MII_getBlock(device, 0));

                if (0x8610 == MII_getBlock(device, 0))
                {
                    reportStatus(STATUS_INIT_HW, 0xf3);

                    // MIIPORT 0 (0x8610):0x15, set bits 0:1 to 2.
                    int32_t r15h_value = MII_readRegister(device, 0, (mii_reg_t)0x15);
                    if (r15h_value >= 0)
                    {
                        r15h_value &= ~0x3;
                        r15h_value |= 0x2;
                        (void)MII_writeRegister(device, 0, (mii_reg_t)0x15, (uint16_t)r15h_value);
                    }

                    reportStatus(STATUS_INIT_HW, 0xf4);

                    // and then verifies that bits 0:1 have been set to 2, and retries about a
                    // dozen times until the block select and write are both correct. Probably
                    // an attempt to work around some bug or weird asynchronous behaviour for
                    // these unknown MII registers.)
                    currentTime = Timer_getCurrentTime1KHz();
                    do
                    {
                        r15h_value = MII_readRegister(device, 0, (mii_reg_t)0x15);
                        if (Timer_didTimeElapsed1KHz(currentTime, MII_INIT_TIMEOUT_MS))
                        {
                            // exit from while loop early.
                            break;
                        }
                    } while (2 != (r15h_value & 0x3));
                }

                reportStatus(STATUS_INIT_HW, 0xf5);
                // (0x8010):0x1A, mask 0x4000.
                (void)MII_selectBlock(device, 0, 0x8010);
                r1Ah_value &= ~0x4000;
                (void)MII_writeRegister(device, 0, (mii_reg_t)0x1A, (uint16_t)r1Ah_value);
            }

            reportStatus(STATUS_INIT_HW, 0xf6);
        }

        (void)MII_selectBlock(device, 0, 0);

        reportStatus(STATUS_INIT_HW, 0xf7);
    }
}

void init_mii(volatile DEVICE_t *device)
{
    //     MII init for all functions (MIIPORT determined by function/PHY type):
    // Set MII_REG_CONTROL to AUTO_NEGOTIATION_ENABLE.
    uint8_t phy = MII_getPhy(device);
    RegMIIControl_t control;
    int32_t readVal = MII_readRegister(device, phy, (mii_reg_t)REG_MII_CONTROL);
    if (readVal >= 0)
    {
        control.r16 = (uint16_t)readVal;
        control.bits.AutoNegotiationEnable = 1;
        (void)MII_writeRegister(device, phy, (mii_reg_t)REG_MII_CONTROL, control.r16);
    }
}
#endif

void __attribute__((noinline)) zero_bss(void)
{
#ifndef CXX_SIMULATOR
    // Zero BSS information, will always be word aligned.
    extern uint32_t _fbss[];
    extern uint32_t _ebss[];

    memset(_fbss, 0, (size_t)(_ebss - _fbss) * 4u);
#endif
}

void early_init_hw(volatile DEVICE_t *device)
{
    zero_bss();

#ifndef CXX_SIMULATOR
    // Zero out ram - gencom, db cache, tx/rx mbuf, others in mem map
    memset((void *)&GEN, 0, REG_GEN_SIZE);
    memset((void *)&RXMBUF, 0, REG_RXMBUF_SIZE);
    memset((void *)&TXMBUF, 0, REG_TXMBUF_SIZE);
    memset((void *)&SDBCACHE, 0, REG_SDBCACHE_SIZE);
#endif

    RegDEVICEPciState_t PciState;
    PciState.r32 = device->PciState.r32;
    PciState.bits.APEControlRegisterWriteEnable = 1;
    PciState.bits.APESharedMemoryWriteEnable = 1;
    PciState.bits.APEProgramSpaceWriteEnable = 1;
    device->PciState.r32 = PciState.r32;
}

void init_mac(const NVRAMContents_t *nvram)
{
    int function = DEVICE.Status.bits.FunctionNumber;
    const uint32_t *mac0 = nvram->info.macAddr0;
    const uint32_t *my_mac = mac0; // default.
    DEVICE.EmacMacAddresses0High.r32 = mac0[0];
    DEVICE.EmacMacAddresses0Low.r32 = mac0[1];

    const uint32_t *mac1 = nvram->info.macAddr1;
    if (1 == function)
    {
        my_mac = mac1;
    }
    DEVICE.EmacMacAddresses1High.r32 = mac1[0];
    DEVICE.EmacMacAddresses1Low.r32 = mac1[1];

    const uint32_t *mac2 = nvram->info2.macAddr2;
    if (2 == function)
    {
        my_mac = mac2;
    }
    DEVICE.EmacMacAddresses2High.r32 = mac2[0];
    DEVICE.EmacMacAddresses2Low.r32 = mac2[1];

    const uint32_t *mac3 = nvram->info2.macAddr3;
    if (3 == function)
    {
        my_mac = mac3;
    }
    DEVICE.EmacMacAddresses3High.r32 = mac3[0];
    DEVICE.EmacMacAddresses3Low.r32 = mac3[1];

    // Store mac / serial number.
    DEVICE.PciSerialNumberHigh.r32 = my_mac[0];
    RegGENGenMacAddrHighMbox_t mboxhigh;
    mboxhigh.r32 = 0;
    mboxhigh.bits.High = my_mac[0];
    mboxhigh.bits.Magic = GEN_GEN_MAC_ADDR_HIGH_MBOX_MAGIC_VALID;
    GEN.GenMacAddrHighMbox = mboxhigh;

    DEVICE.PciSerialNumberLow.r32 = my_mac[1];
    GEN.GenMacAddrLowMbox.r32 = my_mac[1];
}

uint32_t translate_power_budget(uint16_t raw)
{
    RegDEVICEPciPowerBudget0_t translator;
    translator.r32 = 0;
    if (raw)
    {
        translator.bits.BasePower = (raw)&0xFF;
        translator.bits.DataScale = DEVICE_PCI_POWER_BUDGET_0_DATA_SCALE_0_1X;
        translator.bits.PMState = ((raw)&0x0300) >> 8;
        translator.bits.Type = ((raw)&0x1C00) >> 10;
        translator.bits.PowerRail = ((raw)&0xE000) >> 13;
    }

    return translator.r32;
}

void init_power(const NVRAMContents_t *nvram)
{
    // PCI power dissipated / consumed
    DEVICE.PciPowerConsumptionInfo.r32 = nvram->info.powerConsumed;
    DEVICE.PciPowerDissipatedInfo.r32 = nvram->info.powerDissipated;

    // Power Budget
    uint16_t pb_raw0 = (nvram->info.powerBudget0) & 0xffff;
    uint16_t pb_raw1 = (nvram->info.powerBudget0) >> 16;
    uint16_t pb_raw2 = (nvram->info.powerBudget1) & 0xffff;
    uint16_t pb_raw3 = (nvram->info.powerBudget1) >> 16;
    uint16_t pb_raw4 = (nvram->info.powerBudget2) & 0xffff;
    uint16_t pb_raw5 = (nvram->info.powerBudget2) >> 16;
    uint16_t pb_raw6 = (nvram->info.powerBudget3) & 0xffff;
    uint16_t pb_raw7 = (nvram->info.powerBudget3) >> 16;

    DEVICE.PciPowerBudget0.r32 = translate_power_budget(pb_raw0);
    DEVICE.PciPowerBudget1.r32 = translate_power_budget(pb_raw1);
    DEVICE.PciPowerBudget2.r32 = translate_power_budget(pb_raw2);
    DEVICE.PciPowerBudget3.r32 = translate_power_budget(pb_raw3);
    DEVICE.PciPowerBudget4.r32 = translate_power_budget(pb_raw4);
    DEVICE.PciPowerBudget5.r32 = translate_power_budget(pb_raw5);
    DEVICE.PciPowerBudget6.r32 = translate_power_budget(pb_raw6);
    DEVICE.PciPowerBudget7.r32 = translate_power_budget(pb_raw7);
}

uint16_t nvm_get_subsystem_device(volatile DEVICE_t *device, const NVRAMContents_t *nvram)
{
    switch (MII_getPhy(device))
    {
        /* SERDES */
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_SGMII_0:
            return nvram->info2.pciSubsystemF0SERDES;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_SGMII_1:
            return nvram->info2.pciSubsystemF1SERDES;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_SGMII_2:
            return nvram->info2.pciSubsystemF2SERDES;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_SGMII_3:
            return nvram->info2.pciSubsystemF3SERDES;

        /* GPHY */
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_PHY_0:
            return nvram->info2.pciSubsystemF0GPHY;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_PHY_1:
            return nvram->info2.pciSubsystemF1GPHY;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_PHY_2:
            return nvram->info2.pciSubsystemF2GPHY;
        case DEVICE_MII_COMMUNICATION_PHY_ADDRESS_PHY_3:
            return nvram->info2.pciSubsystemF3GPHY;

        default:
            // Unknown. use nvm default.
            return nvram->info.subsystemDeviceID;
    }
}

void init_pci(volatile DEVICE_t *device, const NVRAMContents_t *nvram)
{
    // Update the device/vendor IDs so long as they are valid.
    if (nvram->info.deviceID && nvram->info.vendorID)
    {
        // PCI Device / Vendor ID.
        RegDEVICEPciVendorDeviceId_t vendor_device;
        vendor_device.r32 = 0;
        vendor_device.bits.DeviceID = nvram->info.deviceID;
        vendor_device.bits.VendorID = nvram->info.vendorID;
        DEVICE.PciVendorDeviceId = vendor_device;
    }

    uint16_t sybsystemId = nvm_get_subsystem_device(device, nvram);
    if (nvram->info.subsystemVendorID && sybsystemId)
    {
        // PCI Subsystem
        RegDEVICEPciSubsystemId_t subsystem;
        subsystem.r32 = 0;
        subsystem.bits.SubsystemVendorID = nvram->info.subsystemVendorID;
        subsystem.bits.SubsystemID = sybsystemId;
        DEVICE.PciSubsystemId = subsystem;
    }

    // RegDEVICEPciClassCodeRevision_t partially from REG_CHIP_ID
}

void init_gen(volatile DEVICE_t *device, const NVRAMContents_t *nvram)
{
    int function = device->Status.bits.FunctionNumber;
    RegGENGenCfg_t cfg;

    uint32_t cfg_feature;
    uint32_t cfg_hw;
    uint32_t cfg_hw2;

    cfg.r32 = 0; // Talos II has 0x2a0194
    cfg.bits.LEDMode = GEN_GEN_CFG_LED_MODE_PHY_1;
    cfg.bits.ASFEnable = 1;
    cfg.bits.APEEnable = 1;

    if (MII_getPhy(device) >= DEVICE_MII_COMMUNICATION_PHY_ADDRESS_SGMII_0)
    {
        cfg.bits.PHYType = GEN_GEN_CFG_PHY_TYPE_FIBER;
    }
    else
    {
        cfg.bits.PHYType = GEN_GEN_CFG_PHY_TYPE_COPPER;
    }

    switch (function)
    {
        default:
        case 0:
            cfg_feature = nvram->info.func0CfgFeature;
            cfg_hw = nvram->info.func0CfgHW;
            cfg_hw2 = nvram->info2.func0CfgHW2;
            break;

        case 1:
            cfg_feature = nvram->info.func1CfgFeature;
            cfg_hw = nvram->info.func1CfgHW;
            cfg_hw2 = nvram->info2.func1CfgHW2;
            break;

        case 2:
            cfg_feature = nvram->info2.func2CfgFeature;
            cfg_hw = nvram->info2.func2CfgHW;
            cfg_hw2 = nvram->info2.func2CfgHW2;
            break;

        case 3:
            cfg_feature = nvram->info2.func3CfgFeature;
            cfg_hw = nvram->info2.func3CfgHW;
            cfg_hw2 = nvram->info2.func3CfgHW2;
            break;
    }

    GEN.GenCfg.r32 = cfg.r32;
    GEN.GenCfgFeature.r32 = cfg_feature;
    GEN.GenCfgHw.r32 = cfg_hw;
    GEN.GenCfgHw2.r32 = cfg_hw2;
    GEN.GenCfgShared.r32 = nvram->info.cfgShared;
    GEN.GenCfg5.r32 = nvram->info2.cfg5;
}

void load_nvm_config(volatile DEVICE_t *device, const NVRAMContents_t *nvram)
{
    // Load information from NVM, set various registers + mem

    // MAC Addr, serial number
    init_mac(nvram);

    // firmware revision
    // mfrDate

    // Power
    init_power(nvram);

    // REG_PCI_SUBSYSTEM_ID, vendor, class, rev
    init_pci(device, nvram);

    init_gen(device, nvram);
}

void init_hw(volatile DEVICE_t *device)
{
    reportStatus(STATUS_INIT_HW, 0);
    // Misc regs init

    // Mask REG 0x64C0 bits 0x7FF, or bits 0x0010. This register is unknown.
    device->_64c0.r32 = (device->_64c0.r32 & ~0x7FFu) | 0x10u;

    // Set unknown REG 0x64C8 to 0x1004.
    device->_64c8.r32 = 0x00001004u;

    // Enable MAC clock speed override
    RegDEVICEClockSpeedOverridePolicy_t clockspeed;
    clockspeed.r32 = 0u;
    clockspeed.bits.MACClockSpeedOverrideEnabled = 1u;
    device->ClockSpeedOverridePolicy = clockspeed;

    // Mask REG 0x64DC bits 0x0F, or bits 0x01. Unknown.
    device->_64dc.r32 = (device->_64dc.r32 & ~0xFu) | 0x01u;

    // Mask REG 0x64DC bits 0xC00, set ... TODO
    // value from talos: 0x00315E42
    device->_64dc.r32 &= ~0xC00;

    // Unknown stuff involving REG 0x6530, REG 0x65F4, depends on config, TODO
    // Value from Talos:0x6530z 0x6530 -> 0x00000000, 0x65F4 -> 0x00000109.

    // REG_LSO_NONLSO_BD_READ_DMA_CORRUPTION_ENABLE_CONTROL: Set BD and NonLSO
    // fields to 4K.
    RegDEVICELsoNonlsoBdReadDmaCorruptionEnableControl_t reglso = device->LsoNonlsoBdReadDmaCorruptionEnableControl;
    reglso.bits.PCIRequestBurstLengthforBDRDMAEngine = DEVICE_LSO_NONLSO_BD_READ_DMA_CORRUPTION_ENABLE_CONTROL_PCI_REQUEST_BURST_LENGTH_FOR_BD_RDMA_ENGINE_4K;
    reglso.bits.PCIRequestBurstLengthforNonLSORDMAEngine =
        DEVICE_LSO_NONLSO_BD_READ_DMA_CORRUPTION_ENABLE_CONTROL_PCI_REQUEST_BURST_LENGTH_FOR_NONLSO_RDMA_ENGINE_4K;
    device->LsoNonlsoBdReadDmaCorruptionEnableControl = reglso;

    // Disable ECC.
    RegDEVICEGphyStrap_t gphyStrap = device->GphyStrap;
    gphyStrap.bits.TXMBUFECCEnable = 0;
    gphyStrap.bits.RXMBUFECCEnable = 0;
    gphyStrap.bits.RXCPUSPADECCEnable = 0;
    device->GphyStrap = gphyStrap;

    // LED Control
    // Value from Talos: 0x00000880: DEVICE_LED_CONTROL_LED_STATUS_1000_MASK | DEVICE_LED_CONTROL_LED_MODE_PHY_MODE_1
    RegDEVICELedControl_t ledControl = device->LedControl;
    ledControl.bits.LEDMode = DEVICE_LED_CONTROL_LED_MODE_PHY_MODE_1;
    device->LedControl = ledControl;

    // MISC Local Control
    // Value from Talos: 0x00020001, reserved bits
    device->MiscellaneousLocalControl.bits.AutoSEEPROMAccess = 0; // Bit is not set on talos II

    // Set REG_EAV_REF_CLOCK_CONTROL as desired. This is initialized from
    // CFG_HW; the TIMESYNC_GPIO_MAPPING, APE_GPIO_{0,1,2,3} fields within it
    // are copied to the corresponding fields in REG_EAV_REF_CLOCK_CONTROL.
    RegDEVICEEavRefClockControl_t ref_clock;
    RegGENGenCfgHw_t cfg_hw = GEN.GenCfgHw;
    ref_clock.r32 = 0;
    ref_clock.bits.TimesyncGPIOMapping = cfg_hw.bits.TimesyncGPIOMapping;
    ref_clock.bits.APEGPIO0Mapping = cfg_hw.bits.APEGPIO0Mapping;
    ref_clock.bits.APEGPIO1Mapping = cfg_hw.bits.APEGPIO1Mapping;
    ref_clock.bits.APEGPIO2Mapping = cfg_hw.bits.APEGPIO2Mapping;
    ref_clock.bits.APEGPIO3Mapping = cfg_hw.bits.APEGPIO3Mapping;
    device->EavRefClockControl = ref_clock;

    // Optionally enable REG_GRC_MODE_CONTROL__TIME_SYNC_MODE_ENABLE.
    // Value from Talos: 0x00130034
    // Bit is not set on Talos w/ default firmware, disabled for now.
    device->GrcModeControl.bits.TimeSyncModeEnable = 0;

    // Enable const clock for MII
    device->MiiMode.bits.ConstantMDIO_DIV_MDCClockSpeed = 1;

    // Set or clear REG_GPHY_CONTROL_STATUS__SWITCHING_REGULATOR_POWER_DOWN as
    // desired.
    // Value from Talos:  0x02C01000
    device->GphyControlStatus.bits.SwitchingRegulatorPowerDown = 0;

    // Set or clear
    // REG_TOP_LEVEL_MISCELLANEOUS_CONTROL_1__NCSI_CLOCK_OUTPUT_DISABLE as
    // desired.
    // Value from Talos: 0x00000080 (unknown, reserved bit set)
    device->TopLevelMiscellaneousControl1.bits.NCSIClockOutputDisable = 0;

    reportStatus(STATUS_INIT_HW, 0xf0);

#if 0
    // Perform MII init.
    APE_aquireLock();
    init_mii_function0(device);

    reportStatus(STATUS_INIT_HW, 0xfe);

    init_mii(device);
    APE_releaseLock();
#endif

    RegDEVICEBufferManagerMode_t bmm;
    bmm.r32 = 0;
    bmm.bits.Enable = 1;
    bmm.bits.AttentionEnable = 1;
    bmm.bits.ResetRXMBUFPointer = 1;
    DEVICE.BufferManagerMode = bmm;

    // Set REG_MISCELLANEOUS_LOCAL_CONTROL to AUTO_SEEPROM_ACCESS|GPIO_2_OUTPUT_ENABLE.
    DEVICE.MiscellaneousLocalControl.bits.AutoSEEPROMAccess = 1;
    DEVICE.MiscellaneousLocalControl.bits.GPIO2OutputEnable = 1;

    // Setup link-aware power mode.
    // The following must be performed while holding REG_MUTEX_{REQUEST,GRANT}; use bit 4.
    DEVICE.MutexRequest.r32 |= (1 << 4);
    while (0 == (DEVICE.MutexGrant.r32 & (1 << 4)))
    {
        // Wait for grant.
    }

    // Set REG_LINK_AWARE_POWER_MODE_CLOCK_POLICY to MAC_CLOCK_SWITCH__6_25MHZ.
    RegDEVICELinkAwarePowerModeClockPolicy_t lapmcp;
    lapmcp.r32 = 0;
    lapmcp.bits.MACClockSwitch = DEVICE_LINK_AWARE_POWER_MODE_CLOCK_POLICY_MAC_CLOCK_SWITCH_6_25MHZ;
    DEVICE.LinkAwarePowerModeClockPolicy = lapmcp;
    // Set REG_CPMU_CONTROL to zero or more of LINK_AWARE_POWER_MODE_ENABLE, LINK_IDLE_POWER_MODE_ENABLE, LINK_SPEED_POWER_MODE_ENABLE as desired (see NVM
    // CfgFeature).
    RegDEVICECpmuControl_t cpmu_control;
    cpmu_control.r32 = 0;
    cpmu_control.bits.LinkIdlePowerModeEnable = GEN.GenCfgFeature.bits.LinkIdle;
    cpmu_control.bits.LinkAwarePowerModeEnable = GEN.GenCfgFeature.bits.LinkAwarePowerMode;
    cpmu_control.bits.LinkSpeedPowerModeEnable = GEN.GenCfgFeature.bits.LinkSpeedPowerMode;
    DEVICE.CpmuControl = cpmu_control;
    // Release grant.
    DEVICE.MutexGrant.r32 = (1 << 4);

    // Mask REG_CLOCK_SPEED_OVERRIDE_POLICY__MAC_CLOCK_SPEED_OVERRIDE_ENABLE.
    DEVICE.ClockSpeedOverridePolicy.bits.MACClockSpeedOverrideEnabled = 0;

    reportStatus(STATUS_INIT_HW, 0xff);
}
OpenPOWER on IntegriCloud