blob: cd83768598b5c56d31fd69340c674b5f6b623f67 [file] [log] [blame]
Jens Rottmannf31ca162008-11-19 12:19:09 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 LiPPERT Embedded Computers GmbH
5 *
Jens Rottmannf31ca162008-11-19 12:19:09 +00006 * 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; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Jens Rottmannf31ca162008-11-19 12:19:09 +000015 */
16
Uwe Hermann86c9b882008-11-19 13:42:14 +000017/* Based on mainboard.c from AMD's DB800 mainboard. */
18
Jens Rottmannf31ca162008-11-19 12:19:09 +000019#include <stdlib.h>
20#include <stdint.h>
21#include <console/console.h>
22#include <device/device.h>
23#include <arch/io.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
Jens Rottmannf31ca162008-11-19 12:19:09 +000026
Jens Rottmannb9ee31d2010-08-31 19:19:16 +000027/* Bit1 switches Com1 to RS485, bit2 same for Com2, bit5 turns off the Live LED. */
28#if CONFIG_ONBOARD_UARTS_RS485
29 #define SIO_GP1X_CONFIG 0x26
30#else
31 #define SIO_GP1X_CONFIG 0x20
32#endif
33
Uwe Hermann86c9b882008-11-19 13:42:14 +000034static const u16 ec_init_table[] = { /* hi=data, lo=index */
35 0x1900, /* Enable monitoring */
36 0x0351, /* TMPIN1,2 diode mode, TMPIN3 off */
37 0x805C, /* Unlock zero adjust */
38 0x7056, 0x3C57, /* Zero adjust TMPIN1,2 */
39 0x005C, /* Lock zero adjust */
40 0xD014 /* Also set FAN_CTL polarity to Active High */
Jens Rottmannf31ca162008-11-19 12:19:09 +000041};
42
43static void init(struct device *dev)
44{
Jens Rottmannf31ca162008-11-19 12:19:09 +000045 unsigned int gpio_base, i;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000046 printk(BIOS_DEBUG, "LiPPERT RoadRunner-LX ENTER %s\n", __func__);
Jens Rottmannf31ca162008-11-19 12:19:09 +000047
Uwe Hermann86c9b882008-11-19 13:42:14 +000048 /* Init CS5536 GPIOs. */
49 gpio_base = pci_read_config32(dev_find_device(PCI_VENDOR_ID_AMD,
50 PCI_DEVICE_ID_AMD_CS5536_ISA, 0), PCI_BASE_ADDRESS_1) - 1;
Jens Rottmannf31ca162008-11-19 12:19:09 +000051
Uwe Hermann86c9b882008-11-19 13:42:14 +000052 outl(0x00000040, gpio_base + 0x00); // GPIO6 value 1 - LAN_PD#
53 outl(0x00000040, gpio_base + 0x04); // GPIO6 output 1 - LAN_PD#
54 outl(0x00000400, gpio_base + 0x34); // GPIO10 in aux1 1 - THRM_ALRM#
55 outl(0x00000400, gpio_base + 0x20); // GPIO10 input 1 - THRM_ALRM#
56 outl(0x08000000, gpio_base + 0x98); // GPIO27 pull up 0 - PM-LED
57
58 /* Init Environment Controller. */
59 for (i = 0; i < ARRAY_SIZE(ec_init_table); i++) {
Jens Rottmannf31ca162008-11-19 12:19:09 +000060 u16 val = ec_init_table[i];
Uwe Hermann86c9b882008-11-19 13:42:14 +000061 outb((u8)val, 0x0295);
62 outb(val >> 8, 0x0296);
Jens Rottmannf31ca162008-11-19 12:19:09 +000063 }
64
Jens Rottmannb9ee31d2010-08-31 19:19:16 +000065 /* bit5 = Live LED, bit2 = RS485_EN2, bit1 = RS485_EN1 */
66 outb(SIO_GP1X_CONFIG, 0x1220); /* Simple-I/O GP17-10 */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000067 printk(BIOS_DEBUG, "LiPPERT RoadRunner-LX EXIT %s\n", __func__);
Jens Rottmannf31ca162008-11-19 12:19:09 +000068}
69
Paul Menzel528640d2013-02-23 21:31:23 +010070static void mainboard_enable(struct device *dev)
Jens Rottmannf31ca162008-11-19 12:19:09 +000071{
72 dev->ops->init = init;
73}
74
Carl-Daniel Hailfinger7ad11e82009-02-18 20:41:57 +000075struct chip_operations mainboard_ops = {
Paul Menzel528640d2013-02-23 21:31:23 +010076 .enable_dev = mainboard_enable,
Jens Rottmannf31ca162008-11-19 12:19:09 +000077};