blob: f71fe17535cf054933a2449c94bfb104efb377c9 [file] [log] [blame]
Stefan Reinauer2e73e192010-01-17 13:52:50 +00001/*
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00002 * This file is part of the coreboot project.
Stefan Reinauer2e73e192010-01-17 13:52:50 +00003 *
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00004 * Copyright (C) 2008-2009 coresystems GmbH
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; either version 2 of the License, or
9 * (at your option) any later version.
Stefan Reinauer2e73e192010-01-17 13:52:50 +000010 *
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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Stefan Reinauer2e73e192010-01-17 13:52:50 +000019 */
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000020
Stefan Reinauer2e73e192010-01-17 13:52:50 +000021 // 0844d060 (old)
22#define SYSCTL 0x80 // 08405061
23#define RIMUX (1 << 0)
24
25#define GENCTL 0x86
26#define FW1394_PRIO (0 << 0)
27#define CARDBUS_PRIO (1 << 0)
28#define FLASH_PRIO (2 << 0)
29#define ROUNDR_PRIO (3 << 0)
30#define DISABLE_OHCI (1 << 3)
31#define DISABLE_SKTB (1 << 4)
32#define DISABLE_FM (1 << 5)
33#define P12V_SW_SEL (1 << 10)
34
35#define MFUNC 0x8c
36
37#define CARDCTL 0x91
38#define SPKROUTEN (1 << 1)
39
40#define DEVCTL 0x92
41#define INT_MODE_PAR (0 << 1)
42#define INT_MODE_RSV (1 << 1)
43#define INT_MODE_MIX (2 << 1)
44#define INT_MODE_SER (3 << 1)
45
46#define INTA 0
47#define INTB 1
48#define INTC 2
49#define INTD 3