blob: e501c52b3b30d289c9ce0c24cb3de002b0a5eefd [file] [log] [blame]
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +02001.. SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +02003=============================
4Adding a new board to LinuxSH
5=============================
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7 Paul Mundt <lethal@linux-sh.org>
8
9This document attempts to outline what steps are necessary to add support
10for new boards to the LinuxSH port under the new 2.5 and 2.6 kernels. This
11also attempts to outline some of the noticeable changes between the 2.4
12and the 2.5/2.6 SH backend.
13
141. New Directory Structure
15==========================
16
17The first thing to note is the new directory structure. Under 2.4, most
18of the board-specific code (with the exception of stboards) ended up
19in arch/sh/kernel/ directly, with board-specific headers ending up in
20include/asm-sh/. For the new kernel, things are broken out by board type,
21companion chip type, and CPU type. Looking at a tree view of this directory
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +010022hierarchy looks like the following:
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +020024Board-specific code::
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +020026 .
27 |-- arch
28 | `-- sh
29 | `-- boards
30 | |-- adx
31 | | `-- board-specific files
32 | |-- bigsur
33 | | `-- board-specific files
34 | |
35 | ... more boards here ...
36 |
37 `-- include
38 `-- asm-sh
39 |-- adx
40 | `-- board-specific headers
41 |-- bigsur
42 | `-- board-specific headers
43 |
44 .. more boards here ...
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +020046Next, for companion chips::
47
48 .
49 `-- arch
50 `-- sh
51 `-- cchips
52 `-- hd6446x
53 `-- hd64461
54 `-- cchip-specific files
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56... and so on. Headers for the companion chips are treated the same way as
57board-specific headers. Thus, include/asm-sh/hd64461 is home to all of the
58hd64461-specific headers.
59
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +020060Finally, CPU family support is also abstracted::
61
62 .
63 |-- arch
64 | `-- sh
65 | |-- kernel
66 | | `-- cpu
67 | | |-- sh2
68 | | | `-- SH-2 generic files
69 | | |-- sh3
70 | | | `-- SH-3 generic files
71 | | `-- sh4
72 | | `-- SH-4 generic files
73 | `-- mm
74 | `-- This is also broken out per CPU family, so each family can
75 | have their own set of cache/tlb functions.
76 |
77 `-- include
78 `-- asm-sh
79 |-- cpu-sh2
80 | `-- SH-2 specific headers
81 |-- cpu-sh3
82 | `-- SH-3 specific headers
83 `-- cpu-sh4
84 `-- SH-4 specific headers
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86It should be noted that CPU subtypes are _not_ abstracted. Thus, these still
87need to be dealt with by the CPU family specific code.
88
892. Adding a New Board
90=====================
91
92The first thing to determine is whether the board you are adding will be
93isolated, or whether it will be part of a family of boards that can mostly
94share the same board-specific code with minor differences.
95
96In the first case, this is just a matter of making a directory for your
97board in arch/sh/boards/ and adding rules to hook your board in with the
98build system (more on this in the next section). However, for board families
99it makes more sense to have a common top-level arch/sh/boards/ directory
100and then populate that with sub-directories for each member of the family.
101Both the Solution Engine and the hp6xx boards are an example of this.
102
103After you have setup your new arch/sh/boards/ directory, remember that you
Paul Mundt801e0452006-09-27 16:15:48 +0900104should also add a directory in include/asm-sh for headers localized to this
105board (if there are going to be more than one). In order to interoperate
106seamlessly with the build system, it's best to have this directory the same
107as the arch/sh/boards/ directory name, though if your board is again part of
108a family, the build system has ways of dealing with this (via incdir-y
109overloading), and you can feel free to name the directory after the family
110member itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112There are a few things that each board is required to have, both in the
Uwe Kleine-König1b3c3712007-02-17 19:23:03 +0100113arch/sh/boards and the include/asm-sh/ hierarchy. In order to better
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114explain this, we use some examples for adding an imaginary board. For
115setup code, we're required at the very least to provide definitions for
116get_system_type() and platform_setup(). For our imaginary board, this
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200117might look something like::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200119 /*
120 * arch/sh/boards/vapor/setup.c - Setup code for imaginary board
121 */
122 #include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200124 const char *get_system_type(void)
125 {
126 return "FooTech Vaporboard";
127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200129 int __init platform_setup(void)
130 {
131 /*
132 * If our hardware actually existed, we would do real
133 * setup here. Though it's also sane to leave this empty
134 * if there's no real init work that has to be done for
135 * this board.
136 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200138 /* Start-up imaginary PCI ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200140 /* And whatever else ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200142 return 0;
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145Our new imaginary board will also have to tie into the machvec in order for it
Paul Mundt801e0452006-09-27 16:15:48 +0900146to be of any use.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148machvec functions fall into a number of categories:
149
150 - I/O functions to IO memory (inb etc) and PCI/main memory (readb etc).
Paul Mundt801e0452006-09-27 16:15:48 +0900151 - I/O mapping functions (ioport_map, ioport_unmap, etc).
152 - a 'heartbeat' function.
153 - PCI and IRQ initialization routines.
154 - Consistent allocators (for boards that need special allocators,
155 particularly for allocating out of some board-specific SRAM for DMA
156 handles).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Paul Mundt801e0452006-09-27 16:15:48 +0900158There are machvec functions added and removed over time, so always be sure to
159consult include/asm-sh/machvec.h for the current state of the machvec.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Paul Mundt801e0452006-09-27 16:15:48 +0900161The kernel will automatically wrap in generic routines for undefined function
162pointers in the machvec at boot time, as machvec functions are referenced
163unconditionally throughout most of the tree. Some boards have incredibly
164sparse machvecs (such as the dreamcast and sh03), whereas others must define
165virtually everything (rts7751r2d).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Paul Mundt801e0452006-09-27 16:15:48 +0900167Adding a new machine is relatively trivial (using vapor as an example):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Paul Mundt801e0452006-09-27 16:15:48 +0900169If the board-specific definitions are quite minimalistic, as is the case for
170the vast majority of boards, simply having a single board-specific header is
171sufficient.
172
173 - add a new file include/asm-sh/vapor.h which contains prototypes for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 any machine specific IO functions prefixed with the machine name, for
175 example vapor_inb. These will be needed when filling out the machine
176 vector.
177
Paul Mundt801e0452006-09-27 16:15:48 +0900178 Note that these prototypes are generated automatically by setting
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200179 __IO_PREFIX to something sensible. A typical example would be::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Paul Mundt801e0452006-09-27 16:15:48 +0900181 #define __IO_PREFIX vapor
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200182 #include <asm/io_generic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Paul Mundt801e0452006-09-27 16:15:48 +0900184 somewhere in the board-specific header. Any boards being ported that still
185 have a legacy io.h should remove it entirely and switch to the new model.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Paul Mundt801e0452006-09-27 16:15:48 +0900187 - Add machine vector definitions to the board's setup.c. At a bare minimum,
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200188 this must be defined as something like::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Paul Mundt801e0452006-09-27 16:15:48 +0900190 struct sh_machine_vector mv_vapor __initmv = {
191 .mv_name = "vapor",
192 };
193 ALIAS_MV(vapor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Paul Mundt801e0452006-09-27 16:15:48 +0900195 - finally add a file arch/sh/boards/vapor/io.c, which contains definitions of
196 the machine specific io functions (if there are enough to warrant it).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
1983. Hooking into the Build System
199================================
200
201Now that we have the corresponding directories setup, and all of the
202board-specific code is in place, it's time to look at how to get the
203whole mess to fit into the build system.
204
205Large portions of the build system are now entirely dynamic, and merely
206require the proper entry here and there in order to get things done.
207
208The first thing to do is to add an entry to arch/sh/Kconfig, under the
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200209"System type" menu::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200211 config SH_VAPOR
212 bool "Vapor"
213 help
214 select Vapor if configuring for a FooTech Vaporboard.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216next, this has to be added into arch/sh/Makefile. All boards require a
217machdir-y entry in order to be built. This entry needs to be the name of
218the board directory as it appears in arch/sh/boards, even if it is in a
219sub-directory (in which case, all parent directories below arch/sh/boards/
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200220need to be listed). For our new board, this entry can look like::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200222 machdir-$(CONFIG_SH_VAPOR) += vapor
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224provided that we've placed everything in the arch/sh/boards/vapor/ directory.
225
226Next, the build system assumes that your include/asm-sh directory will also
227be named the same. If this is not the case (as is the case with multiple
228boards belonging to a common family), then the directory name needs to be
229implicitly appended to incdir-y. The existing code manages this for the
230Solution Engine and hp6xx boards, so see these for an example.
231
232Once that is taken care of, it's time to add an entry for the mach type.
233This is done by adding an entry to the end of the arch/sh/tools/mach-types
234list. The method for doing this is self explanatory, and so we won't waste
235space restating it here. After this is done, you will be able to use
236implicit checks for your board if you need this somewhere throughout the
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200237common code, such as::
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /* Make sure we're on the FooTech Vaporboard */
240 if (!mach_is_vapor())
241 return -ENODEV;
242
243also note that the mach_is_boardname() check will be implicitly forced to
244lowercase, regardless of the fact that the mach-types entries are all
245uppercase. You can read the script if you really care, but it's pretty ugly,
246so you probably don't want to do that.
247
248Now all that's left to do is providing a defconfig for your new board. This
249way, other people who end up with this board can simply use this config
250for reference instead of trying to guess what settings are supposed to be
251used on it.
252
253Also, as soon as you have copied over a sample .config for your new board
254(assume arch/sh/configs/vapor_defconfig), you can also use this directly as a
255build target, and it will be implicitly listed as such in the help text.
256
257Looking at the 'make help' output, you should now see something like:
258
259Architecture specific targets (sh):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200261 ======================= =============================================
262 zImage Compressed kernel image (arch/sh/boot/zImage)
263 adx_defconfig Build for adx
264 cqreek_defconfig Build for cqreek
265 dreamcast_defconfig Build for dreamcast
266 ...
267 vapor_defconfig Build for vapor
268 ======================= =============================================
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Mauro Carvalho Chehab7539b412020-06-15 08:50:21 +0200270which then allows you to do::
271
272 $ make ARCH=sh CROSS_COMPILE=sh4-linux- vapor_defconfig vmlinux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274which will in turn copy the defconfig for this board, run it through
275oldconfig (prompting you for any new options since the time of creation),
276and start you on your way to having a functional kernel for your new
277board.