aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/amd/agesa/family15/chip.h
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2018-01-13 17:03:58 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2018-01-24 02:09:18 +0000
commitc618b90119171f00886c170b3398a7ce9311d0d6 (patch)
tree6d43a04cd07026aec535bcf1ecaf4d28fd0fa273 /src/northbridge/amd/agesa/family15/chip.h
parenteb7e6b5c8160f5edfda1ac080ab77c1ba2c48306 (diff)
AGESA f15 cimx/sb700: Remove unused chips code
Change-Id: Id4e05941122c8756f15d5d24482e4cdc04215c55 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/23275 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/northbridge/amd/agesa/family15/chip.h')
-rw-r--r--src/northbridge/amd/agesa/family15/chip.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/northbridge/amd/agesa/family15/chip.h b/src/northbridge/amd/agesa/family15/chip.h
deleted file mode 100644
index fdc0c2bdea..0000000000
--- a/src/northbridge/amd/agesa/family15/chip.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2013 Sage Electronic Engineering, LLC
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#ifndef _NB_AGESA_CHIP_H_
-#define _NB_AGESA_CHIP_H_
-
-struct northbridge_amd_agesa_family15_config
-{
- /*
- * Here are a couple of examples of how this would be put into the
- * devicetree.cb file. Note the array is oversized to support different
- * configurations of server boards.
- * This should be placed after the device pci 18.x statements.
- *
- * Example: AMD Dinar
- * register "spdAddrLookup" = "
- * { // Use 8-bit SPD addresses here
- * { {0xAC, 0xAE}, {0xA8, 0xAA}, {0xA4, 0xA6}, {0xA0, 0xA2}, }, // socket 0 - Channel 0-3
- * { {0xAC, 0xAE}, {0xA8, 0xAA}, {0xA4, 0xA6}, {0xA0, 0xA2}, }, // socket 1 - Channel 0-3
- * }"
- * Example: Tyan S8226
- * register "spdAddrLookup" = "
- * { // Use 8-bit SPD addresses here
- * { {0xA0, 0xA4, 0xA8}, {0xA2, 0xA6, 0xAA}, }, // socket 0
- * { {0xA0, 0xA4, 0xA8}, {0xA2, 0xA6, 0xAA}, }, // socket 1
- * }"
- *
- */
-
- u8 spdAddrLookup[8][4][4];
-};
-
-#endif