blob: c592282059ee25376010aa6199ea0f17ebf29542 [file] [log] [blame]
Rudolf Marek05839972008-09-23 20:36:03 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
5 *
6 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
Rudolf Marek05839972008-09-23 20:36:03 +00009 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Rudolf Marek05839972008-09-23 20:36:03 +000020#include <device/device.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
Rudolf Marek9e9fa822009-03-21 11:50:20 +000023#include <boot/tables.h>
Stefan Reinauer2c0db452010-04-09 15:29:13 +000024#include <southbridge/via/k8t890/k8t890.h>
Stefan Reinauer23836e22010-04-15 12:39:29 +000025#include "chip.h"
Rudolf Marek05839972008-09-23 20:36:03 +000026
Rudolf Marek9e9fa822009-03-21 11:50:20 +000027int add_mainboard_resources(struct lb_memory *mem)
28{
Rudolf Marek9e9fa822009-03-21 11:50:20 +000029 return 0;
30}
31
Carl-Daniel Hailfinger7ad11e82009-02-18 20:41:57 +000032struct chip_operations mainboard_ops = {
Rudolf Marek05839972008-09-23 20:36:03 +000033 CHIP_NAME("ASUS M2V-MX SE Mainboard")
34};