aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-11-10 20:39:41 +0100
committerPatrick Georgi <pgeorgi@google.com>2020-11-25 09:11:46 +0000
commitc19cbeeb6b4ec1f083951156e6b67d02390369b5 (patch)
tree7d0dec579ec5911fe105befab02642e6ef408ae4 /src/include
parentec8f5c79a5fd16531006dd950dc3fad71c97ca8b (diff)
device: Drop unused HyperTransport code
Only two definitions are actually used somewhere, the rest is unused. Change-Id: Iec52d0d47fce6a1ec5455b670824b995a7a34a4c Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47407 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/device/hypertransport.h11
-rw-r--r--src/include/device/hypertransport_def.h28
2 files changed, 0 insertions, 39 deletions
diff --git a/src/include/device/hypertransport.h b/src/include/device/hypertransport.h
deleted file mode 100644
index 382731fe86..0000000000
--- a/src/include/device/hypertransport.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef DEVICE_HYPERTRANSPORT_H
-#define DEVICE_HYPERTRANSPORT_H
-
-#include <device/hypertransport_def.h>
-
-extern struct device_operations default_ht_ops_bus;
-
-#define HT_IO_HOST_ALIGN 4096
-#define HT_MEM_HOST_ALIGN (1024*1024)
-
-#endif /* DEVICE_HYPERTRANSPORT_H */
diff --git a/src/include/device/hypertransport_def.h b/src/include/device/hypertransport_def.h
deleted file mode 100644
index 3cbd90b39c..0000000000
--- a/src/include/device/hypertransport_def.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef DEVICE_HYPERTRANSPORT_DEF_H
-#define DEVICE_HYPERTRANSPORT_DEF_H
-
-#define HT_FREQ_200Mhz 0
-#define HT_FREQ_300Mhz 1
-#define HT_FREQ_400Mhz 2
-#define HT_FREQ_500Mhz 3
-#define HT_FREQ_600Mhz 4
-#define HT_FREQ_800Mhz 5
-#define HT_FREQ_1000Mhz 6
-#define HT_FREQ_1200Mhz 7
-#define HT_FREQ_1400Mhz 8
-#define HT_FREQ_1600Mhz 9
-#define HT_FREQ_1800Mhz 10
-#define HT_FREQ_2000Mhz 11
-#define HT_FREQ_2200Mhz 12
-#define HT_FREQ_2400Mhz 13
-#define HT_FREQ_2600Mhz 14
-#define HT_FREQ_VENDOR 15 /* AMD defines this to be 100Mhz */
-
-static inline bool offset_unit_id(bool is_sb_ht_chain)
-{
- bool need_offset = (CONFIG_HT_CHAIN_UNITID_BASE != 1)
- || (CONFIG_HT_CHAIN_END_UNITID_BASE != 0x20);
- return need_offset && is_sb_ht_chain;
-}
-
-#endif /* DEVICE_HYPERTRANSPORT_DEF_H */