root/trunk/coreboot-v2/src/northbridge/amd/lx/northbridge.c

Revision 3089, 15.8 KB (checked in by hailfinger, 10 months ago)

Factor out print_conf() from Geode LX mainboard directories. The
following mainboard files had identical Geode LX specific print_conf()
implementations:
mainboard/amd/db800/mainboard.c
mainboard/amd/norwich/mainboard.c
mainboard/digitallogic/msm800sev/mainboard.c
mainboard/pcengines/alix1c/mainboard.c
Move print_conf() to northbridge/amd/lx/northbridge.c where it belongs.

Add a copyright notice to mainboard/digitallogic/msm800sev/mainboard.c.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>
Acked-by: Marc Jones <marc.jones@…>

Line 
1/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007 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; 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.
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
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 */
20
21#include <console/console.h>
22#include <arch/io.h>
23#include <stdint.h>
24#include <device/device.h>
25#include <device/pci.h>
26#include <device/pci_ids.h>
27#include <stdlib.h>
28#include <string.h>
29#include <bitops.h>
30#include <cpu/cpu.h>
31#include <cpu/amd/lxdef.h>
32#include <cpu/x86/msr.h>
33#include <cpu/x86/cache.h>
34#include <cpu/amd/vr.h>
35#include "chip.h"
36#include "northbridge.h"
37#include "../../../southbridge/amd/cs5536/cs5536.h"
38
39
40/* here is programming for the various MSRs.*/
41#define IM_QWAIT 0x100000
42
43#define DMCF_WRITE_SERIALIZE_REQUEST (2<<12) /* 2 outstanding */        /* in high */
44#define DMCF_SERIAL_LOAD_MISSES  (2)    /* enabled */
45
46/* these are the 8-bit attributes for controlling RCONF registers */
47#define CACHE_DISABLE (1<<0)
48#define WRITE_ALLOCATE (1<<1)
49#define WRITE_PROTECT (1<<2)
50#define WRITE_THROUGH (1<<3)
51#define WRITE_COMBINE (1<<4)
52#define WRITE_SERIALIZE (1<<5)
53
54/* ram has none of this stuff */
55#define RAM_PROPERTIES (0)
56#define DEVICE_PROPERTIES (WRITE_SERIALIZE|CACHE_DISABLE)
57#define ROM_PROPERTIES (WRITE_SERIALIZE|WRITE_PROTECT|CACHE_DISABLE)
58#define MSR_WS_CD_DEFAULT (0x21212121)
59
60/* 1810-1817 give you 8 registers with which to program protection regions */
61/* the are region configuration range registers, or RRCF */
62/* in msr terms, the are a straight base, top address assign, since they are 4k aligned. */
63/* so no left-shift needed for top or base */
64#define RRCF_LOW(base,properties) (base|(1<<8)|properties)
65#define RRCF_LOW_CD(base)       RRCF_LOW(base, CACHE_DISABLE)
66
67/* build initializer for P2D MSR */
68#define P2D_BM(msr, pdid1, bizarro, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pbase>>24), .lo=(pbase<<8)|pmask}}
69#define P2D_BMO(msr, pdid1, bizarro, poffset, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pbase>>24), .lo=(pbase<<8)|pmask}}
70#define P2D_R(msr, pdid1, bizarro, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pmax>>12), .lo=(pmax<<20)|pmin}}
71#define P2D_RO(msr, pdid1, bizarro, poffset, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pmax>>12), .lo=(pmax<<20)|pmin}}
72#define P2D_SC(msr, pdid1, bizarro, wen, ren,pscbase) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(wen), .lo=(ren<<16)|(pscbase>>18)}}
73#define IOD_BM(msr, pdid1, bizarro, ibase, imask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(ibase>>12), .lo=(ibase<<20)|imask}}
74#define IOD_SC(msr, pdid1, bizarro, en, wen, ren, ibase) {msr, {.hi=(pdid1<<29)|(bizarro<<28), .lo=(en<<24)|(wen<<21)|(ren<<20)|(ibase<<3)}}
75
76#define BRIDGE_IO_MASK (IORESOURCE_IO | IORESOURCE_MEM)
77
78extern void graphics_init(void);
79extern void cpubug(void);
80extern void chipsetinit(void);
81extern uint32_t get_systop(void);
82
83void northbridge_init_early(void);
84void setup_realmode_idt(void);
85void do_vsmbios(void);
86
87struct msr_defaults {
88        int msr_no;
89        msr_t msr;
90} msr_defaults[] = {
91        {
92                0x1700, {
93        .hi = 0,.lo = IM_QWAIT}}, {
94                0x1800, {
95        .hi = DMCF_WRITE_SERIALIZE_REQUEST,.lo =
96                            DMCF_SERIAL_LOAD_MISSES}},
97            /* 1808 will be done down below, so we have to do 180a->1817 (well, 1813 really) */
98            /* for 180a, for now, we assume VSM will configure it */
99            /* 180b is left at reset value,a0000-bffff is non-cacheable */
100            /* 180c, c0000-dffff is set to write serialize and non-cachable */
101            /* oops, 180c will be set by cpu bug handling in cpubug.c */
102            //{0x180c, {.hi = MSR_WS_CD_DEFAULT, .lo = MSR_WS_CD_DEFAULT}},
103            /* 180d is left at default, e0000-fffff is non-cached */
104            /* we will assume 180e, the ssm region configuration, is left at default or set by VSM */
105            /* we will not set 0x180f, the DMM,yet */
106            //{0x1810, {.hi=0xee7ff000, .lo=RRCF_LOW(0xee000000, WRITE_COMBINE|CACHE_DISABLE)}},
107            //{0x1811, {.hi = 0xefffb000, .lo = RRCF_LOW_CD(0xefff8000)}},
108            //{0x1812, {.hi = 0xefff7000, .lo = RRCF_LOW_CD(0xefff4000)}},
109            //{0x1813, {.hi = 0xefff3000, .lo = RRCF_LOW_CD(0xefff0000)}},
110            /* now for GLPCI routing */
111            /* GLIU0 */
112            P2D_BM(MSR_GLIU0_BASE1, 0x1, 0x0, 0x0, 0xfff80),
113            P2D_BM(MSR_GLIU0_BASE2, 0x1, 0x0, 0x80000, 0xfffe0),
114            P2D_SC(MSR_GLIU0_SHADOW, 0x1, 0x0, 0x0, 0xff03, 0xC0000),
115            /* GLIU1 */
116            P2D_BM(MSR_GLIU1_BASE1, 0x1, 0x0, 0x0, 0xfff80),
117            P2D_BM(MSR_GLIU1_BASE2, 0x1, 0x0, 0x80000, 0xfffe0),
118            P2D_SC(MSR_GLIU1_SHADOW, 0x1, 0x0, 0x0, 0xff03, 0xC0000), {
119        0}
120};
121
122/* Print the platform configuration - do before PCI init or it will not
123 * work right.
124 */
125void print_conf(void)
126{
127#if DEFAULT_CONSOLE_LOGLEVEL >= BIOS_ERR
128        int i;
129        unsigned long iol;
130        msr_t msr;
131
132        int cpu_msr_defs[] = { CPU_BC_L2_CONF, CPU_IM_CONFIG, CPU_DM_CONFIG0,
133                CPU_RCONF_DEFAULT, CPU_RCONF_BYPASS, CPU_RCONF_A0_BF,
134                CPU_RCONF_C0_DF, CPU_RCONF_E0_FF, CPU_RCONF_SMM, CPU_RCONF_DMM,
135                GLCP_DELAY_CONTROLS, GL_END
136        };
137
138        int gliu0_msr_defs[] = { MSR_GLIU0_BASE1, MSR_GLIU0_BASE2,
139                MSR_GLIU0_BASE4, MSR_GLIU0_BASE5, MSR_GLIU0_BASE6,
140                GLIU0_P2D_BMO_0, GLIU0_P2D_BMO_1, MSR_GLIU0_SYSMEM,
141                GLIU0_P2D_RO_0, GLIU0_P2D_RO_1, GLIU0_P2D_RO_2,
142                MSR_GLIU0_SHADOW, GLIU0_IOD_BM_0, GLIU0_IOD_BM_1,
143                GLIU0_IOD_BM_2, GLIU0_IOD_SC_0, GLIU0_IOD_SC_1, GLIU0_IOD_SC_2,
144                GLIU0_IOD_SC_3, GLIU0_IOD_SC_4, GLIU0_IOD_SC_5,
145                GLIU0_GLD_MSR_COH, GL_END
146        };
147
148        int gliu1_msr_defs[] = { MSR_GLIU1_BASE1, MSR_GLIU1_BASE2,
149                MSR_GLIU1_BASE3, MSR_GLIU1_BASE4, MSR_GLIU1_BASE5,
150                MSR_GLIU1_BASE6, MSR_GLIU1_BASE7, MSR_GLIU1_BASE8,
151                MSR_GLIU1_BASE9, MSR_GLIU1_BASE10, GLIU1_P2D_R_0,
152                GLIU1_P2D_R_1, GLIU1_P2D_R_2, GLIU1_P2D_R_3, MSR_GLIU1_SHADOW,
153                GLIU1_IOD_BM_0, GLIU1_IOD_BM_1, GLIU1_IOD_BM_2, GLIU1_IOD_SC_0,
154                GLIU1_IOD_SC_1, GLIU1_IOD_SC_2, GLIU1_IOD_SC_3,
155                GLIU1_GLD_MSR_COH, GL_END
156        };
157
158        int rconf_msr[] = { CPU_RCONF0, CPU_RCONF1, CPU_RCONF2, CPU_RCONF3,
159                CPU_RCONF4, CPU_RCONF5, CPU_RCONF6, CPU_RCONF7, GL_END
160        };
161
162        int cs5536_msr[] = { MDD_LBAR_GPIO, MDD_LBAR_FLSH0, MDD_LBAR_FLSH1,
163                MDD_LEG_IO, MDD_PIN_OPT, MDD_IRQM_ZLOW, MDD_IRQM_ZHIGH,
164                MDD_IRQM_PRIM, GL_END
165        };
166
167        int pci_msr[] = { GLPCI_CTRL, GLPCI_ARB, GLPCI_REN, GLPCI_A0_BF,
168                GLPCI_C0_DF, GLPCI_E0_FF, GLPCI_RC0, GLPCI_RC1, GLPCI_RC2,
169                GLPCI_RC3, GLPCI_ExtMSR, GLPCI_SPARE, GL_END
170        };
171
172        int dma_msr[] = { MDD_DMA_MAP, MDD_DMA_SHAD1, MDD_DMA_SHAD2,
173                MDD_DMA_SHAD3, MDD_DMA_SHAD4, MDD_DMA_SHAD5, MDD_DMA_SHAD6,
174                MDD_DMA_SHAD7, MDD_DMA_SHAD8, MDD_DMA_SHAD9, GL_END
175        };
176
177        printk_debug("---------- CPU ------------\n");
178
179        for (i = 0; cpu_msr_defs[i] != GL_END; i++) {
180                msr = rdmsr(cpu_msr_defs[i]);
181                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
182                             cpu_msr_defs[i], msr.hi, msr.lo);
183        }
184
185        printk_debug("---------- GLIU 0 ------------\n");
186
187        for (i = 0; gliu0_msr_defs[i] != GL_END; i++) {
188                msr = rdmsr(gliu0_msr_defs[i]);
189                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
190                             gliu0_msr_defs[i], msr.hi, msr.lo);
191        }
192
193        printk_debug("---------- GLIU 1 ------------\n");
194
195        for (i = 0; gliu1_msr_defs[i] != GL_END; i++) {
196                msr = rdmsr(gliu1_msr_defs[i]);
197                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n",
198                             gliu1_msr_defs[i], msr.hi, msr.lo);
199        }
200
201        printk_debug("---------- RCONF ------------\n");
202
203        for (i = 0; rconf_msr[i] != GL_END; i++) {
204                msr = rdmsr(rconf_msr[i]);
205                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", rconf_msr[i],
206                             msr.hi, msr.lo);
207        }
208
209        printk_debug("---------- VARIA ------------\n");
210        msr = rdmsr(0x51300010);
211        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", 0x51300010, msr.hi,
212                     msr.lo);
213
214        msr = rdmsr(0x51400015);
215        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", 0x51400015, msr.hi,
216                     msr.lo);
217
218        printk_debug("---------- DIVIL IRQ ------------\n");
219        msr = rdmsr(MDD_IRQM_YLOW);
220        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_YLOW, msr.hi,
221                     msr.lo);
222        msr = rdmsr(MDD_IRQM_YHIGH);
223        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_YHIGH,
224                     msr.hi, msr.lo);
225        msr = rdmsr(MDD_IRQM_ZLOW);
226        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_ZLOW, msr.hi,
227                     msr.lo);
228        msr = rdmsr(MDD_IRQM_ZHIGH);
229        printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MDD_IRQM_ZHIGH,
230                     msr.hi, msr.lo);
231
232        printk_debug("---------- PCI ------------\n");
233
234        for (i = 0; pci_msr[i] != GL_END; i++) {
235                msr = rdmsr(pci_msr[i]);
236                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", pci_msr[i],
237                             msr.hi, msr.lo);
238        }
239
240        printk_debug("---------- LPC/UART DMA ------------\n");
241
242        for (i = 0; dma_msr[i] != GL_END; i++) {
243                msr = rdmsr(dma_msr[i]);
244                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", dma_msr[i],
245                             msr.hi, msr.lo);
246        }
247
248        printk_debug("---------- CS5536 ------------\n");
249
250        for (i = 0; cs5536_msr[i] != GL_END; i++) {
251                msr = rdmsr(cs5536_msr[i]);
252                printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", cs5536_msr[i],
253                             msr.hi, msr.lo);
254        }
255
256        iol = inl(GPIO_IO_BASE + GPIOL_INPUT_ENABLE);
257        printk_debug("IOR 0x%08X is now 0x%08X\n",
258                     GPIO_IO_BASE + GPIOL_INPUT_ENABLE, iol);
259        iol = inl(GPIOL_EVENTS_ENABLE);
260        printk_debug("IOR 0x%08X is now 0x%08X\n",
261                     GPIO_IO_BASE + GPIOL_EVENTS_ENABLE, iol);
262        iol = inl(GPIOL_INPUT_INVERT_ENABLE);
263        printk_debug("IOR 0x%08X is now 0x%08X\n",
264                     GPIO_IO_BASE + GPIOL_INPUT_INVERT_ENABLE, iol);
265        iol = inl(GPIO_MAPPER_X);
266        printk_debug("IOR 0x%08X is now 0x%08X\n", GPIO_IO_BASE + GPIO_MAPPER_X,
267                     iol);
268#endif                          //DEFAULT_CONSOLE_LOGLEVEL >= BIOS_ERR
269}
270
271/* todo: add a resource record. We don't do this here because this may be called when
272  * very little of the platform is actually working.
273  */
274int sizeram(void)
275{
276        msr_t msr;
277        int sizem = 0;
278        unsigned short dimm;
279
280        /* Get the RAM size from the memory controller as calculated and set by auto_size_dimm() */
281        msr = rdmsr(MC_CF07_DATA);
282        printk_debug("sizeram: _MSR MC_CF07_DATA: %08x:%08x\n", msr.hi, msr.lo);
283
284        /* dimm 0 */
285        dimm = msr.hi;
286        /* installed? */
287        if ((dimm & 7) != 7) {
288                sizem = 4 << ((dimm >> 12) & 0x0F); /* 1:8MB, 2:16MB, 3:32MB, 4:64MB, ... 7:512MB, 8:1GB */
289        }
290
291        /* dimm 1 */
292        dimm = msr.hi >> 16;
293        /* installed? */
294        if ((dimm & 7) != 7) {
295                sizem += 4 << ((dimm >> 12) & 0x0F); /* 1:8MB, 2:16MB, 3:32MB, 4:64MB, ... 7:512MB, 8:1GB */
296        }
297
298        printk_debug("sizeram: sizem 0x%xMB\n", sizem);
299        return sizem;
300}
301
302static void enable_shadow(device_t dev)
303{
304}
305
306static void northbridge_init(device_t dev)
307{
308        //msr_t msr;
309
310        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
311
312        enable_shadow(dev);
313        /*
314         * Swiss cheese
315         */
316        //msr = rdmsr(MSR_GLIU0_SHADOW);
317
318        //msr.hi |= 0x3;
319        //msr.lo |= 0x30000;
320
321        //printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU0_SHADOW, msr.hi, msr.lo);
322        //printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU1_SHADOW, msr.hi, msr.lo);
323}
324
325void northbridge_set_resources(struct device *dev)
326{
327        struct resource *resource, *last;
328        unsigned link;
329        uint8_t line;
330
331        last = &dev->resource[dev->resources];
332
333        for (resource = &dev->resource[0]; resource < last; resource++) {
334
335                // andrei: do not change the base address, it will make the VSA virtual registers unusable
336                //pci_set_resource(dev, resource);
337                // FIXME: static allocation may conflict with dynamic mappings!
338        }
339
340        for (link = 0; link < dev->links; link++) {
341                struct bus *bus;
342                bus = &dev->link[link];
343                if (bus->children) {
344                        printk_debug
345                            ("my_dev_set_resources: assign_resources %d\n",
346                             bus);
347                        assign_resources(bus);
348                }
349        }
350
351        /* set a default latency timer */
352        pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
353
354        /* set a default secondary latency timer */
355        if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
356                pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
357        }
358
359        /* zero the irq settings */
360        line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
361        if (line) {
362                pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
363        }
364
365        /* set the cache line size, so far 64 bytes is good for everyone */
366        pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
367}
368
369static struct device_operations northbridge_operations = {
370        .read_resources = pci_dev_read_resources,
371        .set_resources = northbridge_set_resources,
372        .enable_resources = pci_dev_enable_resources,
373        .init = northbridge_init,
374        .enable = 0,
375        .ops_pci = 0,
376};
377
378static const struct pci_driver northbridge_driver __pci_driver = {
379        .ops = &northbridge_operations,
380        .vendor = PCI_VENDOR_ID_AMD,
381        .device = PCI_DEVICE_ID_AMD_LXBRIDGE,
382};
383
384static void pci_domain_read_resources(device_t dev)
385{
386        struct resource *resource;
387        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
388
389        /* Initialize the system wide io space constraints */
390        resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0, 0));
391        resource->limit = 0xffffUL;
392        resource->flags =
393            IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
394
395        /* Initialize the system wide memory resources constraints */
396        resource = new_resource(dev, IOINDEX_SUBTRACTIVE(1, 0));
397        resource->limit = 0xffffffffULL;
398        resource->flags =
399            IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
400}
401
402static void ram_resource(device_t dev, unsigned long index,
403                         unsigned long basek, unsigned long sizek)
404{
405        struct resource *resource;
406
407        if (!sizek)
408                return;
409
410        resource = new_resource(dev, index);
411        resource->base = ((resource_t) basek) << 10;
412        resource->size = ((resource_t) sizek) << 10;
413        resource->flags = IORESOURCE_MEM | IORESOURCE_CACHEABLE |
414            IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
415}
416
417static void pci_domain_set_resources(device_t dev)
418{
419        int idx;
420        device_t mc_dev;
421
422        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
423
424        mc_dev = dev->link[0].children;
425        if (mc_dev) {
426                /* Report the memory regions */
427                idx = 10;
428                ram_resource(dev, idx++, 0, 640);
429                ram_resource(dev, idx++, 1024, (get_systop() - 0x100000) / 1024);       // Systop - 1 MB -> KB
430        }
431
432        assign_resources(&dev->link[0]);
433}
434
435static void pci_domain_enable(device_t dev)
436{
437
438        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
439
440        // do this here for now -- this chip really breaks our device model
441        northbridge_init_early();
442        cpubug();
443        chipsetinit();
444
445        setup_realmode_idt();
446
447        printk_debug("Before VSA:\n");
448        // print_conf();
449
450        do_vsmbios();           // do the magic stuff here, so prepare your tambourine ;)
451
452        printk_debug("After VSA:\n");
453        // print_conf();
454
455        graphics_init();
456        pci_set_method(dev);
457}
458
459static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
460{
461        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
462
463        max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
464        return max;
465}
466
467static struct device_operations pci_domain_ops = {
468        .read_resources = pci_domain_read_resources,
469        .set_resources = pci_domain_set_resources,
470        .enable_resources = enable_childrens_resources,
471        .scan_bus = pci_domain_scan_bus,
472        .enable = pci_domain_enable,
473};
474
475static void cpu_bus_init(device_t dev)
476{
477        printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
478
479        initialize_cpus(&dev->link[0]);
480}
481
482static void cpu_bus_noop(device_t dev)
483{
484}
485
486static struct device_operations cpu_bus_ops = {
487        .read_resources = cpu_bus_noop,
488        .set_resources = cpu_bus_noop,
489        .enable_resources = cpu_bus_noop,
490        .init = cpu_bus_init,
491        .scan_bus = 0,
492};
493
494static void enable_dev(struct device *dev)
495{
496        printk_spew(">> Entering northbridge.c: %s with path %d\n",
497                    __FUNCTION__, dev->path.type);
498
499        /* Set the operations if it is a special bus type */
500        if (dev->path.type == DEVICE_PATH_PCI_DOMAIN)
501                dev->ops = &pci_domain_ops;
502        else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER)
503                dev->ops = &cpu_bus_ops;
504}
505
506struct chip_operations northbridge_amd_lx_ops = {
507        CHIP_NAME("AMD LX Northbridge")
508            .enable_dev = enable_dev,
509};
Note: See TracBrowser for help on using the browser.