blob: 5859ae4338fe0b6ca710bdda3e4d3c252365c9a3 [file] [log] [blame]
Scott Duplichana649a962011-02-24 05:00:33 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc.
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 as published by
8 * the Free Software Foundation; version 2 of the License.
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 <device/pci.h>
23#include <arch/io.h>
24#include <boot/tables.h>
25#include <cpu/x86/msr.h>
26#include <cpu/amd/mtrr.h>
27#include <device/pci_def.h>
28//#include <southbridge/amd/sb800/sb800.h>
29#include "chip.h"
30
31//#define SMBUS_IO_BASE 0x6000
32
33/**
34 * TODO
35 * SB CIMx callback
36 */
37void set_pcie_reset(void)
38{
39}
40
41/**
42 * TODO
43 * mainboard specific SB CIMx callback
44 */
45void set_pcie_dereset(void)
46{
47}
48
Scott Duplichana649a962011-02-24 05:00:33 +000049
50/*************************************************
Scott Duplichan63896e72011-02-26 17:49:49 +000051* enable the dedicated function in e350m1 board.
Scott Duplichana649a962011-02-24 05:00:33 +000052*************************************************/
Scott Duplichan63896e72011-02-26 17:49:49 +000053static void e350m1_enable(device_t dev)
Scott Duplichana649a962011-02-24 05:00:33 +000054{
Scott Duplichan63896e72011-02-26 17:49:49 +000055 printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030056 setup_uma_memory();
Scott Duplichana649a962011-02-24 05:00:33 +000057}
58
59int add_mainboard_resources(struct lb_memory *mem)
60{
Scott Duplichana649a962011-02-24 05:00:33 +000061 return 0;
62}
63struct chip_operations mainboard_ops = {
Scott Duplichan63896e72011-02-26 17:49:49 +000064 CHIP_NAME(CONFIG_MAINBOARD_VENDOR " " CONFIG_MAINBOARD_PART_NUMBER " Mainboard")
65 .enable_dev = e350m1_enable,
Scott Duplichana649a962011-02-24 05:00:33 +000066};