2009-08-12 17:00:51 +02:00
\documentclass [10pt,letterpaper] { article}
\usepackage [latin1] { inputenc}
\usepackage { amsmath}
\usepackage { amsfonts}
\usepackage { amssymb}
\author { Ron Minnich}
\title { Kconfig usage in coreboot v2}
\begin { document}
\section { Introduction}
2009-08-13 18:02:24 +02:00
This document describes how to use Kconfig in v2. We describe our usage of Kconfig files, Makefile.inc files, when and where to use them, how to use them, and, interestingly, when and where not to use them.
2009-08-12 17:00:51 +02:00
\section { Kconfig variations}
2009-08-13 18:02:24 +02:00
Most Kconfig files set variables, which can be set as part of the Kconfig dialog. Not all Kconfig variables are set by the user, however; some are too dangerous. These are merely enabled by the mainboard.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
For variables set by the user, see src/console/Kconfig.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
For variables not set by the user, see src/mainboard/amd/serengeti\_ cheetah/Kconfig. Users should never set such variables as the cache as ram base. These are highly mainboard dependent.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
Kconfig files use the source command to include subdirectories. In most cases, save for limited cases described below, subdirectories have Kconfig files. They are always sourced unconditionally.
2009-08-12 17:00:51 +02:00
\section { Makefile and Makefile.inc}
2009-08-13 18:02:24 +02:00
There is only one Makefile, at the top level. All other makefiles are included as Makefile.inc. All the next-level Makefile.inc files are selected in the top level Makefile. Directories that are platform-independent are in BUILD-y; platform-dependent (e.g. Makefile.inc's that depend on architecture) are included in PLATFORM-y.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
Make is not recursive. There is only one make process.
2009-08-12 17:00:51 +02:00
\subsection { subdir usage}
2009-08-13 18:02:24 +02:00
Further includes of Makefile.inc, if needed, are done via subdir-y commands. As in Linux, the subdir can be conditional or unconditional. Conditional includes are done via subdir-\$ (CONFIG\_ VARIABLE) usage; unconditional are done via subdir-y.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
We define the common rules for which variation to use below.
2009-08-12 17:00:51 +02:00
\subsection { object file specification}
2009-08-13 18:02:24 +02:00
There are several different types of objects specified in the tree. They are:
2009-08-12 17:00:51 +02:00
\begin { description}
\item [obj] objects for the ram part of the code
2009-08-13 18:02:24 +02:00
\item [driver] drivers for the ram part. Drivers are not represented in the device tree but do have a driver struct attached in the driver section.
2009-08-12 17:00:51 +02:00
\item [initobj] seperately-compiled code for the ROM section of coreboot
\end { description}
2009-08-13 18:02:24 +02:00
These items are specified via the -y syntax as well. Conditional object inclusion is done via the -\$ (CONFIG\_ VARIABLE) syntax.
2009-08-12 17:00:51 +02:00
\section { Example: AMD serengeti cheetah}
\subsection { mainboard/Kconfig}
2009-08-13 18:02:24 +02:00
Defines Vendor variables. Currently defined variables are:
Sources all Kconfig files in the vendor directories.
2009-08-12 17:00:51 +02:00
\input { mainboardkconfig.tex}
\subsection { mainboard/Makefile.inc}
There is none at this time.
2009-08-13 18:02:24 +02:00
\subsection { mainboard/$ < $ vendor$ > $ /Kconfig}
We use the amd as a model. The only action currently taken is to source all Kconfig's in the
subdirectories.
\subsection { mainboard/$ < $ vendor$ > $ /Makefile.inc}
We use amd as a model. There is currently no Makefile.inc at this level.
\subsection { mainboard/$ < $ vendor$ > $ /$ < $ board$ > $ /Kconfig}
The mainboard Kconfig and Makefile.inc are designed to be the heart of the build. The defines
and rules in here determine everything about how a mainboard target is built.
We will use serengeti\_ cheetah as a model. It defines these variables.
2009-08-12 17:00:51 +02:00
\input { mainboardkconfig.tex}
2009-08-13 18:02:24 +02:00
\subsection { mainboard/$ < $ vendor$ > $ /$ < $ board$ > $ /Makefile.inc}
This is a fairly complex Makefile.inc. Because this is such a critical component, we are going to excerpt and take it piece by piece.
Note that this is the mainboard as of August, 2009, and it may change over time.
2009-08-12 17:00:51 +02:00
\subsubsection { objects}
2009-08-13 18:02:24 +02:00
We define objects in the first part. The mainbard itself is a driver and included unconditionally. Other objects are conditional:
2009-08-12 17:00:51 +02:00
\begin { verbatim}
driver-y += mainboard.o
#needed by irq_ tables and mptable and acpi_ tables
obj-y += get_ bus_ conf.o
obj-$ ( CONFIG _ HAVE _ MP _ TABLE ) + = mptable.o
obj-$ ( CONFIG _ HAVE _ PIRQ _ TABLE ) + = irq _ tables.o
obj-$ ( CONFIG _ HAVE _ ACPI _ TABLES ) + = dsdt.o
obj-$ ( CONFIG _ HAVE _ ACPI _ TABLES ) + = acpi _ tables.o
obj-$ ( CONFIG _ HAVE _ ACPI _ TABLES ) + = fadt.o
#./ssdt.o is in northbridge/amd/amdk8/Config.lb
obj-$ ( CONFIG _ ACPI _ SSDTX _ NUM ) + = ssdt 2 .o
obj-$ ( CONFIG _ ACPI _ SSDTX _ NUM ) + = ssdt 3 .o
obj-$ ( CONFIG _ HAVE _ ACPI _ TABLES ) + = ssdt 4 .o
driver-y += ../../../drivers/i2c/i2cmux/i2cmux.o
2009-08-13 18:02:24 +02:00
# This is part of the conversion to init-obj and away from included code.
2009-08-12 17:00:51 +02:00
initobj-y += crt0.o
\end { verbatim}
\subsubsection { romcc legacy support}
2009-08-13 18:02:24 +02:00
We hope to move away from romcc soon, but for now, if one is using romcc, the Makefile.inc must define
crt0 include files (assembly code for startup, usually); and several ldscripts. These are taken directly from the
old Config.lb. Note that these use the -y syntax and can use the ability to be included conditionally.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
crt0-y += ../../../../src/cpu/x86/16bit/entry16.inc
crt0-y += ../../../../src/cpu/x86/32bit/entry32.inc
crt0-y += ../../../../src/cpu/x86/16bit/reset16.inc
crt0-y += ../../../../src/arch/i386/lib/id.inc
crt0-y += ../../../../src/cpu/amd/car/cache_ as_ ram.inc
crt0-y += auto.inc
ldscript-y += ../../../../src/arch/i386/init/ldscript_ fallback_ cbfs.lb
ldscript-y += ../../../../src/cpu/x86/16bit/entry16.lds
ldscript-y += ../../../../src/cpu/x86/16bit/reset16.lds
ldscript-y += ../../../../src/arch/i386/lib/id.lds
ldscript-y += ../../../../src/arch/i386/lib/failover.lds
\end { verbatim}
\subsubsection { defines}
2009-08-13 18:02:24 +02:00
There are variables that should never be definable by users, as changing them will break the build or the image. These are set
in MAINBOARD\_ OPTIONS.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
MAINBOARD_ OPTIONS=\
2009-08-13 18:02:24 +02:00
-DCONFIG_ AP_ IN_ SIPI_ WAIT=0 \
-DCONFIG_ USE_ PRINTK_ IN_ CAR=1 \
-DCONFIG_ HAVE_ HIGH_ TABLES=1
2009-08-12 17:00:51 +02:00
\end { verbatim}
\subsubsection { POST\_ EVALUATION}
2009-08-13 18:02:24 +02:00
POST\_ EVALUATION rules should be placed after this section:
2009-08-12 17:00:51 +02:00
\begin { verbatim}
ifdef POST_ EVALUATION
\end { verbatim}
2009-08-13 18:02:24 +02:00
to ensure that the values of variables are correct.
Here are the post-evaluation rules for this mainboard:
2009-08-12 17:00:51 +02:00
\begin { verbatim}
$ ( obj ) / dsdt.c: $ (src)/mainboard/$ ( MAINBOARDDIR ) / dsdt.asl
2009-08-13 18:02:24 +02:00
iasl -p dsdt -tc $ ( src ) / mainboard / $ (MAINBOARDDIR)/dsdt.asl
mv dsdt.hex $ @
2009-08-12 17:00:51 +02:00
$ ( obj ) / mainboard / $ (MAINBOARDDIR)/dsdt.o: $ ( obj ) / dsdt.c
2009-08-13 18:02:24 +02:00
$ ( CC ) $ (DISTRO_ CFLAGS) $ ( CFLAGS ) $ (CPPFLAGS) $ ( DEBUG _ CFLAGS ) - I $ (src) -I. -c $ < - o $ @
2009-08-12 17:00:51 +02:00
$ ( obj ) / ssdt 2 .c: $ (src)/mainboard/$ ( MAINBOARDDIR ) / dx / pci 2 .asl
2009-08-13 18:02:24 +02:00
iasl -p $ ( CURDIR ) / pci 2 - tc $ (CONFIG_ MAINBOARD)/dx/pci2.asl
perl -pi -e 's/AmlCode/AmlCode_ ssdt2/g' pci2.hex
mv pci2.hex ssdt2.c
2009-08-12 17:00:51 +02:00
$ ( obj ) / ssdt 3 .c: $ (src)/mainboard/$ ( MAINBOARDDIR ) / dx / pci 3 .asl"
2009-08-13 18:02:24 +02:00
iasl -p $ ( CURDIR ) / pci 3 - tc $ (CONFIG_ MAINBOARD)/
perl -pi -e 's/AmlCode/AmlCode_ ssdt3/g' pci3.hex
mv pci3.hex ssdt3.c
2009-08-12 17:00:51 +02:00
$ ( obj ) / ssdt 4 .c: $ (src)/mainboard/$ ( MAINBOARDDIR ) / dx / pci 4 .asl"
2009-08-13 18:02:24 +02:00
iasl -p $ ( CURDIR ) / pci 4 - tc $ (CONFIG_ MAINBOARD)/dx/pci4.asl
perl -pi -e 's/AmlCode/AmlCode_ ssdt4/g' pci4.hex
mv pci4.hex ssdt4.c
2009-08-12 17:00:51 +02:00
$ ( obj ) / mainboard / $ (MAINBOARDDIR)/auto.inc: $ ( src ) / mainboard / $ (MAINBOARDDIR)/rom.c $ ( obj ) / option _ table.h
2009-08-13 18:02:24 +02:00
$ ( CC ) $ (DISTRO_ CFLAGS) $ ( CFLAGS ) $ (CPPFLAGS) $ ( DEBUG _ CFLAGS ) - I $ (src) -I. -c -S $ ( src ) / mainboard / $ (MAINBOARDDIR)/rom.c -o $ @
perl -e 's/\. rodata/.rom.data/g' -pi $ @
perl -e 's/\. text/.section .rom.text/g' -pi $ @
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
The last rule is for romcc, and, again, we hope to eliminate romcc usage and this rule soon. The first set of rules concern ACPI tables.
2009-08-12 17:00:51 +02:00
\subsubsection { devicetree.cb}
Most of the old Config.lb is gone, but one piece remains: the device tree specification. This tree is still required to build a mainboard
2009-08-13 18:02:24 +02:00
properly, as it defines topology and chips that can be defined no other way.
Let's go through the tree.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
chip northbridge/amd/amdk8/root_ complex
2009-08-13 18:02:24 +02:00
device apic_ cluster 0 on
chip cpu/amd/socket_ F
device apic 0 on end
end
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
This topology is always somewhat confusing to newcomers, and even to coreboot veterans.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
We root the tree at the pci-e { \it root complex} . There is always the question of how and where to root the tree. Over the years we
2009-08-12 17:00:51 +02:00
have found that the one part that never goes away is the root complex. CPU sockets may be empty or full; but there is always a northbridge
2009-08-13 18:02:24 +02:00
somewhere, since it runs memory.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
What is the APIC? Northbridges always have an Advanced Programmable Interrupt Controller, and that { \it APIC cluster} is a topological connection to the
CPU socket. So the tree is rooted at the northbridge, which has a link to an apic cluster, and then the CPU. The CPU contains
its own APIC, and will define any parameters needed. In this case, we have a northbridge of type
{ \it northbridge/amd/amdk8/root\_ complex} , with its own apic\_ cluster device which we turn on,
which connects to a { \it cpu/amd/socket\_ F} ,
which has an apic, which is on.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
Note that we do not enumerate all CPUs, even on this SMP mainboard. The reason is they may not all be there. The CPU we define here
is the so-called Boot Strap Processor, or BSP; the other CPUs will come along later, as the are discovered. We do not require (unlike many
BIOSes) that the BSP be CPU 0; any CPU will do.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci_ domain 0 on
chip northbridge/amd/amdk8
device pci 18.0 on # northbridge
# devices on link 0, link 0 == LDT 0
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
Here begins the pci domain, which usually starts with 0. Then there is the northbridge, which bridges to the PCI bus. On
Opterons, certain CPU control registers are managed in PCI config space in device 18.0 (BSP), 19.0 (AP), and up.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
chip southbridge/amd/amd8132
# the on/off keyword is mandatory
device pci 0.0 on end
device pci 0.1 on end
device pci 1.0 on end
device pci 1.1 on end
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
This is the 8132, a bridge to a secondary PCI bus.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
chip southbridge/amd/amd8111
# this "device pci 0.0" is the parent the next one
# PCI bridge
device pci 0.0 on
device pci 0.0 on end
device pci 0.1 on end
device pci 0.2 off end
device pci 1.0 off end
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
The 8111 is a bridge to other busses and to the legacy ISA devices such as superio.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 1.0 on
chip superio/winbond/w83627hf
device pnp 2e.0 off # Floppy
io 0x60 = 0x3f0
irq 0x70 = 6
drq 0x74 = 2
end
device pnp 2e.1 off # Parallel Port
io 0x60 = 0x378
irq 0x70 = 7
end
device pnp 2e.2 on # Com1
io 0x60 = 0x3f8
irq 0x70 = 4
end
device pnp 2e.3 off # Com2
io 0x60 = 0x2f8
irq 0x70 = 3
end
device pnp 2e.5 on # Keyboard
io 0x60 = 0x60
io 0x62 = 0x64
irq 0x70 = 1
irq 0x72 = 12
end
device pnp 2e.6 off # CIR
io 0x60 = 0x100
end
device pnp 2e.7 off # GAME_ MIDI_ GIPO1
io 0x60 = 0x220
io 0x62 = 0x300
irq 0x70 = 9
end
device pnp 2e.8 off end # GPIO2
device pnp 2e.9 off end # GPIO3
device pnp 2e.a off end # ACPI
device pnp 2e.b on # HW Monitor
io 0x60 = 0x290
irq 0x70 = 5
end
end
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
The pnp refers to the many Plug N Play devices on a superio. 2e refers to the base I/O address of the superio, and the number following the
2e (i.e. 2e.1) is the Logical Device Number, or LDN. Each LDN has a common configuration (base, irq, etc.) and these are set by the statements under the LDN.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 1.1 on end
device pci 1.2 on end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
More devices. These statements set up placeholders in the device tree.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 1.3 on
chip drivers/i2c/i2cmux # pca9556 smbus mux
device i2c 18 on #0 pca9516 1
chip drivers/generic/generic #dimm 0-0-0
device i2c 50 on end
end
chip drivers/generic/generic #dimm 0-0-1
device i2c 51 on end
end
chip drivers/generic/generic #dimm 0-1-0
device i2c 52 on end
end
chip drivers/generic/generic #dimm 0-1-1
device i2c 53 on end
end
end
device i2c 18 on #1 pca9516 2
chip drivers/generic/generic #dimm 1-0-0
device i2c 50 on end
end
chip drivers/generic/generic #dimm 1-0-1
device i2c 51 on end
end
chip drivers/generic/generic #dimm 1-1-0
device i2c 52 on end
end
chip drivers/generic/generic #dimm 1-1-1
device i2c 53 on end
end
chip drivers/generic/generic #dimm 1-2-0
device i2c 54 on end
end
chip drivers/generic/generic #dimm 1-2-1
device i2c 55 on end
end
chip drivers/generic/generic #dimm 1-3-0
device i2c 56 on end
end
chip drivers/generic/generic #dimm 1-3-1
device i2c 57 on end
end
end
end
end # acpi
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
These are the i2c devices.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 1.5 off end
device pci 1.6 off end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
More placeholders.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
register "ide0_ enable" = "1"
register "ide1_ enable" = "1"
end
end # device pci 18.0
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
These "register" commands set controls in the southbridge.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 18.0 on end
device pci 18.0 on end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
These are the other two hypertransport links.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
device pci 18.1 on end
device pci 18.2 on end
device pci 18.3 on end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
The 18.1 devices are, again, northbridge control for various k8 functions.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
That's it for the BSP I/O and HT busses. Now we begin the AP busses. Not much here.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
2009-08-13 18:02:24 +02:00
chip northbridge/amd/amdk8
device pci 19.0 on # northbridge
chip southbridge/amd/amd8151
# the on/off keyword is mandatory
device pci 0.0 on end
device pci 1.0 on end
end
end # device pci 19.0
device pci 19.0 on end
device pci 19.0 on end
device pci 19.1 on end
device pci 19.2 on end
device pci 19.3 on end
end
2009-08-12 17:00:51 +02:00
\end { verbatim}
\begin { verbatim}
2009-08-13 18:02:24 +02:00
end #pci_ domain
# chip drivers/generic/debug
# device pnp 0.0 off end # chip name
# device pnp 0.1 on end # pci_ regs_ all
# device pnp 0.2 off end # mem
# device pnp 0.3 off end # cpuid
# device pnp 0.4 off end # smbus_ regs_ all
# device pnp 0.5 off end # dual core msr
# device pnp 0.6 off end # cache size
# device pnp 0.7 off end # tsc
2009-08-12 17:00:51 +02:00
# end
end
\end { verbatim}
2009-08-13 18:02:24 +02:00
This is a trick used to debug by creating entries in the device tree.
2009-08-12 17:00:51 +02:00
\subsection { cpu socket}
2009-08-13 18:02:24 +02:00
The CPU socket is the key link from mainboard to its CPUs. Since many models of CPU can go in a socket, the mainboard mentions only
the socket, and the socket, in turn, references the various model CPUs which can be plugged into it. The socket is thus the focus
of all defines and Makefile controls for building the CPU components of a board.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
\subsubsection { cpu/Kconfig}
Defines variables. Current variables are:
2009-08-12 17:00:51 +02:00
\input { cpukconfig.tex}
2009-08-13 18:02:24 +02:00
Sources all Kconfig files in the vendor directories.
\subsubsection { cpu/Makefile.inc}
Unconditionally sources all Makefile.inc in the vendor directories.
\subsection { cpu/$ < $ vendor$ > $ /Kconfig}
The only action currently taken is to source all Kconfig's in the
subdirectories.
\subsection { cpu/$ < $ vendor$ > $ /Makefile.inc}
{ \em Conditionally} source the socket directories.
Example:
2009-08-12 17:00:51 +02:00
\begin { verbatim}
subdirs-$ ( CONFIG _ CPU _ AMD _ SOCKET _ F ) + = socket _ F
\end { verbatim}
.
2009-08-13 18:02:24 +02:00
CONFIG\_ CPU\_ AMD\_ SOCKET\_ F is set in a mainboard file.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
\subsection { cpu/$ < $ vendor$ > $ /$ < $ socket$ > $ /Kconfig}
Set variables that relate to this { \em socket} , and { \em any models that plug into this socket} . Note that
the socket, as much as possible, should control the models, because the models may plug into many sockets.
Socket\_ F currently sets:
2009-08-12 17:00:51 +02:00
\input { socketfkconfig.tex}
2009-08-13 18:02:24 +02:00
It sources only those Kconfigs that relate to this particular socket, i.e. not all possible models are sourced.
2009-08-12 17:00:51 +02:00
2009-08-13 18:02:24 +02:00
\subsection { cpu/$ < $ vendor$ > $ /$ < $ model$ > $ /Kconfig}
2009-08-12 17:00:51 +02:00
CPU Model Kconfigs only set variables, We do not expect that they will source any other Kconfig. The socket Kconfig should do that
2009-08-13 18:02:24 +02:00
if needed.
\subsection { cpu/$ < $ vendor$ > $ /$ < $ model$ > $ /Makefile.inc}
The Makefile.inc { \em unconditionally} specifies drivers and objects to be included in the build. There is no conditional
compilation at this point. IF a socket is included, it includes the models. If a model is included, it should include { em all}
objects, because it is not possible to determine at build time what options may be needed for a given model CPU.
2009-08-12 17:00:51 +02:00
This Makefile.inc includes no other Makefile.inc files; any inclusion should be done in the socket Makefile.inc.
\subsection { northbridge}
\subsubsection { northbridge/Kconfig}
2009-08-13 18:02:24 +02:00
No variables. Source all vendor directory Kconfigs.
\subsubsection { northbridge/Makefile.inc}
2009-08-12 17:00:51 +02:00
No variables. unconditionally include all vendor Makefile.inc
2009-08-13 18:02:24 +02:00
\subsubsection { northbridge/$ < $ vendor$ > $ /Kconfig}
No variables. Source all chip directory Kconfigs.
\subsubsection { northbridge/$ < $ vendor$ > $ /Makefile.inc}
No variables. { \em Conditionally} include all chipset Makefile.inc. The variable
is the name of the part, e.g.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
subdirs-$ ( CONFIG _ NORTHBRIDGE _ AMD _ AMDK 8 ) + = amdk 8
\end { verbatim}
.
2009-08-13 18:02:24 +02:00
\subsubsection { northbridge/$ < $ vendor$ > $ /$ < $ chip$ > $ /Kconfig}
Typically a small number of variables. One defines the part name. Here is an example
of the variables defined for the K8.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
config NORTHBRIDGE_ AMD_ AMDK8
2009-08-13 18:02:24 +02:00
bool
default n
2009-08-12 17:00:51 +02:00
config AGP_ APERTURE_ SIZE
2009-08-13 18:02:24 +02:00
hex
default 0x4000000
2009-08-12 17:00:51 +02:00
config HAVE_ HIGH_ TABLES
2009-08-13 18:02:24 +02:00
int
default 1
2009-08-12 17:00:51 +02:00
\end { verbatim}
2009-08-13 18:02:24 +02:00
\subsubsection { northbridge/$ < $ vendor$ > $ /$ < $ chip$ > $ /Makefile.inc}
Typically very small set of rules, and very simple.
Since this file is already conditionally included,
2009-08-12 17:00:51 +02:00
we don't need to test for the chipset CONFIG variable. We
can therefore test other variables (which is part of the reason
we set up conditional inclusion of this file, instead
of unconditionally including it). Here is an example from AMD K8.
2009-08-13 18:02:24 +02:00
Note that we can make a variable conditional on the ACPI tables.
2009-08-12 17:00:51 +02:00
\begin { verbatim}
driver-y += northbridge.o
driver-y += misc_ control.o
obj-y += get_ sblk_ pci1234.o
obj-$ ( CONFIG _ HAVE _ ACPI _ TABLES ) + = amdk 8 _ acpi.o
\end { verbatim}
2009-08-17 17:42:18 +02:00
\subsection { southbridge}
\subsubsection { southbridge/Kconfig}
No variables. Source all vendor directory Kconfigs.
\subsubsection { southbridge/Makefile.inc}
No variables. { \em Unconditionally} include all vendor Makefile.inc
\subsubsection { southbridge/$ < $ vendor$ > $ /Kconfig}
No variables. Source all chip directory Kconfigs.
\subsubsection { southbridge/$ < $ vendor$ > $ /Makefile.inc}
No variables. { \em Conditionally} include all chipset Makefile.inc. The variable
is the name of the part, e.g.
\begin { verbatim}
subdirs-$ ( CONFIG _ SOUTHBRIDGE _ AMD _ AMD 8111 ) + = amd 8111
\end { verbatim}
.
\subsubsection { southbridge/$ < $ vendor$ > $ /$ < $ chip$ > $ /Kconfig}
Typically a small number of variables. One defines the part name. Here is an example
of the variables defined for the K8.
\begin { verbatim}
config SOUTHBRIDGE_ AMD_ AMD8111
bool
default n
2009-08-12 17:00:51 +02:00
2009-08-17 17:42:18 +02:00
\end { verbatim}
\subsubsection { southbridge/$ < $ vendor$ > $ /$ < $ chip$ > $ /Makefile.inc}
Typically very small set of rules, and very simple.
Since this file is already conditionally included,
we don't need to test for the chipset CONFIG variable. We
can therefore test other variables (which is part of the reason
we set up conditional inclusion of this file, instead
of unconditionally including it). Here is an example from AMD 8111.
No conditionals in this one yet.
\begin { verbatim}
driver-y += amd8111.o
driver-y += amd8111_ usb.o
driver-y += amd8111_ lpc.o
driver-y += amd8111_ ide.o
driver-y += amd8111_ acpi.o
driver-y += amd8111_ usb2.o
driver-y += amd8111_ ac97.o
driver-y += amd8111_ nic.o
driver-y += amd8111_ pci.o
driver-y += amd8111_ smbus.o
obj-y += amd8111_ reset.o
\end { verbatim}
2009-08-12 17:00:51 +02:00
\subsubsection { vendor and part}
\subsection { southbridge}
\subsubsection { vendor and part}
\subsection { superio}
2009-08-12 17:39:38 +02:00
\subsection { drivers/i2c}
2009-08-13 18:02:24 +02:00
This is a rather special case. There are no Kconfig files or Makefile.inc files here. They are not needed.
To compile in one of these files, name the .o directory. E.g. in serengeti\_ cheetah we have:
2009-08-12 17:39:38 +02:00
\begin { verbatim}
\end { verbatim}
2009-08-12 17:00:51 +02:00
\subsubsection { vendor and part}
\end { document}