This is just a request for review on what I've done so far. I'm working on adding Clevo D900T support. Project notes are available here: http://pat.erley.org/Other/D900TCoreboot
My specific problem so far, when I do a 'make', it doesn't compile src/cpu/intel/socket_LGA775/*, which may be the correct behavior, I just don't know. Is this the appropriate approach?
Aside: Is sending patch bombs like this from git rather than learning SVN acceptable to everyone?
SOBs left off as I'm not comfortable with what is written so far
Pat Erley (2): Subject: Prepare for Clevo D900T Subject: LGA775 and P4-6x0 Support
src/cpu/intel/Kconfig | 1 + src/cpu/intel/Makefile.inc | 1 + src/cpu/intel/model_f4x/model_f4x_init.c | 1 + src/cpu/intel/socket_LGA775/Kconfig | 8 + src/cpu/intel/socket_LGA775/Makefile.inc | 13 + src/cpu/intel/socket_LGA775/chip.h | 4 + src/cpu/intel/socket_LGA775/socket_LGA775.c | 7 + src/mainboard/Kconfig | 8 + src/mainboard/clevo/Kconfig | 28 +++ src/mainboard/clevo/d900t/Kconfig | 97 ++++++++ src/mainboard/clevo/d900t/Makefile.inc | 19 ++ src/mainboard/clevo/d900t/chip.h | 23 ++ src/mainboard/clevo/d900t/cmos.layout | 142 +++++++++++ src/mainboard/clevo/d900t/devicetree.cb | 108 +++++++++ src/mainboard/clevo/d900t/mainboard.c | 34 +++ src/mainboard/clevo/d900t/romstage.c | 344 +++++++++++++++++++++++++++ 16 files changed, 838 insertions(+), 0 deletions(-) create mode 100644 src/cpu/intel/socket_LGA775/Kconfig create mode 100644 src/cpu/intel/socket_LGA775/Makefile.inc create mode 100644 src/cpu/intel/socket_LGA775/chip.h create mode 100644 src/cpu/intel/socket_LGA775/socket_LGA775.c create mode 100644 src/mainboard/clevo/Kconfig create mode 100644 src/mainboard/clevo/d900t/Kconfig create mode 100644 src/mainboard/clevo/d900t/Makefile.inc create mode 100644 src/mainboard/clevo/d900t/chip.h create mode 100644 src/mainboard/clevo/d900t/cmos.layout create mode 100644 src/mainboard/clevo/d900t/devicetree.cb create mode 100644 src/mainboard/clevo/d900t/mainboard.c create mode 100644 src/mainboard/clevo/d900t/romstage.c