So I'm making headway getting my board to work. I've made it through the TFA stuff, and I've gotten u-boot to load, and I've even booted the default ubuntu image that comes with the FRWY board (which was way cool)...
Now I'm working on getting all of my peripherals to work; both from within u-boot, and ultimately within linux.
I spent a lot of time trying to modify the FRWY board files and kept getting weird compilation errors, like missing definitions for typedefs and things like that, and I dumped that method and went with using the LS1046ARDB files as a baseline.
My board doesn't have a CPLD, but it does have the same type of ethernet chip, so I'm focusing my attention there first.
My u-boot output looks like this:
```
U-Boot 2021.04-dirty (Nov 03 2022 - 14:33:31 -0700)
SoC: LS1046AE Rev1.0 (0x87070010)
Clock Configuration:
CPU0(A72):1400 MHz CPU1(A72):1400 MHz CPU2(A72):1400 MHz
CPU3(A72):1400 MHz
Bus: 600 MHz DDR: 2100 MT/s FMAN: 700 MHz
Reset Configuration Word (RCW):
00000000: 0c15000e 0e000000 00000000 00000000
00000010: 00008888 00c00012 40000000 c1000000
00000020: 00000000 00000000 00000000 00030800
00000030: 20044100 24003101 00000096 00000001
Model: LS1046A BPC Board
Board: LS1046ARDB, boot from Invalid setting of SW5
CPLD: V0.0
PCBA: V0.0
SERDES Reference Clocks:
SD1_CLK1 = 100.00MHZ, SD1_CLK2 = 100.00MHZ
DRAM: 3.9 GiB (DDR4, 64-bit, CL=13, ECC on)
Using SERDES1 Protocol: 0 (0x0)
SERDES1[PRTCL] = 0x0 is not valid
Using SERDES2 Protocol: 34952 (0x8888)
NAND: 0 MiB
MMC: FSL_SDHC: 0
Loading Environment from SPIFlash... jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
*** Warning - spi_flash_probe_bus_cs() failed, using default environment
EEPROM: Read failed.
In: serial
Out: serial
Err: serial
SEC0: RNG instantiated
Net: jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc2abd0 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc3abe0 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc4abf0 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc5ac00 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc6ac10 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc7ac20 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc8ac30 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbc9ac40 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbcaac50 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbcbac60 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbccac70 is not a firmware
jedec_spi_nor flash@0: unrecognized JEDEC id bytes: 9d, 70, 19
SF: probe for ucode failed
Fman1: Data at 00000000fbcdac80 is not a firmware
No ethernet found.
Hit any key to stop autoboot: 0
```
I was hoping someone could point me in the direction to start...
Thanks!