b49f3f7c610b1e61e65d0f59c203e011ff92bab1
[coreboot.git] / src / mainboard / winent / pl6064 / mainboard.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2010 Win Enterprises, Inc. (anishp@win-ent.com)
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
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
20 #include <console/console.h>
21 #include <device/device.h>
22 #include "chip.h"
23
24 static void init(struct device *dev)
25 {
26         printk_debug("Win Enterprises PL-6064/65 ENTER %s\n", __func__);
27         printk_debug("Win Enterprises PL-6064/65 EXIT %s\n", __func__);
28 }
29
30 static void enable_dev(struct device *dev)
31 {
32         dev->ops->init = init;
33 }
34
35 struct chip_operations mainboard_ops = {
36         CHIP_NAME("Win Enterprises PL-6064/65 Mainboard")
37         .enable_dev = enable_dev,
38 };