aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/ironlake
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-06-22 17:12:16 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-01 17:52:02 +0000
commit94dfaad7253a1982b7feaf1bf7b1e4f1c872595d (patch)
treeda625f6d7b9944b1dd61cc1320464d953acd8d3b /src/northbridge/intel/ironlake
parentec5b71ae30b0190e7b6bd46f204d070217e9449d (diff)
nb/intel/ironlake: Remove unused structs
These were copied from gm45, but are not used. Drop them. Change-Id: I85ca37516272a2c1af88a65df2682e92d7579050 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42695 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/northbridge/intel/ironlake')
-rw-r--r--src/northbridge/intel/ironlake/ironlake.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/northbridge/intel/ironlake/ironlake.h b/src/northbridge/intel/ironlake/ironlake.h
index 93d55a9dbf..53efced198 100644
--- a/src/northbridge/intel/ironlake/ironlake.h
+++ b/src/northbridge/intel/ironlake/ironlake.h
@@ -3,38 +3,6 @@
#ifndef __NORTHBRIDGE_INTEL_IRONLAKE_IRONLAKE_H__
#define __NORTHBRIDGE_INTEL_IRONLAKE_IRONLAKE_H__
-#ifndef __ASSEMBLER__
-
-typedef struct {
- unsigned int CAS;
- unsigned int tRAS;
- unsigned int tRP;
- unsigned int tRCD;
- unsigned int tRFC;
- unsigned int tWR;
- unsigned int tRD;
- unsigned int tRRD;
- unsigned int tFAW;
- unsigned int tWL;
-} timings_t;
-
-/* The setup is one DIMM per channel, so there's no need to find a
- common timing setup between multiple chips (but chip and controller
- still need to be coordinated */
-typedef struct {
- int txt_enabled;
- int cores;
- int max_ddr2_mhz;
- int max_ddr3_mt;
- int max_fsb_mhz;
- int max_render_mhz;
-
- int spd_type;
- timings_t selected_timings;
-} sysinfo_t;
-
-#endif
-
#define DEFAULT_HECIBAR ((u8 *)0xfed17000)