diff options
author | Joseph Smith <joe@settoplinux.org> | 2010-06-21 23:25:06 +0000 |
---|---|---|
committer | Joseph Smith <joe@smittys.pointclark.net> | 2010-06-21 23:25:06 +0000 |
commit | b94a79fa6a7a9fa2e4dae9f38fc5c67aeaee09c9 (patch) | |
tree | 2135a03ee0d7d0e5f6e4053dcbcc4d64fdb136f4 /src/mainboard/intel/d810e2cb/mainboard.c | |
parent | 40bffc22cd6b83b186c023d473e6213a65c2d51d (diff) |
This patch adds support for the Intel D810E2CB (i810e/ICH2) desktop board. Hurray, this is the first i810 board running CAR.
Signed-off-by: Joseph Smith <joe@settoplinux.org>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5637 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/intel/d810e2cb/mainboard.c')
-rw-r--r-- | src/mainboard/intel/d810e2cb/mainboard.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/mainboard/intel/d810e2cb/mainboard.c b/src/mainboard/intel/d810e2cb/mainboard.c new file mode 100644 index 0000000000..c55a6806f0 --- /dev/null +++ b/src/mainboard/intel/d810e2cb/mainboard.c @@ -0,0 +1,31 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2010 Joseph Smith <joe@settoplinux.org> + * + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include <device/device.h> +#include <boot/tables.h> +#include "chip.h" + +int add_mainboard_resources(struct lb_memory *mem) +{ + return add_northbridge_resources(mem); +} + +struct chip_operations mainboard_ops = { + CHIP_NAME("Intel D810E2CB Mainboard") +}; |