- Поднимаем Linux на MIPSfpga и ПЛИС Altera
- Введение
- Синтез конфигурации и программирование ПЛИС
- Сборка ядра и RAM-диска
- Загрузка ядра в память и запуск
- Работа с GPIO
- Что дальше
- Благодарности
- Linux/MIPS Porting Guide
- Contents
- Overview
- Prerequisites
- Overall porting steps
- Setup a cross-development environment
- «Hello, world!»
- Getting the Kernel
- Initial board support
- Decide on a directory hierarchy
- Hook into the build system
- Provide board-specific hooks
- Configure and build a kernel image
- Early printk()
- Serial driver and console
- What if the board only has one serial port?
- Supporting a new CPU
- Interrupts
- Interrupt code overview
- CPU as an IRQ controller
- Set up cascading interrupts
- The irq_chip struct
- The IRQ initialization code
- Final notes
- System time and timer
- PCI support
- Debugging
- Kernel Oops
- Appendix A: Linux startup sequence in 2.4.x
- Appendix B: Credits
Поднимаем Linux на MIPSfpga и ПЛИС Altera
Предоставленная Imagination Technologies документация на MIPSfpga очень хорошо и подробно описывает развертывание Linux. Но используемая при этом система на кристалле построена с помощью Xilinx-специфических периферийных модулей. Потому ее повторение на отладочной плате с ПЛИС Altera в исходном виде представляется невозможным. Решением является система на кристалле MIPSfpga-plus с ее платформонезависимой периферией. О том, как запустить на ней Linux, читайте в этой статье.
Введение
Сразу отметим, что получаемой в результате описанных ниже действий конфигурации пока что далеко от идеала. На данный момент нет загрузки с внешнего носителя, а в числе поддерживаемых устройств можно упомянуть только UART и GPIO. Поэтому фронт дальнейшей работы по развитию системы MIPSfpga-plus представляется очень широким.
Далее предполагается, что читатель:
- знаком с предметной областью в объеме учебника Харрис-энд-Харрис [L1];
- имеет доступ к исходным кодам MIPSfpga [L2] и mipsfpga-plus [L3];
- настроил и проверил работу MIPSfpga-plus с SDRAM [L5] и UART [L6], а также в режиме удаленной отладки [L4];
- имеет некоторые навыки использования средств разработки ОС Linux, опыт работы с git;
В описываемом случае используется следующая конфигурация:
- отладочная плата Terasic DE10-Lite с ПЛИС Altera MAX10 и SDRAM 64Mб на борту;
- плата Pinboard II в качестве отладчика и UART-конвертера. Вы можете использовать любую плату с FTDI USB-чипом, поддерживающим MPSSE, пример такой конфигурации описан в [L4];
- компьютер Windows 7 (x64) и Quartus Prime 16.1 для синтеза и программирования ПЛИС;
- виртуальная машина с Ubuntu 17.04 (x64) для сборки ядра и RAM-образа файловой системы;
- доступ в Интернет;
В случае, если вы планируете серьезно и глубоко погрузиться в магию ядра Linux, настойчиво рекомендуется ознакомится с материалами [L7], в частности, с презентациями [L8] и [L9].
Если все перечисленные требования выполнены, начнем!
Синтез конфигурации и программирование ПЛИС
в настройках MIPSfpga-plus (файл mfp_ahb_lite_matrix_config.vh) должны быть включены периферийные модули работы с SDRAM и UART, а также отладка через MPSSE — если используется механизм отладки, описанный в [L4]:
Сборка ядра и RAM-диска
Предполагается, что дальнейшие действия выполняются на машине под управлением Linux.
обновить список доступных для системы пакетов:
установить утилиты и библиотеки, необходимые для конфигурирования и сборки:
создать каталог, в котором будет идти вся дальнейшая работа и перейти в него:
выполнить загрузку toolchain с сайта Imagination Technologies:
создать каталог и развернуть в нем скачанный пакет:
желательно (но не обязательно) прописать путь к развернутым исполняемым файлам в переменную $PATH, это упростит работу с ними. Например, в
получаем ядро Linux:
получаем buildroot, с помощью которого будет сформирован RAM-образа файловой системы:
создаем каталог для патчей buildroot и Linux, необходимых для развертывания на MIPSfpga-plus:
скачиваем патчи [L10], сохраняем их в только что созданном каталоге;
переходим в каталог с buildroot и откатываемся на версию 2017.05.1 (коммит f3d8beeb3694):
применяем патч к buildroot:
выполняем конфигурирование buildroot:
при необходимости вносим изменения в конфигурацию:
запускаем сборку RAM-образа файловой системы и идем пить вкусный кофе (чай, пиво или кто что любит), т.к. процесс это весьма продолжительный:
переходим в каталог с ядром Linux и проверяем, что RAM-образа файловой системы находится по ожидаемому нами пути (в дальнейшем нам необходимо будет указать его в конфигурации ядра):
откатываемся на версию v4.12.1 (коммит cb6621858813), т.к. именно от нее сформирован патч:
применяем базовую конфигурацию ядра MIPSfpga:
запускаем редактор конфигурации:
- сохраняем изменения, выходим из графического конфигуратора и запускаем сборку ядра:
Загрузка ядра в память и запуск
на Linux-компьютере, где мы выполняли сборку, запускаем gdb из состава MIPS toolchain. Предполагается, что мы находимся в каталоге с собранным ядром:
Дальнейшие действия выполняются в консоли gdb.
подключаемся к OpenOCD, который запущен на машине с аппаратным отладчиком:
выполняем сброс системы MIPSfpga:
сообщаем отладчику, что наша система Little Endian:
загружаем образ ядра в память:
запускаем ядро на выполнение:
Работа с GPIO
Воспользуемся возможностями Linux для того, чтобы поуправлять той периферией, которая нам доступна (на момент написания статьи это GPIO, правда не в полном объеме):
проверяем, что драйвер GPIO загружен и устройство доступно:
для того, чтобы определить доступный диапазон выводов (в текущей конфигурации подключены светодиоды на плате), монтируем debugfs и с ее помощью получаем необходимую информацию:
активируем LED0 (в текущем случае это gpio480):
переводим его в режим вывода:
переводим его в высокий уровень:
Что дальше
Описанная конфигурация — это, по сути, только начало портирования Linux на систему MIPSfpga-plus. К числу работ, которые необходимо выполнить, чтобы система могла нормально использоваться для практических задач, можно отнести:
- поддержка существующих периферийных устройств: контроллер прерываний, более полная поддержка GPIO, Altera ADC;
- поддержка периферийных устройств MIPSfpga-plus, включая отсутствующие на данный момент PWM, интерфейсы SPI (присутствует ограниченно), I2C, DDR и Ethernet;
- поддержка внешних носителей (mmc/sdram) и возможности загрузки с них;
По этой причине, если в текущей конфигурации вы столкнетесь с какими-то ошибками (багами), то не удивляйтесь — работы еще много.
Благодарности
Автор выражает благодарность коллективу переводчиков учебника Дэвида Харриса и Сары Харрис «Цифровая схемотехника и архитектура компьютера» [L1], компании Imagination Technologies за академическую лицензию на современное процессорное ядро и образовательные материалы, а также персонально Юрию Панчулу YuriPanchul за его работу по популяризации MIPSfpga.
Источник
Linux/MIPS Porting Guide
This document reflects what I have learned through porting several MIPS machines and other related Linux work. Hopefully it will help beginners to get started and give the experienced a reference point.
This document goes through all the major steps to port Linux to a MIPS machine. The focus can perhaps be called «MIPS machine abstraction layer», i.e., the interface between machine-specific code and, mostly, MIPS common code. Another useful document focuses on «Linux hardware abstraction layer», i.e., the interface between Linux common code and architecture-specific code. The document is written by C Hanish Menon (www.hanishkvc.com).
Contents
Overview
Prerequisites
- Know C programming.
- Have some knowledge of OS concepts, such as interrupt handling, system calls, memory management.
- Know how to configure and make Linux kernel. You can find much help on this if you are not very comfortable.
- Have some knowledge of MIPS CPU. More than likely you will need to deal with CP0 registers, enable or disable interrupts, etc..
- You don’t have to be an expert in MIPS assembly, but total ignorance of it might make you handicapped in some situations.
- Obviously, you need a MIPS hardware to play with.
- Finally but most importantly, you need a willing-to-learn heart and perhaps many restless debugging hours. 🙂
It is also highly recommanded to read through the Linux MIPS HOWTO by Ralf Bächle, ralf@gnu.org. By the way, as part of the pre-requisite, you should also remember Ralf’s name. 🙂
Overall porting steps
Depending on your specific case, some (but not all!) of the following may be skipped:
- Setup a cross-development environment.
- «Hello, World!» — Get board setup, serial porting working, and print out «Hello, world!» through the serial port.
- Download the kernel — this is where you’ll be doing all your work.
- Add your own code.
- Get early printk working — Make the first MIPS image and see the printk output from kernel.
- Serial driver and serial console — Get the real printk working with the serial console.
- KGDB — KGDB can be enormously helpful in your development. It is highly recommended and it is not that difficult to set up.
- CPU support — If your MIPS CPU is not currently supported, you need to add new code that supports it.
- Board specific support — Create your board-specific directory. Setup interrupt routing/handling and kernel timer services.
- PCI subsystems — If your machine has PCI, you need to get the PCI subsystem working before you can use PCI devices.
- Ethernet drivers — You should already have the serial port working before attempting this. Usually the next driver you want is the ethernet driver. With ethernet driver working, you can set up a NFS root file system which gives you a fully working Linux userland.
- ROMFS root file system — Alternatively you can create a userland file system as a ROMFS image stored in a ramdisk.
Setup a cross-development environment
You’ll need a cross-development environment since your board is not yet self-hosting (ie. unable to natively build and run executable code). In this scenario, you usually have two machines — a host and target. It is on your host (eg. Linux on i386) that you build your code, and onto your target (MIPS board) that you download and run it. This is a preferred (and robust) methodology of doing embedded development, since most targets are resource-constrained (memory- and CPU-wise) for things like native builds of whole kernel trees.
A primary step towards setting up your environment is installing a cross-toolchain. While you may be able to roll your own, you’re better off using a pre-built set (full toolchain builds have since become quite time consuming). An exception to this is when you require added support for your platform to the toolchain itself, which is out of scope for this guide.
See Toolchains for where to download pre-built tools, or instructions on how to roll your own.
«Hello, world!»
In cross development, the serial port is usually the most important interface: That is where you can see anything happening! It might be worthwhile to make sure you get serial porting work before you even start playing with Linux. You can find the sample code or gzipped tar ball of a stand-alone program that can do printf. Such a program can even be useful in later debugging staging, e.g., printing out hardware register values.
Before you rush to type ‘make’, check and modify the following configurations:
- The sample code assumes R4K style CP0 structure. It should apply to most CPUs named above number 4000 and the recent MIPS32/MIPS64.
- Check if you have 1MB RAM size. (You really should have at 1MB to run Linux at all.) It is recommanded you have 8MB RAM or more.
- Is your serial port a standard UART type? If yes, modify the serial code and parameters. If not, you will have to supply your own functions to utilize the UART.
- What is your cross-tool name and path? Modify the Makefile accordingly.
Now, fire your «make» command.
Depending on your downloader on your MIPS box, you may need to generate ELF image, binary image or a SREC image.
Download the barebone image to your target and give it a run! Connect the serial port to your host machine. Start minicom and hopefully you can see the «Hello, world!» message.
- Make sure your bootloader downloads the image to uncached KSEG1 segment. If your bootloader downloads to the cached KSEG0 area, you will want to run the image from the KSEG0 area too.
- If your bootloader has already initialized the serial port, you may want to skip your own initialization.
- Did you set up minicom correctly? Test it with other machines.
- Hopefully it is not the toolchain problem.
Getting the Kernel
Ideally, you should be working against the latest stable release. The older stable release, 2.4.x, is only open to bug fixes and won’t be accepting any new features. Besides, countless bugs may have since been squished, APIs overhauled etc., all of which you’ll greatly benefit from.
See Getting the Kernel for where to obtain the latest stable release.
Initial board support
A first step toward adding support for your board is to hook into the kernel build system (kbuild). At this point you should be worrying about getting the tree to actually build. You’ll also need to provide the board-specific hooks that the architecture back-end depends on.
In the following examples, we assume a board named Aloha supplied by a vendor Hawaii.
Decide on a directory hierarchy
Your code for a new board can be classified into board-support code (or board-specific code) and drivers. Driver code should be placed under the drivers/ directory and board specific code should be placed under the arch/mips/ directory.
The easiest choice is to create a directory called arch/mips/aloha.
However, a couple of other considerations might make it slightly complicated.
- If Aloha uses a chipset or System on a Chip (SOC) that is already supported or belongs to a bigger family, such as NEC VR41xx or gt64120, it makes sense to put Aloha code under those sub-directories. You can re-use and share a lot of common code.
- Similarly, if Aloha is the first board that uses a chipset or SOC which is expected to be used in many other boards, you may want to create similar directory structure. However, if you are not sure, just create your own board specific directory.
In the past people have created directories based on the board manufacturer’s name, such as «mips-boards». This generally is not a good idea. It is almost certain that some of these boards do not share anything common at all.
To make things worse, sometimes boards made by different companies use the same chipset or SOC. Now what are you going to do? Are you going to duplicate the common code? Or are you going stick one company’s board under another company’s name?
For header files, you usually create similar directory or header files under include/asm-mips/. [DEBATE] For board specific header files, I would encourage people to place them under the corresponding arch/mips/ directory if possible.
In our example, we will create arch/mips/aloha/ directory.
Hook into the build system
Add a Kconfig entry for your board so you are able to select it with any of make *config . For a description of this syntax, see Documentation/kbuild/kconfig-language.txt: (TODO: Document CONFIG_SYS_SUPPORTS_* or better yet, just do it in arch/mips/Kconfig)
You’ll need a corresponding Makefile entry so make may recurse into your platform sub-directory. Such a Makefile would look like this:
You will also need a specific Platform file so the Linux kernel build system knows about your platform specific starting address, where to look for header files, and how to recurse into your platform specific Makefile.
$(load-y) is the starting address for your Linux image when it is loaded into RAM. Note that the first 0x200 bytes are used by the exception vectors on most CPUs. Some CPUs will require a larger space, so modify $(load-y) accordingly. Due to the linker’s addressing limit, the start address is aligned on a 8KB boundary, so setting $(load-y) to 0xffffffff80002000 should be reasonable:
Provide board-specific hooks
These are the hooks you need to get a tree that actually builds. Actual implementation depends on your hardware:
- get_system_type()
- arch_init_irq()
- plat_irq_disaptch()
- prom_init() , prom_free_prom_memory()
- plat_mem_setup()
Configure and build a kernel image
Now you are ready to run your favorite configuration tool. Since we do not have much code added yet, do not be too greedy with selecting options. Just pick a couple of simple options such as the serial and serial console.
- If you denoted the Aloha board support to be EXPERIMENTAL, select ‘Prompt for development and/or incomplete code/drivers’ under ‘Code maturity level options’.
- Select ‘Support for Hawaii Aloha board’ and unselect all other machines under ‘Machine selection’.
- Select the right CPU. Under ‘CPU selection’ select your CPU. If there is no entry for the CPU on your board, you will need to add support for it. Most recent CPUs can generally run to some degree with CPU_R4X00.
- Under ‘Character devices’, select ‘Standard/generic (8250/16550 and compatible UARTs) serial support’ and ‘Support for console on serial port’. Unselect the ‘Virtual terminal’ option.
- Note that some platforms may not use a standard 8250/16550 compatible UARTs but something entirely custom (refer to the hardware manual or reference code in that case)
- With some recent platforms you may find more and more AMBA-compatible peripherals such as the AMBA PL010/PL011 UART blocks
- Under the ‘Kernel hacking’ option, select ‘Are you using a crosscompiler’.
- For other options either take the default or select ‘no’.
Here is a sample minimum config for our Aloha board.
Before you type make , double-check the arch/mips/Makefile and make sure the cross-toolchain program names are correct and in your execution path i.e. your PATH environment variable.
Now type make dep and make . Then wait for a miracle to happen!
Early printk()
Assuming you are lucky and actually generate an image from the last chapter, don’t bother running it because you won’t see anything. This is not strange because all our board-specific code is empty and we have not told Linux kernel anything about our serial port or I/O devices yet.
The sign of a live Linux kernel comes from the output of printk, which is routed to the first console. Since we have configured a serial console, we should be able to see something on the serial wire if we have set it up correctly.
Unfortunately, setup of the serial console happens much later during the kernel startup process. (See Appendix A: Linux startup sequence in 2.4.x for a chart of the kernel start-up sequence). Chances are your new kernel probably dies even before that. That is where the early printk patch comes in handy. It allows you to see printk as early as the first line of C code.
In order to properly make use of early printk, your platform should select SYS_HAS_EARLY_PRINTK and implement a prom_putchar() routine which will be used by the kernel to output characters via the UART.
Serial driver and console
While early printk is rather useful, you still need to get the real serial driver working. Serial Driver and Console has all the details you’ll need in order to implement a device driver for your serial port.
For many Linux kernel developers, KGDB is a life-saving tool. With KGDB, you can debug the kernel while it runs! You can set breakpoints or do single stepping at the source code level.
To do this, you will need a dedicated serial port on your target, and use a crossover-cable (also known as a null-modem) to connect it to your development host. If you are also using a serial console, this implies you will need two serial ports on your target. It is possible to do both kernel debug and serial console through a single serial port. This will be mentioned later in this chapter.
When you configure the kernel, select the Remote GDB kernel debugging which is listed under Kernel hacking . Do a make clean and recompile the kernel so that debugging symbols are compiled into your kernel image. Try to make a new image. You will soon discover two missing symbols in the final linking stage:
You need to supply these two functions for your own boards:
As an example, here is the dbg_io.c for DDB5476 board. DDB5476 uses a standard UART serial port to implement those two functions.
After supplying those two functions, you are ready to debug the kernel. Run the new kernel image. If you also use the early printk patch, you should be able to see something like this on your console:
Assuming you have already connected a cross-over serial cable between the dedicated serial port on the target and a serial port on your host (say, COM0), you can then set the appropriate baud rate and start the cross gdb on your host:
At the gdb prompt, type
And, voila! You should be talking to the kernel through KGDB — if you are lucky enough!
A couple of tips on using KGDB:
- Any functions preceded with the __init label will not break very well with breakpoints. Sometimes it will screw up the line numbers of other functions in the same file. Try undefining __init to be an empty macro in your include/linux/init.h file. Refer to the patch. [NOTE: This problem is fixed in the latest gdb version, at least in gdb 5.2]
- Sometimes if you break on a function, you cannot see the correct value in variables and cannot do back-tracing. This is probably because certain registers are still not initialized [HELP: because kernel is compiled with -O2 flag?]. Step into the function a couple of lines, and you should see the variable and back-tracing fine.
What if the board only has one serial port?
Some boards only have one serial port. If you use it as serial console, you cannot really use it for KGDB — unless you do some tricks to it.
There are two solutions. One is GDB console, and the other is to use a KGDB demuxing script.
It is easy to use the GDB console. When you select ‘Remote GDB kernel debugging’ under the ‘Kernel hacking’ sub-menu, you are also prompted for ‘Console output to GDB’. Simply selecting that choice will work! In fact, this option is so easy to use you might want to use it even if you have a second serial port.
However, this option has a limit. When the kernel goes to userland, the console stops working. This is because the KGDB stub in the kernel and GDB are not designed to provide interactive output. [HELP: any volunteers?]
The second option uses a script called ‘kgdb_demux’ written by Brian Moyle. It creates two virtual ports, typically ttya0 and ttya1. It then listens to the real serial port (such as ttyS0). It will forward console traffic to ttya0 and KGDB traffic to ttya1. All you have to do then is to start minicom on /dev/ttya0 (port setting does not matter) and KGDB on /dev/ttya1 . With 2.6 kernel pseudo terminals can be /dev/pts/1-7
You can download the tarball here. A couple of usage tips.
- Untar the file to some place.
- Copy kgdb_demux script to your execution path, and modify it properly.
- Set the port parameters properly before you start kgdb_demux.
A newer C version of kdmx can be downloaded from this post.
Supporting a new CPU
In the MIPS world, there are different families of MIPS cores. For example Toshiba TX49, SiByte SB1, NEC VR41XX, MIPS32, and MIPS64 to name a few. These different families may have different cache architectures, may be 32-bit or 64-bit, and may or may not have a FP unit. A complete list of families is found in the arch/mips/Kconfig and arch/mips/include/asm-mips/cpu.h files. When you are configuring your kernel the complete list will appear under the CPU type menu selection. If you are adding support for an entirely new family of MIPS cores, you will need to change the following files:
- arch/mips/Kconfig: You will need to add your processor family to the list under CPU type.
- arch/mips/include/asm-mip/cpu.h: You will need to add a PRID_COMP and PRID_IMP entries for your processor family if they do not already exist. You will also need to add the CPU types that you will support in that family. Adding CPU types is covered below.
- arch/mips/kernel/cpu-probe.c: For each processor family, there is typically a cpu_probe_XXX() function that probes and fills in the struct cpuinfo_mips which contains information about the CPU type, whether a FP unit exists, the number of TLBs available, etc. Your function is responsible for properly probing and filling in this information for the entire family of processors. Finally, if your family does something special for CPU idle, then you will have to define a wait() function. Most likely, you will be able to use one that already exists. If not, add your wait() function and enable detection of it in check_wait() .
- arch/mips/mm: If your processor family has a unique cache architecture or anything out of the ordinary, you will need to either add or modify files in this directory.
Within each family of MIPS cores, there are multiple processors. For example, Alchemy processors and Broadcom processors are in the MIPS32 family, the Sibyte 1250 is in the SB1 family, and so on. Once you have decided what family your processor is in, you need to verify that a unique CPU identification exists for it. arch/mips/include/asm-mips/cpu.h contains all of the currently supported CPU types for the Linux/MIPS kernel.
If your processor is already listed in arch/mips/include/asm-mips/cpu.h, the existing Linux/MIPS code should auto-detect it. Otherwise, you’ll need to change three files to properly detect your processor:
- arch/mips/include/asm-mips/cpu.h: Add your processor at the end of the CPU_XXX definitions. Make sure you update the CPU_LAST value to match that of the processor you added.
- arch/mips/kernel/proc.c: Add an entry to the cpu_name array so that your CPU name can be properly displayed in /proc/cpuinfo.
- arch/mips/kernel/cpu-probe.c: Add your processor into the case statement in the function check_wait() if your CPU can do some sort of wait or idle operation. Add the necessary code in the cpu_probe_XXX() function to detect and set your CPU type.
Once you have support for your processor family and specific CPU type, you should be able to take full advantage of its capabilities.
Interrupts
If you followed the previous steps, most likely you will see kernel hanging at the BogusMIPS calibration step. The reason is simple: The interrupt code is not there and jiffies are never updated. Therefore the calibration can never be done.
Before you start writing interrupt code, it really pays to study the hardware first. Pay particular attention to identify all interrupt sources, their corresponding controllers and how they are routed.
Then you need to come up with a strategy, which typically includes:
- a static interrupt routing map
- a list of interrupt sources
- a list of their corresponding controllers
- how interrupt controllers cascade from each other
Interrupt code overview
To completely service an interrupt, four different pieces of code work together:
This is typically coded in a file called ‘irq.c’ by the low-level C function plat_irq_dispatch() . This function is called from the assembly defined macro ‘handle_int’ which is in turn set as the exception vector 0 (interrupts). This ‘plat_irq_dispatch’ function is responsible for reading the status and cause register and dispatch the interrupt handling to the corresponding interrupt handlers (CPU timer, IP2, IP3 . )
do_IRQ() is provided in the ‘arch/mips/kernel/irq.c’ file. It provides a common framework for IRQ handling. It invokes the individual IRQ controller code to enable/disable a particular interrupt. It calls the driver supplied interrupt handling routine that does the real processing.
This structure represents the kernel view of a specific hardware interrupt controller. Some basic function pointers such as ‘irq_mask’ and ‘irq_unmask’ are required for basic interrupt operations. For each and every single interrupt line serviced by this controller, you should call ‘irq_set_chip_and_handler()’ to instruct the Linux kernel on how to service this interrupt within this interrupt controller (interrupt number, level/edge handling, parent interrupt controller). Depending on the hardware features of your interrupt controller (level, edge interrupts, routing . ) you might need to implement more callbacks to properly support its features.
- driver interrupt handling code
The code that does the real job. An interrupt handler within a specific driver is registered and released using ‘request_irq()’, resp. ‘free_irq()’ and should implement a driver/device specific interrupt handler function whose prototype is ‘irqreturn_t isr_handler(int irq, void *dev_id)’.
Obviously for our porting purposes we need to write IRQ detection/disptaching code and the corresponding struct irq_chip function pointers code for any new IRQ controller used in the system. In addition, there is also IRQ setup and initialization code.
CPU as an IRQ controller
MIPS processors include a simple interrupt controller. In it’s simplest case as implemented in the R2000 it implements two software interrupts. This are interrupts that can only be raised by software setting the bit in the cause register and needs to be cleared by the interrupt handler. Otherwise they will behave just like hardware interrupts.
In case of the R4000 and most newer processors newer than the R4000 the IP7 bit in the cp0 status and cause registers doubles to serve the timer interrupt also. That is the IP7 interrupt will be raised whenever the cop0 count and compare registers have the same value. The exact mode of operation of the count register and the timer interrupt are often configurable by the CPU’s mode bits. Using IP7 as the timer interrupt typically also means this interrupt cannot sensibly used for any other purpose.
So here’s how to initialize the timer interrupt in a typical system. First define «CONFIG_IRQ_CPU» for your machine to enable compile the support code into the kernel. Then in your arch_init_irq() just call mips_cpu_irq_init(x) where for x you put the first of the 8 interrupt numbers you’re going to assign to the CPU’s interrupt controller.
Set up cascading interrupts
More than likely you will have more interrupt sources than those that can directly connect to the CPU interrupt pins. A second or even third-level interrupt controller may connect to one or more of those CPU pins. In that case, you have cascading interrupts.
There are plenty of examples of how cascading interrupt works, such as the DDB5477. Here is a short summary:
- Assign blocks of IRQ numbers to various interrupt controllers in the whole system. For example, in the case of Vr4181 systems, CPU interrupts occupy IRQ 0 to 7. Vr4181 system interrupts occupy IRQ 8 to 39, and GPIO interrupts occupy 40 to 56. In most cases, the actual IRQ numbers do not matter, as long as the driver knows which IRQ number it should use. However, if you have an i8259 interrupt controller and an ISA bus, you should try to assign IRQ number 0 to 16 for the i8259 interrupts because it will make the legacy PC drivers happy. (Please note before
12/08/2001 in version 2.4.16 of the Linux kernel, the ‘i8259.c’ file set the base vector to be 0x20. If you use the IRQ acknowledgement cycle to obtain the interrupt vector, you will get an IRQ number from 0x20 to 0x2f. You will then need to substract 0x20 from the return value to get the correct IRQ number.)
- Write the ‘hw_irq_controller’ member functinos for your specific controllers. Note that CPU and i8259 already have their code written. You just need to define appropriate CONFIG options for your board. See the next sub-section for more details about writing ‘hw_irq_controller’ member functions.
- In your IRQ setup routine, initialize all the controllers, usually by calling ‘interrupt_controller_XXX_init()’ functions.
- In your IRQ setup routine, setup the cascading IRQs. This setup will enable interrupts for the upper interrupt controller so that the lower-level interrupts can cascade through once they are enabled. A typical way of doing this is to have a dummy ‘irqaction struct’ and setup as follows:
- You need to expand your interrupt dispatching code properly to identify the added interrupt sources. If the code is simple enough, you can do it in the same int_handler.S file. If it is more complicated, you may do it in a separate C function (such as in the DDB5476 board).
The irq_chip struct
The irq_chip structure’ is a defined in the ‘include/linux/irq.h’ file.
The ‘arch/mips/kernel/irq_cpu.c’ is a good sample code to write ‘irq_chip’ member functions. Refer to the comments above the definition of ‘struct irq_chip’ in ‘include/linux/irq.h’ for more information about each function pointer.
The IRQ initialization code
The IRQ initialization is done in ‘arch_init_irq()’. Currently it is supplied by each individual board. In the future, it will probably be a MIPS common routine, which will further invoke a board-specific function, board_irq_init(). board_irq_init will be a function pointer that _setup() function needs to assign propoer value.
In any case, the following is a skeleton code for a normal ‘arch_init_irq()’ routine.
Final notes
What is described in this chapter is what is so-called new style interrupt handling. We used to have three different ways to handle interrupts: new style (CONFIG_NEW_IRQ), the old style (CONFIG_ROTTEN_IRQ) and board-private ad hoc routines. New style is now the only valid method since October-2002.
System time and timer
Linux relies on an RTC (real-time clock) device to obtain the real calendar data and time when it boots up. It relies on a system timer to advance the tick count, jiffies. If you don’t provide proper time and timer code, Linux won’t run. In fact it will stick in ‘calibrate_delay()’ during the startup process because jiffies is never incremented. (See Appendix B for more details about Linux/MIPS startup sequence).
There is an excellent document (I becomes a little shameless. :-0) under ‘Documentations/mips/time.README’ that should be read to further understand timekeeping for Linux/MIPS. It is a must read.
Here are some comments on implementing time and timer services:
- If your system has a CPU counter and another hardware timer, use the hardware timer over the CPU counter, even though CPU counter might be easier to setup and use. This is because CPU counter relies on the CPU frequency which is more likely to change in the future. In addition, performance-critical code may need to access the CPU counter for its own measurements. Some CPUs may have a variable CPU frequency which makes CPU counter not usable as a timer source. [DEBATE: 03/12/04, I changed my preference on this issue. Linux in the future will have richer and higher resolution time support. If all MIPS boards use CPU counter as the system timer, we can maximize the code sharing.]
- Unless you have to use interrupts to calibrate the CPU frequency, you can generally avoid implementing the ‘board_time_init()’ function. Most of its work can be done in the board setup routine.
- When you implement ‘rtc_set_time()’, more than likely you need to call the ‘to_tm()’ function which converts a single jiffy value to a full ‘struct rtc_time’. This function is provided in ‘arch/mips/kernel/time.c’ and declared in ‘include/asm-mips/time.h’.
PCI support
The PCI subsystem is perhaps the most complex code you have to deal with during the porting process. Thanks to the similarity of PCI, HyperTransport, PCI-X, Cardbus and other bus systems the time for understanding it well invested — and the key to making the PCI subsystem work properly is a good understanding of the PCI bus itself, the code layout, and the execution flow in Linux. Like many other parts of porting, you will find in the end, the actual code writen is minimal.
See PCI Subsystem for a discussion on the architecture-specific implementation and board-specific hooks you’ll need to implement.
Debugging
Probably the most important chapter. In this chapter, I will list some commonly used debugging tips and tricks.
Kernel Oops
ksymoops is a program that deciphers all the secret numbers in a kernel core dump. Old versions of ksymoops may not work well for MIPS.
I sometimes use a script, call2sym , written by Phil Hollenback. You just cut and past the call trace part to feed the script and it will display a possible function call stack at the time crash. Note it is likely some symbols are bogus, but the real ones should be displayed. You will have to use your own judgement.
Linux 2.6 will automatically convert symbols if CONFIG_KALLSYMS is enabled. It may bloat kernels but it’s a true life saver, so highly recommended.
Appendix A: Linux startup sequence in 2.4.x
Appendix B: Credits
People in the following list have generously given their feedback to me. In spite of my effort to keep the list as complete as possible, I am afraid many people are still missing here.
- Dirk Behme
- Fillod Stephane
- Geoffrey Espin
- Gerald Champagne
- Henri Girard
- Neal Crook
- Steven J. Hill
- TAKANO Ryousei
- Motoya Kurotsu
Источник