From dfb97a210474211f39bd6074ebe44a596f997e33 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 11 Mar 2017 21:37:51 +0000 Subject: [PATCH] Working interrupt example --- 4.9.11/LKMPG-4.9.11.html | 689 ++++++++++++++++++++------------------- 4.9.11/LKMPG-4.9.11.org | 235 +++++++------ 4.9.11/examples/Makefile | 1 + 4.9.11/examples/intrpt.c | 220 +++++++------ 4.9.11/img/seq_file.png | Bin 26202 -> 26019 bytes 5 files changed, 627 insertions(+), 518 deletions(-) diff --git a/4.9.11/LKMPG-4.9.11.html b/4.9.11/LKMPG-4.9.11.html index b740832..ba19bd7 100644 --- a/4.9.11/LKMPG-4.9.11.html +++ b/4.9.11/LKMPG-4.9.11.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> - + The Linux Kernel Module Programming Guide @@ -264,90 +264,90 @@ for the JavaScript code in this tag.

Table of Contents

-
-

Introduction

-
+
+

Introduction

+

The Linux Kernel Module Programming Guide is a free book; you may reproduce and/or modify it under the terms of the Open Software License, version 1.1. You can obtain a copy of this license at http://opensource.org/licenses/osl.php.

@@ -369,18 +369,18 @@ If you publish or distribute this book commercially, donations, royalties, and/o

-
-

Authorship

-
+
+

Authorship

+

The Linux Kernel Module Programming Guide was originally written for the 2.2 kernels by Ori Pomerantz. Eventually, Ori no longer had time to maintain the document. After all, the Linux kernel is a fast moving target. Peter Jay Salzman took over maintenance and updated it for the 2.4 kernels. Eventually, Peter no longer had time to follow developments with the 2.6 kernel, so Michael Burian became a co-maintainer to update the document for the 2.6 kernels. Bob Mottram updated the examples for 3.8 and later kernels and modified or updated some chapters.

-
-

Versioning and Notes

-
+
+

Versioning and Notes

+

The Linux kernel is a moving target. There has always been a question whether the LKMPG should remove deprecated information or keep it around for historical sake. Michael Burian and I decided to create a new branch of the LKMPG for each new stable kernel version. So version LKMPG 4.9.x will address Linux kernel 4.9.x and LKMPG 2.6.x will address Linux kernel 2.6. No attempt will be made to archive historical information; a person wishing this information should read the appropriately versioned LKMPG.

@@ -391,18 +391,18 @@ The source code and discussions should apply to most architectures, but I can't
-
-

Acknowledgements

-
+
+

Acknowledgements

+

The following people have contributed corrections or good suggestions: Ignacio Martin, David Porter, Daniele Paolo Scarpazza, Dimo Velev, Francois Audeon, Horst Schirmeier, Bob Mottram and Roman Lakeev.

-
-

What Is A Kernel Module?

-
+
+

What Is A Kernel Module?

+

So, you want to write a kernel module. You know C, you've written a few normal programs to run as processes, and now you want to get to where the real action is, to where a single wild pointer can wipe out your file system and a core dump means a reboot.

@@ -413,9 +413,9 @@ What exactly is a kernel module? Modules are pieces of code that can be loaded a
-
-

Kernel module package

-
+
+

Kernel module package

+

Linux distros provide the commands modprobe, insmod and depmod within a package.

@@ -440,9 +440,9 @@ On Parabola:
-
-

What Modules are in my Kernel?

-
+
+

What Modules are in my Kernel?

+

To discover what modules are already loaded within your current kernel use the command lsmod.

@@ -472,33 +472,33 @@ This can be a long list, and you might prefer to search for something particular
-
-

Do I need to download and compile the kernel?

-
+
+

Do I need to download and compile the kernel?

+

For the purposes of following this guide you don't necessarily need to do that. However, it would be wise to run the examples within a test distro running on a virtual machine in order to avoid any possibility of messing up your system.

-
-

Before We Begin

-
+
+

Before We Begin

+

Before we delve into code, there are a few issues we need to cover. Everyone's system is different and everyone has their own groove. Getting your first "hello world" program to compile and load correctly can sometimes be a trick. Rest assured, after you get over the initial hurdle of doing it for the first time, it will be smooth sailing thereafter.

    -
  • Modversioning
    -
    +
  • Modversioning
    +

    A module compiled for one kernel won't load if you boot a different kernel unless you enable CONFIG_MODVERSIONS in the kernel. We won't go into module versioning until later in this guide. Until we cover modversions, the examples in the guide may not work if you're running a kernel with modversioning turned on. However, most stock Linux distro kernels come with it turned on. If you're having trouble loading the modules because of versioning errors, compile a kernel with modversioning turned off.

  • -
  • Using X
    -
    +
  • Using X
    +

    It is highly recommended that you type in, compile and load all the examples this guide discusses. It's also highly recommended you do this from a console. You should not be working on this stuff in X.

    @@ -512,9 +512,9 @@ Modules can't print to the screen like printf() can, but they can log informatio
-
-

Headers

-
+
+

Headers

+

Before you can build anything you'll need to install the header files for your kernel. On Parabola GNU/Linux:

@@ -544,9 +544,9 @@ This will tell you what kernel header files are available. Then for example:
-
-

Examples

-
+
+

Examples

+

All the examples from this document are available within the examples subdirectory. To test that they compile:

@@ -562,13 +562,13 @@ If there are any compile errors then you might have a more recent kernel version

-
-

Hello World

-
+
+

Hello World

+
-
-

The Simplest Module

-
+
+

The Simplest Module

+

Most people learning programming start out with some sort of "hello world" example. I don't know what happens to people who break with this tradition, but I think it's safer not to find out. We'll start with a series of hello world programs that demonstrate the different aspects of the basics of writing a kernel module.

@@ -712,8 +712,8 @@ Lastly, every kernel module needs to include linux/module.h. We needed to includ
    -
  • Introducing printk()
    -
    +
  • Introducing printk()
    +

    Despite what you might think, printk() was not meant to communicate information to the user, even though we used it for exactly this purpose in hello-1! It happens to be a logging mechanism for the kernel, and is used to log information or give warnings. Therefore, each printk() statement comes with a priority, which is the <1> and KERN_ALERT you see. There are 8 priorities and the kernel has macros for them, so you don't have to use cryptic numbers, and you can view them (and their meanings) in linux/kernel.h. If you don't specify a priority level, the default priority, DEFAULT_MESSAGE_LOGLEVEL, will be used.

    @@ -728,8 +728,8 @@ If the priority is less than int console_loglevel, the message is printed on you
  • -
  • About Compiling
    -
    +
  • About Compiling
    +

    Kernel modules need to be compiled a bit differently from regular userspace apps. Former kernel versions required us to care much about these settings, which are usually stored in Makefiles. Although hierarchically organized, many redundant settings accumulated in sublevel Makefiles and made them large and rather difficult to maintain. Fortunately, there is a new way of doing these things, called kbuild, and the build process for external loadable modules is now fully integrated into the standard kernel build mechanism. To learn more on how to compile modules which are not part of the official kernel (such as all the examples you'll find in this guide), see file linux/Documentation/kbuild/modules.txt.

    @@ -748,9 +748,9 @@ Here's another exercise for the reader. See that comment above the return statem
-
-

Hello and Goodbye

-
+
+

Hello and Goodbye

+

In early kernel versions you had to use the init_module and cleanup_module functions, as in the first hello world example, but these days you can name those anything you want by using the module_init and module_exit macros. These macros are defined in linux/init.h. The only requirement is that your init and cleanup functions must be defined before calling the those macros, otherwise you'll get compilation errors. Here's an example of this technique:

@@ -802,9 +802,9 @@ Now have a look at linux/drivers/char/Makefile for a real world example. As you
-
-

The __init and __exit Macros

-
+
+

The __init and __exit Macros

+

This demonstrates a feature of kernel 2.2 and later. Notice the change in the definitions of the init and cleanup functions. The __init macro causes the init function to be discarded and its memory freed once the init function finishes for built-in drivers, but not loadable modules. If you think about when the init function is invoked, this makes perfect sense.

@@ -849,9 +849,9 @@ module_exit(hello_3_exit);
-
-

Licensing and Module Documentation

-
+
+

Licensing and Module Documentation

+

Honestly, who loads or even cares about proprietary modules? If you do then you might have seen something like this:

@@ -903,9 +903,9 @@ module_exit(cleanup_hello_4);
-
-

Passing Command Line Arguments to a Module

-
+
+

Passing Command Line Arguments to a Module

+

Modules can take command line arguments, but not with the argc/argv you might be used to.

@@ -1055,9 +1055,9 @@ hello-5.o: invalid argument syntax for mylong: 'h'
-
-

Modules Spanning Multiple Files

-
+
+

Modules Spanning Multiple Files

+

Sometimes it makes sense to divide a kernel module between several source files.

@@ -1128,9 +1128,9 @@ This is the complete makefile for all the examples we've seen so far. The first
-
-

Building modules for a precompiled kernel

-
+
+

Building modules for a precompiled kernel

+

Obviously, we strongly suggest you to recompile your kernel, so that you can enable a number of useful debugging features, such as forced module unloading (MODULE_FORCE_UNLOAD): when this option is enabled, you can force the kernel to unload a module even when it believes it is unsafe, via a sudo rmmod -f module command. This option can save you a lot of time and a number of reboots during the development of a module. If you don't want to recompile your kernel then you should consider running the examples within a test distro on a virtual machine. If you mess anything up then you can easily reboot or restore the VM.

@@ -1222,13 +1222,13 @@ If you do not desire to actually compile the kernel, you can interrupt the build
-
-

Preliminaries

-
+
+

Preliminaries

+
-
-

How modules begin and end

-
+
+

How modules begin and end

+

A program usually begins with a main() function, executes a bunch of instructions and terminates upon completion of those instructions. Kernel modules work a bit differently. A module always begin with either the init_module or the function you specify with module_init call. This is the entry function for modules; it tells the kernel what functionality the module provides and sets up the kernel to run the module's functions when they're needed. Once it does this, entry function returns and the module does nothing until the kernel wants to do something with the code that the module provides.

@@ -1243,9 +1243,9 @@ Every module must have an entry function and an exit function. Since there's mor
-
-

Functions available to modules

-
+
+

Functions available to modules

+

Programmers use functions they don't define all the time. A prime example of this is printf(). You use these library functions which are provided by the standard C library, libc. The definitions for these functions don't actually enter your program until the linking stage, which insures that the code (for printf() for example) is available, and fixes the call instruction to point to that code.

@@ -1274,7 +1274,7 @@ Would you like to see what system calls are made by printf()? It's easy! Compile

-with gcc -Wall -o hello hello.c. Run the exectable with strace ./hello. Are you impressed? Every line you see corresponds to a system call. strace1 is a handy program that gives you details about what system calls a program is making, including which call is made, what its arguments are what it returns. It's an invaluable tool for figuring out things like what files a program is trying to access. Towards the end, you'll see a line which looks like write (1, "hello", 5hello). There it is. The face behind the printf() mask. You may not be familiar with write, since most people use library functions for file I/O (like fopen, fputs, fclose). If that's the case, try looking at man 2 write. The 2nd man section is devoted to system calls (like kill() and read()). The 3rd man section is devoted to library calls, which you would probably be more familiar with (like cosh() and random()). +with gcc -Wall -o hello hello.c. Run the exectable with strace ./hello. Are you impressed? Every line you see corresponds to a system call. strace1 is a handy program that gives you details about what system calls a program is making, including which call is made, what its arguments are and what it returns. It's an invaluable tool for figuring out things like what files a program is trying to access. Towards the end, you'll see a line which looks like write (1, "hello", 5hello). There it is. The face behind the printf() mask. You may not be familiar with write, since most people use library functions for file I/O (like fopen, fputs, fclose). If that's the case, try looking at man 2 write. The 2nd man section is devoted to system calls (like kill() and read()). The 3rd man section is devoted to library calls, which you would probably be more familiar with (like cosh() and random()).

@@ -1283,9 +1283,9 @@ You can even write modules to replace the kernel's system calls, which we'll do

-
-

User Space vs Kernel Space

-
+
+

User Space vs Kernel Space

+

A kernel is all about access to resources, whether the resource in question happens to be a video card, a hard drive or even memory. Programs often compete for the same resource. As I just saved this document, updatedb started updating the locate database. My vim session and updatedb are both using the hard drive concurrently. The kernel needs to keep things orderly, and not give users access to resources whenever they feel like it. To this end, a CPU can run in different modes. Each mode gives a different level of freedom to do what you want on the system. The Intel 80386 architecture had 4 of these modes, which were called rings. Unix uses only two rings; the highest ring (ring 0, also known as `supervisor mode' where everything is allowed to happen) and the lowest ring, which is called `user mode'.

@@ -1296,9 +1296,9 @@ Recall the discussion about library functions vs system calls. Typically, you us
-
-

Name Space

-
+
+

Name Space

+

When you write a small C program, you use variables which are convenient and make sense to the reader. If, on the other hand, you're writing routines which will be part of a bigger problem, any global variables you have are part of a community of other peoples' global variables; some of the variable names can clash. When a program has lots of global variables which aren't meaningful enough to be distinguished, you get namespace pollution. In large projects, effort must be made to remember reserved names, and to find ways to develop a scheme for naming unique variable names and symbols.

@@ -1313,9 +1313,9 @@ The file /proc/kallsyms holds all the symbols that the kernel knows about
-
-

Code space

-
+
+

Code space

+

Memory management is a very complicated subject and the majority of O'Reilly's "Understanding The Linux Kernel" exclusively covers memory management! We're not setting out to be experts on memory managements, but we do need to know a couple of facts to even begin worrying about writing real modules.

@@ -1334,17 +1334,17 @@ By the way, I would like to point out that the above discussion is true for any
-
-

Device Drivers

-
+
+

Device Drivers

+

One class of module is the device driver, which provides functionality for hardware like a serial port. On unix, each piece of hardware is represented by a file located in /dev named a device file which provides the means to communicate with the hardware. The device driver provides the communication on behalf of a user program. So the es1370.o sound card device driver might connect the /dev/sound device file to the Ensoniq IS1370 sound card. A userspace program like mp3blaster can use /dev/sound without ever knowing what kind of sound card is installed.

    -
  • Major and Minor Numbers
    -
    +
  • Major and Minor Numbers
    +

    Let's look at some device files. Here are device files which represent the first three partitions on the primary master IDE hard drive:

    @@ -1409,13 +1409,13 @@ By now you can look at these two device files and know instantly that they are b
-
-

Character Device drivers

-
+
+

Character Device drivers

+
-
-

The file_operations Structure

-
+
+

The file_operations Structure

+

The file_operations structure is defined in /usr/include/linux/fs.h, and holds pointers to functions defined by the driver that perform various operations on the device. Each field of the structure corresponds to the address of some function defined by the driver to handle a requested operation.

@@ -1500,9 +1500,9 @@ An instance of struct file_operations containing pointers to functions that are
-
-

The file structure

-
+
+

The file structure

+

Each device is represented in the kernel by a file structure, which is defined in linux/fs.h. Be aware that a file is a kernel level structure and never appears in a user space program. It's not the same thing as a FILE, which is defined by glibc and would never appear in a kernel space function. Also, its name is a bit misleading; it represents an abstract open `file', not a file on a disk, which is represented by a structure named inode.

@@ -1517,9 +1517,9 @@ Go ahead and look at the definition of file. Most of the entries you see, like s
-
-

Registering A Device

-
+
+

Registering A Device

+

As discussed earlier, char devices are accessed through device files, usually located in /dev4. The major number tells you which driver handles which device file. The minor number is used only by the driver itself to differentiate which device it's operating on, just in case the driver handles more than one device.

@@ -1547,9 +1547,9 @@ If you pass a major number of 0 to register_chrdev, the return value will be the
-
-

Unregistering A Device

-
+
+

Unregistering A Device

+

We can't allow the kernel module to be rmmod'ed whenever root feels like it. If the device file is opened by a process and then we remove the kernel module, using the file would cause a call to the memory location where the appropriate function (read/write) used to be. If we're lucky, no other code was loaded there, and we'll get an ugly error message. If we're unlucky, another kernel module was loaded into the same location, which means a jump into the middle of another function within the kernel. The results of this would be impossible to predict, but they can't be very positive.

@@ -1569,9 +1569,9 @@ It's important to keep the counter accurate; if you ever do lose track of the co
-
-

chardev.c

-
+
+

chardev.c

+

The next code sample creates a char driver named chardev. You can cat its device file.

@@ -1746,8 +1746,10 @@ The next code sample creates a char driver named chardev. You can cat its device /* * Called when a process writes to dev file: echo "hi" > /dev/hello */ -static ssize_t -device_write(struct file *filp, const char *buff, size_t len, loff_t * off) +static ssize_t device_write(struct file *filp, + const char *buff, + size_t len, + loff_t * off) { printk(KERN_ALERT "Sorry, this operation isn't supported.\n"); return -EINVAL; @@ -1757,9 +1759,9 @@ The next code sample creates a char driver named chardev. You can cat its device
-
-

Writing Modules for Multiple Kernel Versions

-
+
+

Writing Modules for Multiple Kernel Versions

+

The system calls, which are the major interface the kernel shows to the processes, generally stay the same across versions. A new system call may be added, but usually the old ones will behave exactly like they used to. This is necessary for backward compatibility – a new kernel version is not supposed to break regular processes. In most cases, the device files will also remain the same. On the other hand, the internal interfaces within the kernel can and do change between versions.

@@ -1783,9 +1785,9 @@ You might already have noticed that recent kernels look different. In case you h
-
-

The /proc File System

-
+
+

The /proc File System

+

In Linux, there is an additional mechanism for the kernel and kernel modules to send information to processes — the /proc file system. Originally designed to allow easy access to information about processes (hence the name), it is now used by every bit of the kernel which has something interesting to report, such as /proc/modules which provides the list of modules and /proc/meminfo which stats memory usage statistics.

@@ -1875,9 +1877,9 @@ HelloWorld!
-
-

Read and Write a /proc File

-
+
+

Read and Write a /proc File

+

We have seen a very simple example for a /proc file where we only read the file /proc/helloworld. It's also possible to write in a /proc file. It works the same way as read, a function is called when the /proc file is written. But there is a little difference with read, data comes from user, so you have to import data from user space to kernel space (with copy_from_user or get_user)

@@ -1994,9 +1996,9 @@ The only memory segment accessible to a process is its own, so when writing regu
-
-

Manage /proc file with standard filesystem

-
+
+

Manage /proc file with standard filesystem

+

We have seen how to read and write a /proc file with the /proc interface. But it's also possible to manage /proc file with inodes. The main concern is to use advanced functions, like permissions.

@@ -2106,9 +2108,9 @@ Still hungry for procfs examples? Well, first of all keep in mind, there are rum
-
-

Manage /proc file with seq_file

-
+
+

Manage /proc file with seq_file

+

As we have seen, writing a /proc file may be quite "complex". So to help people writting /proc file, there is an API named seq_file that helps @@ -2298,9 +2300,9 @@ You can also read the code of fs/seq_file.c in the linux kernel.

-
-

sysfs: Interacting with your module

-
+
+

sysfs: Interacting with your module

+

sysfs allows you to interact with the running kernel by reading or setting variables inside of modules. This can be useful for debugging purposes, or just as an interface for userland applications or scripts.

@@ -2430,9 +2432,9 @@ Finally, remove the test module:
-
-

Talking To Device Files

-
+
+

Talking To Device Files

+

Device files are supposed to represent physical devices. Most physical devices are used for output as well as input, so there has to be some mechanism for device drivers in the kernel to get the output to send to the device from processes. This is done by opening the device file for output and writing to it, just like writing to a file. In the following example, this is implemented by device_write.

@@ -2913,9 +2915,9 @@ If you want to use ioctls in your own kernel modules, it is best to receive an o
-
-

System Calls

-
+
+

System Calls

+

So far, the only thing we've done was to use well defined kernel mechanisms to register /proc files and device handlers. This is fine if you want to do something the kernel programmers thought you'd want, such as write a device driver. But what if you want to do something unusual, to change the behavior of the system in some way? Then, you're mostly on your own.

@@ -3121,9 +3123,9 @@ MODULE_LICENSE("GPL");
-
-

Blocking Processes

-
+
+

Blocking Processes

+

What do you do when somebody asks you for something you can't do right away? If you're a human being and you're bothered by a human being, the only thing you can say is: "Not right now, I'm busy. Go away!". But if you're a kernel module and you're bothered by a process, you have another possibility. You can put the process to sleep until you can service it. After all, processes are being put to sleep by the kernel and woken up all the time (that's the way multiple processes appear to run on the same time on a single CPU).

@@ -3513,13 +3515,13 @@ DECLARE_WAIT_QUEUE_HEAD(WaitQ);
-
-

Replacing Printks

-
+
+

Replacing Printks

+
-
-

Replacing printk

-
+
+

Replacing printk

+

In Section 1.2.1.2, I said that X and kernel module programming don't mix. That's true for developing kernel modules, but in actual use, you want to be able to send messages to whichever tty12 the command to load the module came from.

@@ -3561,7 +3563,7 @@ MODULE_AUTHOR("Peter Jay Salzman"); /* * The tty for the current task, for 2.6.6+ kernels */ - my_tty = get_current_tty();; + my_tty = get_current_tty(); #endif ttyops = my_tty->driver->ops; @@ -3642,9 +3644,9 @@ module_exit(print_string_exit);
-
-

Flashing keyboard LEDs

-
+
+

Flashing keyboard LEDs

+

In certain conditions, you may desire a simpler and more direct way to communicate to the external world. Flashing keyboard LEDs can be such a solution: It is an immediate way to attract attention or to display a status condition. Keyboard LEDs are present on every hardware, they are always visible, they do not need any setup, and their use is rather simple and non-intrusive, compared to writing to a tty or a file.

@@ -3763,9 +3765,9 @@ While you have seen lots of stuff that can be used to aid debugging here, there
-
-

Scheduling Tasks

-
+
+

Scheduling Tasks

+

Very often, we have "housekeeping" tasks which have to be done at a certain time, or every so often. If the task is to be done by a process, we do it by putting it in the crontab file. If the task is to be done by a kernel module, we have two possibilities. The first is to put a process in the crontab file which will wake up the module by a system call when necessary, for example by opening a file. This is terribly inefficient, however – we run a new process off of crontab, read a new executable to memory, and all this just to wake up a kernel module which is in memory anyway.

@@ -3948,13 +3950,13 @@ MODULE_LICENSE("GPL");
-
-

Interrupt Handlers

-
+
+

Interrupt Handlers

+
-
-

Interrupt Handlers

-
+
+

Interrupt Handlers

+

Except for the last chapter, everything we did in the kernel so far we've done as a response to a process asking for it, either by dealing with a special file, sending an ioctl(), or issuing a system call. But the job of the kernel isn't just to respond to process requests. Another job, which is every bit as important, is to speak to the hardware connected to the machine.

@@ -3972,7 +3974,7 @@ When the CPU receives an interrupt, it stops whatever it's doing (unless it's pr

-The way to implement this is to call request_irq() to get your interrupt handler called when the relevant IRQ is received. 14This function receives the IRQ number, the name of the function, flags, a name for /proc/interrupts and a parameter to pass to the interrupt handler. Usually there is a certain number of IRQs available. How many IRQs there are is hardware-dependent. The flags can include SA_SHIRQ to indicate you're willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ) and SA_INTERRUPT to indicate this is a fast interrupt. This function will only succeed if there isn't already a handler on this IRQ, or if you're both willing to share. +The way to implement this is to call request_irq() to get your interrupt handler called when the relevant IRQ is received. 14This function receives the IRQ number, the name of the function, flags, a name for /proc/interrupts and a parameter to pass to the interrupt handler. Usually there is a certain number of IRQs available. How many IRQs there are is hardware-dependent. The flags can include SA_SHIRQ to indicate you're willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ) and SA_INTERRUPT to indicate this is a fast interrupt. This function will only succeed if there isn't already a handler on this IRQ, or if you're both willing to share.

@@ -3981,171 +3983,204 @@ Then, from within the interrupt handler, we communicate with the hardware and th

-
-

Keyboards on the Intel Architecture

-
+
+

Detecting button presses

+

-The rest of this chapter is completely Intel specific. If you're not running on an Intel platform, it will not work. Don't even try to compile the code here. Move right along, nothing to see. +Many popular single board computers, such as Raspberry Pis or Beagleboards, have a bunch of GPIO pins. Attaching buttons to those and then having a button press do something is a classic case in which you might need to use interrupts so that instead of having the CPU waste time and battery power polling for a change in input state it's better for the input to trigger the CPU to then run a particular handling function.

-I had a problem with writing the sample code for this chapter. On one hand, for an example to be useful it has to run on everybody's computer with meaningful results. On the other hand, the kernel already includes device drivers for all of the common devices, and those device drivers won't coexist with what I'm going to write. The solution I've found was to write something for the keyboard interrupt, and disable the regular keyboard interrupt handler first. Since it is defined as a static symbol in the kernel source files (specifically, drivers/char/keyboard.c), there is no way to restore it. Before insmod'ing this code, do on another terminal sleep 120; reboot if you value your file system. -

- -

-This code binds itself to IRQ 1, which is the IRQ of the keyboard controlled under Intel architectures. Then, when it receives a keyboard interrupt, it reads the keyboard's status (that's the purpose of the inb(0x64)) and the scan code, which is the value returned by the keyboard. Then, as soon as the kernel thinks it's feasible, it runs got_char which gives the code of the key -used (the first seven bits of the scan code) and whether it has been pressed (if the 8th bit is zero) or released (if it's one). +Here's an example where buttons are connected to GPIO numbers 17 and 18 and an LED is connected to GPIO 4. You can change those numbers to whatever is appropriate for your board.

/*
- *  intrpt.c - An interrupt handler.
+ *  intrpt.c - Handling GPIO with interrupts
  *
- *  Copyright (C) 2001 by Peter Jay Salzman
+ *  Copyright (C) 2017 by Bob Mottram
+ *  Based upon the Rpi example by Stefan Wendler (devnull@kaltpost.de)
+ *  from:
+ *    https://github.com/wendlers/rpi-kmod-samples
+ *
+ *  Press one button to turn on a LED and another to turn it off
  */
 
+#include <linux/module.h>
+#include <linux/kernel.h>
+#include <linux/gpio.h>
+#include <linux/interrupt.h>
+
+static int button_irqs[] = { -1, -1 };
+
+/* Define GPIOs for LEDs.
+   Change the numbers for the GPIO on your board. */
+static struct gpio leds[] = {
+        {  4, GPIOF_OUT_INIT_LOW, "LED 1" }
+};
+
+/* Define GPIOs for BUTTONS
+   Change the numbers for the GPIO on your board. */
+static struct gpio buttons[] = {
+        { 17, GPIOF_IN, "LED 1 ON BUTTON" },
+        { 18, GPIOF_IN, "LED 1 OFF BUTTON" }
+};
+
 /*
- * The necessary header files
+ * interrupt function triggered when a button is pressed
  */
-
-/*
- * Standard in kernel modules
- */
-#include <linux/kernel.h>       /* We're doing kernel work */
-#include <linux/module.h>       /* Specifically, a module */
-#include <linux/sched.h>
-#include <linux/workqueue.h>
-#include <linux/interrupt.h>    /* We want an interrupt */
-#include <asm/io.h>
-
-#define MY_WORK_QUEUE_NAME "WQsched.c"
-
-static struct workqueue_struct *my_workqueue;
-
-/*
- * This will get called by the kernel as soon as it's safe
- * to do everything normally allowed by kernel modules.
- */
-static void got_char(void *scancode)
+static irqreturn_t button_isr(int irq, void *data)
 {
-    printk(KERN_INFO "Scan Code %x %s.\n",
-           (int)*((char *)scancode) & 0x7F,
-           *((char *)scancode) & 0x80 ? "Released" : "Pressed");
-}
-
-/*
- * This function services keyboard interrupts. It reads the relevant
- * information from the keyboard and then puts the non time critical
- * part into the work queue. This will be run when the kernel considers it safe.
- */
-irqreturn_t irq_handler(int irq, void *dev_id, struct pt_regs *regs)
-{
-    /*
-     * This variables are static because they need to be
-     * accessible (through pointers) to the bottom half routine.
-     */
-    static int initialised = 0;
-    static unsigned char scancode;
-    static struct work_struct task;
-    unsigned char status;
-
-    /*
-     * Read keyboard status
-     */
-    status = inb(0x64);
-    scancode = inb(0x60);
-
-    if (initialised == 0) {
-        INIT_WORK(&task, got_char, &scancode);
-        initialised = 1;
-    } else {
-        PREPARE_WORK(&task, got_char, &scancode);
-    }
-
-    queue_work(my_workqueue, &task);
+    /* first button */
+    if (irq == button_irqs[0] && !gpio_get_value(leds[0].gpio))
+            gpio_set_value(leds[0].gpio, 1);
+    /* second button */
+    else if(irq == button_irqs[1] && gpio_get_value(leds[0].gpio))
+            gpio_set_value(leds[0].gpio, 0);
 
     return IRQ_HANDLED;
 }
 
-/*
- * Initialize the module - register the IRQ handler
- */
 int init_module()
 {
-    my_workqueue = create_workqueue(MY_WORK_QUEUE_NAME);
+    int ret = 0;
 
-    /*
-     * Since the keyboard handler won't co-exist with another handler,
-     * such as us, we have to disable it (free its IRQ) before we do
-     * anything.  Since we don't know where it is, there's no way to
-     * reinstate it later - so the computer will have to be rebooted
-     * when we're done.
-     */
-    free_irq(1, NULL);
+    printk(KERN_INFO "%s\n", __func__);
 
-    /*
-     * Request IRQ 1, the keyboard IRQ, to go to our irq_handler.
-     * SA_SHIRQ means we're willing to have othe handlers on this IRQ.
-     * SA_INTERRUPT can be used to make the handler into a fast interrupt.
-     */
-    return request_irq(1,   /* The number of the keyboard IRQ on PCs */
-                       irq_handler, /* our handler */
-                       SA_SHIRQ, "test_keyboard_irq_handler",
-                       (void *)(irq_handler));
+    /* register LED gpios */
+    ret = gpio_request_array(leds, ARRAY_SIZE(leds));
+
+    if (ret) {
+        printk(KERN_ERR "Unable to request GPIOs for LEDs: %d\n", ret);
+        return ret;
+    }
+
+    /* register BUTTON gpios */
+    ret = gpio_request_array(buttons, ARRAY_SIZE(buttons));
+
+    if (ret) {
+        printk(KERN_ERR "Unable to request GPIOs for BUTTONs: %d\n", ret);
+        goto fail1;
+    }
+
+    printk(KERN_INFO "Current button1 value: %d\n",
+           gpio_get_value(buttons[0].gpio));
+
+    ret = gpio_to_irq(buttons[0].gpio);
+
+    if (ret < 0) {
+        printk(KERN_ERR "Unable to request IRQ: %d\n", ret);
+        goto fail2;
+    }
+
+    button_irqs[0] = ret;
+
+    printk(KERN_INFO "Successfully requested BUTTON1 IRQ # %d\n",
+           button_irqs[0]);
+
+    ret = request_irq(button_irqs[0], button_isr,
+                      IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
+                      "gpiomod#button1", NULL);
+
+    if (ret) {
+        printk(KERN_ERR "Unable to request IRQ: %d\n", ret);
+        goto fail2;
+    }
+
+
+    ret = gpio_to_irq(buttons[1].gpio);
+
+    if (ret < 0) {
+        printk(KERN_ERR "Unable to request IRQ: %d\n", ret);
+        goto fail2;
+    }
+
+    button_irqs[1] = ret;
+
+    printk(KERN_INFO "Successfully requested BUTTON2 IRQ # %d\n",
+           button_irqs[1]);
+
+    ret = request_irq(button_irqs[1], button_isr,
+                      IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
+                      "gpiomod#button2", NULL);
+
+    if (ret) {
+        printk(KERN_ERR "Unable to request IRQ: %d\n", ret);
+        goto fail3;
+    }
+
+    return 0;
+
+/* cleanup what has been setup so far */
+fail3:
+    free_irq(button_irqs[0], NULL);
+
+fail2:
+    gpio_free_array(buttons, ARRAY_SIZE(leds));
+
+fail1:
+    gpio_free_array(leds, ARRAY_SIZE(leds));
+
+    return ret;
 }
 
-/*
- * Cleanup
- */
 void cleanup_module()
 {
-    /*
-     * This is only here for completeness. It's totally irrelevant, since
-     * we don't have a way to restore the normal keyboard interrupt so the
-     * computer is completely useless and has to be rebooted.
-     */
-    free_irq(1, NULL);
+    int i;
+
+    printk(KERN_INFO "%s\n", __func__);
+
+    /* free irqs */
+    free_irq(button_irqs[0], NULL);
+    free_irq(button_irqs[1], NULL);
+
+    /* turn all LEDs off */
+    for (i = 0; i < ARRAY_SIZE(leds); i++)
+        gpio_set_value(leds[i].gpio, 0);
+
+    /* unregister */
+    gpio_free_array(leds, ARRAY_SIZE(leds));
+    gpio_free_array(buttons, ARRAY_SIZE(buttons));
 }
 
-/*
- * some work_queue related functions are just available to GPL licensed Modules
- */
 MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Bob Mottram");
+MODULE_DESCRIPTION("Handle some GPIO interrupts");
 
-
-

Common Pitfalls

-
+
+

Common Pitfalls

+

Before I send you on your way to go out into the world and write kernel modules, there are a few things I need to warn you about. If I fail to warn you and something bad happens, please report the problem to me for a full refund of the amount I was paid for your copy of the book.

-
-

Using standard libraries

-
+
+

Using standard libraries

+

You can't do that. In a kernel module you can only use kernel functions, which are the functions you can see in /proc/kallsyms.

-
-

Disabling interrupts

-
+
+

Disabling interrupts

+

You might need to do this for a short time and that is OK, but if you don't enable them afterwards, your system will be stuck and you'll have to power it off.

-
-

Sticking your head inside a large carnivore

-
+
+

Sticking your head inside a large carnivore

+

I probably don't have to warn you about this, but I figured I will anyway, just in case.

@@ -4153,9 +4188,9 @@ I probably don't have to warn you about this, but I figured I will anyway, just
-
-

Where To Go From Here?

-
+
+

Where To Go From Here?

+

I could easily have squeezed a few more chapters into this book. I could have added a chapter about creating new file systems, or about adding new protocol stacks (as if there's a need for that – you'd have to dig underground to find a protocol stack not supported by Linux). I could have added explanations of the kernel mechanisms we haven't touched upon, such as bootstrapping or the disk interface.

@@ -4296,7 +4331,7 @@ more details, might want to do a web search for "APIC" now ;)
diff --git a/4.9.11/LKMPG-4.9.11.org b/4.9.11/LKMPG-4.9.11.org index 7ded22a..6e096b2 100644 --- a/4.9.11/LKMPG-4.9.11.org +++ b/4.9.11/LKMPG-4.9.11.org @@ -966,8 +966,8 @@ static ssize_t device_read(struct file *filp, /* see include/linux/fs.h */ */ static ssize_t device_write(struct file *filp, const char *buff, - size_t len, - loff_t * off) + size_t len, + loff_t * off) { printk(KERN_ALERT "Sorry, this operation isn't supported.\n"); return -EINVAL; @@ -2982,132 +2982,167 @@ Under Linux, hardware interrupts are called IRQ's (InterruptRe quests)[fn:16]. T When the CPU receives an interrupt, it stops whatever it's doing (unless it's processing a more important interrupt, in which case it will deal with this one only when the more important one is done), saves certain parameters on the stack and calls the interrupt handler. This means that certain things are not allowed in the interrupt handler itself, because the system is in an unknown state. The solution to this problem is for the interrupt handler to do what needs to be done immediately, usually read something from the hardware or send something to the hardware, and then schedule the handling of the new information at a later time (this is called the "bottom half") and return. The kernel is then guaranteed to call the bottom half as soon as possible -- and when it does, everything allowed in kernel modules will be allowed. -The way to implement this is to call request_irq() to get your interrupt handler called when the relevant IRQ is received. [fn:17]This function receives the IRQ number, the name of the function, flags, a name for /proc/interrupts and a parameter to pass to the interrupt handler. Usually there is a certain number of IRQs available. How many IRQs there are is hardware-dependent. The flags can include SA_SHIRQ to indicate you're willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ) and SA_INTERRUPT to indicate this is a fast interrupt. This function will only succeed if there isn't already a handler on this IRQ, or if you're both willing to share. +The way to implement this is to call *request_irq()* to get your interrupt handler called when the relevant IRQ is received. [fn:17]This function receives the IRQ number, the name of the function, flags, a name for /proc/interrupts and a parameter to pass to the interrupt handler. Usually there is a certain number of IRQs available. How many IRQs there are is hardware-dependent. The flags can include SA_SHIRQ to indicate you're willing to share the IRQ with other interrupt handlers (usually because a number of hardware devices sit on the same IRQ) and SA_INTERRUPT to indicate this is a fast interrupt. This function will only succeed if there isn't already a handler on this IRQ, or if you're both willing to share. Then, from within the interrupt handler, we communicate with the hardware and then use queue_work() mark_bh(BH_IMMEDIATE) to schedule the bottom half. -** Keyboards on the Intel Architecture -The rest of this chapter is completely Intel specific. If you're not running on an Intel platform, it will not work. Don't even try to compile the code here. Move right along, nothing to see. +** Detecting button presses +Many popular single board computers, such as Raspberry Pis or Beagleboards, have a bunch of GPIO pins. Attaching buttons to those and then having a button press do something is a classic case in which you might need to use interrupts so that instead of having the CPU waste time and battery power polling for a change in input state it's better for the input to trigger the CPU to then run a particular handling function. -I had a problem with writing the sample code for this chapter. On one hand, for an example to be useful it has to run on everybody's computer with meaningful results. On the other hand, the kernel already includes device drivers for all of the common devices, and those device drivers won't coexist with what I'm going to write. The solution I've found was to write something for the keyboard interrupt, and disable the regular keyboard interrupt handler first. Since it is defined as a static symbol in the kernel source files (specifically, drivers/char/keyboard.c), there is no way to restore it. Before insmod'ing this code, do on another terminal sleep 120; reboot if you value your file system. - -This code binds itself to IRQ 1, which is the IRQ of the keyboard controlled under Intel architectures. Then, when it receives a keyboard interrupt, it reads the keyboard's status (that's the purpose of the inb(0x64)) and the scan code, which is the value returned by the keyboard. Then, as soon as the kernel thinks it's feasible, it runs got_char which gives the code of the key -used (the first seven bits of the scan code) and whether it has been pressed (if the 8th bit is zero) or released (if it's one). +Here's an example where buttons are connected to GPIO numbers 17 and 18 and an LED is connected to GPIO 4. You can change those numbers to whatever is appropriate for your board. #+BEGIN_SRC c :file intrpt.c /* - * intrpt.c - An interrupt handler. + * intrpt.c - Handling GPIO with interrupts * - * Copyright (C) 2001 by Peter Jay Salzman + * Copyright (C) 2017 by Bob Mottram + * Based upon the Rpi example by Stefan Wendler (devnull@kaltpost.de) + * from: + * https://github.com/wendlers/rpi-kmod-samples + * + * Press one button to turn on a LED and another to turn it off */ +#include +#include +#include +#include + +static int button_irqs[] = { -1, -1 }; + +/* Define GPIOs for LEDs. + Change the numbers for the GPIO on your board. */ +static struct gpio leds[] = { + { 4, GPIOF_OUT_INIT_LOW, "LED 1" } +}; + +/* Define GPIOs for BUTTONS + Change the numbers for the GPIO on your board. */ +static struct gpio buttons[] = { + { 17, GPIOF_IN, "LED 1 ON BUTTON" }, + { 18, GPIOF_IN, "LED 1 OFF BUTTON" } +}; + /* - * The necessary header files + * interrupt function triggered when a button is pressed */ - -/* - * Standard in kernel modules - */ -#include /* We're doing kernel work */ -#include /* Specifically, a module */ -#include -#include -#include /* We want an interrupt */ -#include - -#define MY_WORK_QUEUE_NAME "WQsched.c" - -static struct workqueue_struct *my_workqueue; - -/* - * This will get called by the kernel as soon as it's safe - * to do everything normally allowed by kernel modules. - */ -static void got_char(void *scancode) +static irqreturn_t button_isr(int irq, void *data) { - printk(KERN_INFO "Scan Code %x %s.\n", - (int)*((char *)scancode) & 0x7F, - *((char *)scancode) & 0x80 ? "Released" : "Pressed"); -} - -/* - * This function services keyboard interrupts. It reads the relevant - * information from the keyboard and then puts the non time critical - * part into the work queue. This will be run when the kernel considers it safe. - */ -irqreturn_t irq_handler(int irq, void *dev_id, struct pt_regs *regs) -{ - /* - * This variables are static because they need to be - * accessible (through pointers) to the bottom half routine. - */ - static int initialised = 0; - static unsigned char scancode; - static struct work_struct task; - unsigned char status; - - /* - * Read keyboard status - */ - status = inb(0x64); - scancode = inb(0x60); - - if (initialised == 0) { - INIT_WORK(&task, got_char, &scancode); - initialised = 1; - } else { - PREPARE_WORK(&task, got_char, &scancode); - } - - queue_work(my_workqueue, &task); + /* first button */ + if (irq == button_irqs[0] && !gpio_get_value(leds[0].gpio)) + gpio_set_value(leds[0].gpio, 1); + /* second button */ + else if(irq == button_irqs[1] && gpio_get_value(leds[0].gpio)) + gpio_set_value(leds[0].gpio, 0); return IRQ_HANDLED; } -/* - * Initialize the module - register the IRQ handler - */ int init_module() { - my_workqueue = create_workqueue(MY_WORK_QUEUE_NAME); + int ret = 0; - /* - * Since the keyboard handler won't co-exist with another handler, - * such as us, we have to disable it (free its IRQ) before we do - * anything. Since we don't know where it is, there's no way to - * reinstate it later - so the computer will have to be rebooted - * when we're done. - */ - free_irq(1, NULL); + printk(KERN_INFO "%s\n", __func__); - /* - * Request IRQ 1, the keyboard IRQ, to go to our irq_handler. - * SA_SHIRQ means we're willing to have othe handlers on this IRQ. - * SA_INTERRUPT can be used to make the handler into a fast interrupt. - */ - return request_irq(1, /* The number of the keyboard IRQ on PCs */ - irq_handler, /* our handler */ - SA_SHIRQ, "test_keyboard_irq_handler", - (void *)(irq_handler)); + /* register LED gpios */ + ret = gpio_request_array(leds, ARRAY_SIZE(leds)); + + if (ret) { + printk(KERN_ERR "Unable to request GPIOs for LEDs: %d\n", ret); + return ret; + } + + /* register BUTTON gpios */ + ret = gpio_request_array(buttons, ARRAY_SIZE(buttons)); + + if (ret) { + printk(KERN_ERR "Unable to request GPIOs for BUTTONs: %d\n", ret); + goto fail1; + } + + printk(KERN_INFO "Current button1 value: %d\n", + gpio_get_value(buttons[0].gpio)); + + ret = gpio_to_irq(buttons[0].gpio); + + if (ret < 0) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + button_irqs[0] = ret; + + printk(KERN_INFO "Successfully requested BUTTON1 IRQ # %d\n", + button_irqs[0]); + + ret = request_irq(button_irqs[0], button_isr, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, + "gpiomod#button1", NULL); + + if (ret) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + + ret = gpio_to_irq(buttons[1].gpio); + + if (ret < 0) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + button_irqs[1] = ret; + + printk(KERN_INFO "Successfully requested BUTTON2 IRQ # %d\n", + button_irqs[1]); + + ret = request_irq(button_irqs[1], button_isr, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, + "gpiomod#button2", NULL); + + if (ret) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail3; + } + + return 0; + +/* cleanup what has been setup so far */ +fail3: + free_irq(button_irqs[0], NULL); + +fail2: + gpio_free_array(buttons, ARRAY_SIZE(leds)); + +fail1: + gpio_free_array(leds, ARRAY_SIZE(leds)); + + return ret; } -/* - * Cleanup - */ void cleanup_module() { - /* - * This is only here for completeness. It's totally irrelevant, since - * we don't have a way to restore the normal keyboard interrupt so the - * computer is completely useless and has to be rebooted. - */ - free_irq(1, NULL); + int i; + + printk(KERN_INFO "%s\n", __func__); + + /* free irqs */ + free_irq(button_irqs[0], NULL); + free_irq(button_irqs[1], NULL); + + /* turn all LEDs off */ + for (i = 0; i < ARRAY_SIZE(leds); i++) + gpio_set_value(leds[i].gpio, 0); + + /* unregister */ + gpio_free_array(leds, ARRAY_SIZE(leds)); + gpio_free_array(buttons, ARRAY_SIZE(buttons)); } -/* - * some work_queue related functions are just available to GPL licensed Modules - */ MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Bob Mottram"); +MODULE_DESCRIPTION("Handle some GPIO interrupts"); #+END_SRC * Common Pitfalls diff --git a/4.9.11/examples/Makefile b/4.9.11/examples/Makefile index 9ef3342..4f8ad89 100644 --- a/4.9.11/examples/Makefile +++ b/4.9.11/examples/Makefile @@ -17,6 +17,7 @@ obj-m += kbleds.o obj-m += sched.o obj-m += chardev2.o obj-m += syscall.o +obj-m += intrpt.o all: make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules diff --git a/4.9.11/examples/intrpt.c b/4.9.11/examples/intrpt.c index d3a045e..0949e63 100644 --- a/4.9.11/examples/intrpt.c +++ b/4.9.11/examples/intrpt.c @@ -1,113 +1,151 @@ /* - * intrpt.c - An interrupt handler. + * intrpt.c - Handling GPIO with interrupts * - * Copyright (C) 2001 by Peter Jay Salzman + * Copyright (C) 2017 by Bob Mottram + * Based upon the Rpi example by Stefan Wendler (devnull@kaltpost.de) + * from: + * https://github.com/wendlers/rpi-kmod-samples + * + * Press one button to turn on a LED and another to turn it off */ +#include +#include +#include +#include + +static int button_irqs[] = { -1, -1 }; + +/* Define GPIOs for LEDs. + Change the numbers for the GPIO on your board. */ +static struct gpio leds[] = { + { 4, GPIOF_OUT_INIT_LOW, "LED 1" } +}; + +/* Define GPIOs for BUTTONS + Change the numbers for the GPIO on your board. */ +static struct gpio buttons[] = { + { 17, GPIOF_IN, "LED 1 ON BUTTON" }, + { 18, GPIOF_IN, "LED 1 OFF BUTTON" } +}; + /* - * The necessary header files + * interrupt function triggered when a button is pressed */ - -/* - * Standard in kernel modules - */ -#include /* We're doing kernel work */ -#include /* Specifically, a module */ -#include -#include -#include /* We want an interrupt */ -#include - -#define MY_WORK_QUEUE_NAME "WQsched.c" - -static struct workqueue_struct *my_workqueue; - -/* - * This will get called by the kernel as soon as it's safe - * to do everything normally allowed by kernel modules. - */ -static void got_char(void *scancode) +static irqreturn_t button_isr(int irq, void *data) { - printk(KERN_INFO "Scan Code %x %s.\n", - (int)*((char *)scancode) & 0x7F, - *((char *)scancode) & 0x80 ? "Released" : "Pressed"); -} - -/* - * This function services keyboard interrupts. It reads the relevant - * information from the keyboard and then puts the non time critical - * part into the work queue. This will be run when the kernel considers it safe. - */ -irqreturn_t irq_handler(int irq, void *dev_id, struct pt_regs *regs) -{ - /* - * This variables are static because they need to be - * accessible (through pointers) to the bottom half routine. - */ - static int initialised = 0; - static unsigned char scancode; - static struct work_struct task; - unsigned char status; - - /* - * Read keyboard status - */ - status = inb(0x64); - scancode = inb(0x60); - - if (initialised == 0) { - INIT_WORK(&task, got_char, &scancode); - initialised = 1; - } else { - PREPARE_WORK(&task, got_char, &scancode); - } - - queue_work(my_workqueue, &task); + /* first button */ + if (irq == button_irqs[0] && !gpio_get_value(leds[0].gpio)) + gpio_set_value(leds[0].gpio, 1); + /* second button */ + else if(irq == button_irqs[1] && gpio_get_value(leds[0].gpio)) + gpio_set_value(leds[0].gpio, 0); return IRQ_HANDLED; } -/* - * Initialize the module - register the IRQ handler - */ int init_module() { - my_workqueue = create_workqueue(MY_WORK_QUEUE_NAME); + int ret = 0; - /* - * Since the keyboard handler won't co-exist with another handler, - * such as us, we have to disable it (free its IRQ) before we do - * anything. Since we don't know where it is, there's no way to - * reinstate it later - so the computer will have to be rebooted - * when we're done. - */ - free_irq(1, NULL); + printk(KERN_INFO "%s\n", __func__); - /* - * Request IRQ 1, the keyboard IRQ, to go to our irq_handler. - * SA_SHIRQ means we're willing to have othe handlers on this IRQ. - * SA_INTERRUPT can be used to make the handler into a fast interrupt. - */ - return request_irq(1, /* The number of the keyboard IRQ on PCs */ - irq_handler, /* our handler */ - SA_SHIRQ, "test_keyboard_irq_handler", - (void *)(irq_handler)); + /* register LED gpios */ + ret = gpio_request_array(leds, ARRAY_SIZE(leds)); + + if (ret) { + printk(KERN_ERR "Unable to request GPIOs for LEDs: %d\n", ret); + return ret; + } + + /* register BUTTON gpios */ + ret = gpio_request_array(buttons, ARRAY_SIZE(buttons)); + + if (ret) { + printk(KERN_ERR "Unable to request GPIOs for BUTTONs: %d\n", ret); + goto fail1; + } + + printk(KERN_INFO "Current button1 value: %d\n", + gpio_get_value(buttons[0].gpio)); + + ret = gpio_to_irq(buttons[0].gpio); + + if (ret < 0) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + button_irqs[0] = ret; + + printk(KERN_INFO "Successfully requested BUTTON1 IRQ # %d\n", + button_irqs[0]); + + ret = request_irq(button_irqs[0], button_isr, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, + "gpiomod#button1", NULL); + + if (ret) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + + ret = gpio_to_irq(buttons[1].gpio); + + if (ret < 0) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail2; + } + + button_irqs[1] = ret; + + printk(KERN_INFO "Successfully requested BUTTON2 IRQ # %d\n", + button_irqs[1]); + + ret = request_irq(button_irqs[1], button_isr, + IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, + "gpiomod#button2", NULL); + + if (ret) { + printk(KERN_ERR "Unable to request IRQ: %d\n", ret); + goto fail3; + } + + return 0; + +/* cleanup what has been setup so far */ +fail3: + free_irq(button_irqs[0], NULL); + +fail2: + gpio_free_array(buttons, ARRAY_SIZE(leds)); + +fail1: + gpio_free_array(leds, ARRAY_SIZE(leds)); + + return ret; } -/* - * Cleanup - */ void cleanup_module() { - /* - * This is only here for completeness. It's totally irrelevant, since - * we don't have a way to restore the normal keyboard interrupt so the - * computer is completely useless and has to be rebooted. - */ - free_irq(1, NULL); + int i; + + printk(KERN_INFO "%s\n", __func__); + + /* free irqs */ + free_irq(button_irqs[0], NULL); + free_irq(button_irqs[1], NULL); + + /* turn all LEDs off */ + for (i = 0; i < ARRAY_SIZE(leds); i++) + gpio_set_value(leds[i].gpio, 0); + + /* unregister */ + gpio_free_array(leds, ARRAY_SIZE(leds)); + gpio_free_array(buttons, ARRAY_SIZE(buttons)); } -/* - * some work_queue related functions are just available to GPL licensed Modules - */ MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Bob Mottram"); +MODULE_DESCRIPTION("Handle some GPIO interrupts"); diff --git a/4.9.11/img/seq_file.png b/4.9.11/img/seq_file.png index 4d15a3a1672be847f9e61c88401235eafbeaebb9..9dbb47949d31026d595b5b0d288455326335c8e0 100644 GIT binary patch literal 26019 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 literal 26202 zcmeAS@N?(olHy`uVBq!ia0y~yV0_HLz_^=(je&vT!>YfF7#JAXlDyqr82*Fcg1yTp zGcYJHc)B=-RLpsEw>l=I^d9?%^E}3PL}w z{5@gi)n~I(cPyQ)`Z6jkYtzmd)7R_?@K;*)CCHms;-K^bwuKz0avyyE^UzrM@RpnO-;>zo=&NROWM@=^ZWDe z?(&pn3tW9959{O1P|*y4};+(V=oI#mB`(#Sqz+o|7{=Iy{nm zj=8wF2qhb-DJe~om~1F0IPu5~f?8B&dQaC&{PW}Ej?&j+3=fu0k2};SYpv4P)p6p} zj2=&+<$iMyO;B_ekd*A~leK1Icy@MnyQ=rJgrA?D3c0(xq(u503p;T0rsTqf3)eoY z*q(Ry(2l~#AAUUUPd?bhdh2QJ?{BVNUR+`8VmhBZc_L;#Z%R~g&ay22=MGnH8A?t* zx;AdF)b(|-hqc%5S+qUxKm%jNqfYe?kGl1p)`oct$O=w;YA89`l~Zv;=4CaT9}k*e zTw6Q)V6K|qoQ^$vY~I}7e*Vx!K|#;vlRJ7>tyyzKd;OlKh6V-;E2~Ap%l#zG^JL22 z-|L+oVSjxckX;mLvc}2Mg}f!Zb5nZ{(F0?4_~_`HrKlR*b>jl1+T7X z&P|^6tJ2hT8z}5QJvsT}!b0Xdckdb&Kl8b>qmWr#Kkmqm!p9dDIme= zd-b=DPv`!BhWc@PI!;bjKYaD7=(~6CI{NzD{QUY(K6h}@^_cLa?#DxRMu#WQpU?g? zZ)fpyE^%@3k8ii%@3Jm`*O7gFUFXqmac%}BQ`6A&XmxdU!=fi1&A)GMPVZ+>xL5I* zH!vnfhl`v0=&sV&EiroH-QxP!Zr2@Z;bdyy;O7@#xpL*BZ*Oluy0J0&(6M7~B4T1@ zReSvH|AtiCBzt*zu`mdViKSgizj)!JPv_1B3mm?@y6Ro>_EzYd+uQx8Oq4|4xRFsxk z&J6{I4)M4O$8>q$&i(HU)qQ3t^vT(3ojP^uNFy_QOLKEG2PbFdCrguMme6Ds!BI}jetBLM%2QMym7nGLnPCnk3xq8{=O`8m|u4qjDE-WkCd*w>V z-lxoLJPxI$rsw9_W`C%4Zs*GlyCW(p%D}KR=;nhmu2!a}PoJK(YBM~RbZ=|6_>&^b zMT-}gPOGk}Qqs`iu>bo-_|vCP3?~0SXPud#=v)$)ee3dT{rC6wT61x6&62H;Ra8{8 zTEBPiUPg!f|1K$YIe#)2Ut1sF|L|~o^66>161G()3<^3rJcWgYGb{=ho&2q-sd;dg zY4(IklbZJIvAMISGC2M3TShE=OqOW*NZ8+Q2M!G)2>4UPqz znL2fZ{K;ov13NhZJqG&@RYPP zrXA5wt<%m(Q@x`6R>2G_# z$F1t>bhmJVMR<5*Q?Ra9IoC?>`xEiK(6Wy%FAPH*S$?_IP=Y0C8J%BH5G(q=gsWiiM4 z*ze>rxi zS@HMl^@%fPaI`vITyy?)TyplwAG1#jJ$Fd?s&gl~hbO}?|8nqhzs?;yEDG<}e&=*| zcfYtYSluw^hQY?d$8Leq(W^J-rll?8;N}+g^Yc4&`*!ql_2R_Dg&p19!uRgob6OeF zwJvsd*Uio8-P7Z$JQ)NSTnY*{c=-EY-?#2}x`*>|VW*Di@pX|JB3z4~OA8At?<#+< zw`$cYpI*?vq+0@h|AS=5ze34Du;UH+o9 zh{IV~n=Hh|#oyfA%pPC!k@ed8`1P^#X3y^SoUE33a+0dg5to!uP=(se#_Qzf#`f*~ z{q?o;3WI`#Ky~9(?Qky{S;2{^g>wu&mzBT2cVlgnkfl$9O(`T02` z!_lKhKYaPp5_67=TS+PVP|BUAKY#yjEPEUEHv6n_-Yd21w{AsUxppmU`T8~4_xIJR z^{-V`TJ){ib%U6Qtn6Cj=!pVMSFc`Ov1ZMcf1%;wuT_$E#`MMQtzu+IJ2xlu8xu`CrIn}G=#RbOr zx}U0cf4>C3JuKYOal&fj*&VD?rcY0Pe{V0S3ixo={JzN#7p0vseTj$L5`TYt`{Lf- z-K>jMlonmf z@Ao_FAHRP;?lr%6AlToQRa{(r^0$X?-t>sa*9aCrJJYy+{rZ{8AdP(|fBe6@tCZW* z(=%dwo-7v^mw>2fYyQ5UY{|!ZGB=3ioLLpR`iy|8px{>bu=zdfn1y*C%{_cJ{@^#q9TLKKq`TZO-4<*B8{@W?TL3z}d6DuM9e(Lc+qP zT~QR+S`{|AXMNn>F7ta8%<^?V6nB-s@AI8)miX(-%K(k2^X?zMT=w^tWfBzhbWm#% z2x3q4J9_kJ#MUg)YwP3r%gf7kqPOuBKRc6I@-HK6f1iwH(}oQOPo6(t9KAg+sNLCR z%d)Q`+|d!GrKV;%HyWR4M1C2MQxz`#HW<20T>fBsCEIkR(X_H`pcVZp%F*YqY8hK7oU zt%+!4WM)&ax0heJa^;Pk#p*RRHB0z&3;z9lgD-d3kz5LP8r#UIvw& zQ&L)Fw)E_@9&ax%gZh6pEv>B!-TUP%s=uw-wpmP2FfjU(n)k8eeX@spB#i@NVtV-P zelUD~b~gLkpNlRoE^8fUYe}xYnziTKt!xfnUf2C~e+$07i9B-b7}#C2ucdh%6W5D5 z&?9MF@ac)?n#j#;A3uKdIppGUMQ=;zq>t+JYnuN3{k?e8CLwkIc}G5-+tFfBdTn9UUEKmR$`EuK)FN`H#=@ z|Mx6(ZdX!PZtk4X(Q#{U*wmizwNb5+o6{b)ipM#4d2v0TqNb#@`hwP~mDyQY0`l_x zOO~koc^&`%(4U{5mx66dQt>|~Dk@s>YUT0`)!*}SZg1oDxBI!|ilU&PVC0k~Cx4uq zYu(Y+bx42zpQgj@{K-c;1cTa~U0hT+Pfq$c*Sg#w?~cVB+iJ0uD_6d_zkh$oLIFWR zPp?UQF|%C$oYvp};KD*@pCc|VDOYvo^~~((?C2V8Mg+y6fU3ac;w zb!PRb?(7skc<|sfD;+_> zz}4v!Q})#UE(1l|kL&yYwQ>rpMLe3|;^LCqcGJ3`_WRxP8Mf7CLPA0ophPf{G0pcF zD=X^^qg1YA{qp_h_bLw0X;)HG%G!KpTF=!i(`7z0oBCv}AKm}|&pgFw=1x9W7ndu` zX0AQ^xEQ>Gj^c+fF@?&{Urzs&_E9^IN@^zY5)^BeN-+bvnP?9j!F8&%7FujpL8 zdiBNC)zi%wuZv1ZtoVHE{CWP!$jE72y&WE_kFHwT-PN@rCz(UMy^n%G&Po z{m8w0a>D9t-!^_rGCfq zl$fxvw*CMAzMo-VZ&y=W8?B|bNX)$EN5PjD7oGEW#^@bCF;V&A-s*DBMM_G$UeBBK zF*<*5YgZSSPVBBNOCKp3anJN=lQd3y5gK|r#RwEjLaweZCE=SVf4sUn{Nwrhf5P6= z^;&oDuJ%6Wk|K6&)hc!0St^buE-v*MWkzw^^JJ~c-gK~Xi)~4Q`i73cgeA9qd(3tsNm8nu><;l{07Nq2S>3c0(uTMPHF{P>aZ;lV+MhE8GiLnlvqKI-V`m^HCyd;a~trY0tv|9?I|>u5i*#>>kK z)Zbw^up#kq!S8RmnaoN`ObWtI9n1D8nwW^(yLa!#zS`Y8lazL;r>3R`tPHWJ|7R1T zB^sh7x@q&~g+VI=A|h67ul@e+?!(uwx#Q#Gzr4Qg|NQ?=^`;J;1mDS%3ghDBs=mGH zw5|T8prv(cPNSgdidCz)Dl02boIQK==H~RmcXuqGJbR{OZZ0maALo*rtIKfU^l5HK zN5>BzKVJN4UH(qStxslUt^eKHE4BM)&z5FlX8!sO)X@ECxX|TF(5z`a_iMk${`vd9 z{`l9|*Aug|v(Fvq2#AgC)ec`5VUu_-dl5euS5oJ!j#-N`PgcCSv9X}I`0%#e+h-(2 zA_ccb^`4%tpFKJD?vdG3r!KAivT*in>6)6FFO%{d92#7$6GOwolF4KJaYhN3uaDa+RlChdFjDsNW%K!r@iV@jTQi%Q znD#zd>bVQlVf^Q@t+c$m9jm=6Mo2hW~!OUcaOGIUmE{ zmermfe}8{(@9yqClAd5^o_ELKhx3y&GmSz0zJl^Q#r<-&Jl7b$yu8eAG}GtNW(6f< zLtDxH|Ns52`1y2tU`))J`1fIJ@`6^*uGqY3Q$Sc48^ea}+plk%doADl>!(kXe(*%i z|J51wd1qRB`r<8HL>Lm%)7#(O-7TFXoxVsd>$8vlvEt|Fj<#}(gW7S$?5;w|MH#j} zKR-Tx^{Q)M?Qf|!9>?VEU2>aVo~(FrVWEU&kqW4LSj_G!R@?*H-ey()PA0`jl8Kr5tgL|Kg*l!YN=ix=oUAVc zHAHT`USyX%dCiigOAEt{l#GovC0B=NmAt<S=(ntxkl`tb>aSf z`E%#a3C(Ans24oT>(zJP2WwJXtbDSK<&4vKs=mHz^_^`NskFkZe{OomyIqx^)ryLW zc!iEI_06QJi|-YGeHEH>Z;zy=rsj!r=h_x8RtEJ<3LZN7%(1xm z;`glP&65I?`(&-#9v*Igty5fBc<}6O^R4U4-`-kUoa^T5n)v?SUa{_tt!o-HTtY*q zZrHd{@Z`ypy}7sEiHM7L_w?{goHIu!uJ&uFps=uVQ*(3c=FOWK6c{+FtE&YiBs7we zl3bjenmoL`gxL9H1Xx*FgWB^;y}Z3ajVqUskdW^8zmIeZ->Uz-V~54!+e?=(=PoZV zZ+^Wk|GpkWM@vf!TfeBBoSs?UofX^vJUKa;sbPjeV$;b&^RKpnfq{n(A9j9ocX#-d zsZ%?-#q~NeFE5)ZQtrL#_ucBxXU&hEnQ81=P_W^}g@w)E?jJmN&hN*MA001VWXydZ z=jYeAV(r?k5o=QF>VKY&XJPnwCD>mwX8!c)>buI`YU#!8$#{4o$|q^D><%t2u7Kd+ z=6SZ&v)-yVPU$&owlrvE!Ru?f47)b_y1KY1n3-*h{clxXR(9+_BXi-C6M`$9Gldjc zva++c?yZZSHFvHosO2_gO3Q~21)vI7=lH~^q@+dPDxdoK`TcmYxc|f7@As7r4F$W! zbe*Q_#h#ICo;_Q-sks?60=E5Jz}hPZo7pGMoVju>=YusVZ%>1U9q#Tfe>~aW?qK}? zU*R@iE;w7g7T1gEXyq1P6uv%A$hG3VkJmAV3u~jzH?t?}`L5-Ywk%rWcPMpt=xxw= z=aVN-X5{|=_U+q^U8UM`wO;~{96hRNVIfghSC?izPlPA*{momqlne|6e*XM<;?${4 z9!7Z{$(_6EE?+#@%zm@x3J)tQ>)L1g-oJa-2O3=gl?>XB z*5&KY+TYrKF=fvD`TRR$`279-y^mbZIhHp2(jUfMvaU@{O`sOzw--y)Dt|m|-aJrecDucCUnW znNC(#mO=J49iMqNk)Li|v@Cx1U~#{lQ&f}`sPy@B{{J6-EiJ7NcZ$y^US8&V>&cxo z)3Awq%icykeEBl7QS0-u(2$UhIdfz-R)5d?_-uB5*Nqzyf`WpIH8nLYK5D`YElvvs z?Ck86l$4x~96Q!!e!nJIMP0qyIQ<;Q)+pVtnp;*(nIe+=Tasbo%$b^?w7%SL?v~SB z+}y1KPJh1L&VRJ?`8?shRbPd?mIhT+RCII-t9MOS_s{zN{oC#Q*Khnkrza;Xw+JL1 z?Gn9}s_fo(WncdPe}8X1ExqmS+nN9PSg+OXm>mU;y45RI2%Mg-FaGb}ze5KPI_}uHv-8D^jE_&J$Iq(qonukxv}4B(4#k!g zD_06moH&uGVTN`2x^rc@d(YmO&~N`Qf~+n|KIOhzl&)8`Sba_)4~7_b#?W^mzPvG*8D7LetTlso%bynGpn7sJ#$PX)m2nF z4mPt#D@iD}2uz(i^_Kpz-S79Uo?P&>Xy>=?hfkj_onByUWOQV%b-9jMb~b3Vn$e-9 zy}kR&m5{>U-*OAz+%QZ`PFCjP=5}>-Yy>rgU)5lijUdzdEh#?Cw4Id*bX_-yRvuO|f_TO-@F9R-b&brMI_t!s(|;H#Q_HX=-{- znKC89M(=F7xrs?gMO9VT>+9=ZugO34cb)1xUfm;G_+oVL<^|MmTe)kl;j8mzOIK<= z$_eiE_V75cB5*MS1Hau5g)3R63<=-f+}u&}a?-ZF!VFDKO&@+fpTD^L{k@8JJD*RO zI8iaOru6Jw>u~ESib_gMfq{Xb_IyA{2n#=df12#~3k#h&xVR3@Fid7(;N#=F#iw}o z>BEPOPoAWJ%9&f=9yc^Jq`hBnTJ@lj{lZdjah-?_44j;tYnT1KFv&vurhJRQt?JL6 z!s-QoeiVY_1O){_J*{~ak2t&UOpmXAYx?HKMrQXunS<5u_b$KQo_KPSs@nbcXA1K( z^d?U#yuYt@_MYUeQN7*b`c6xO9G3UcX-7$=Uhg z>({IQW_ycgWgC>d2xvZC{`MB@&X_(>3IBB7ym=sR_}l+&*|Wz6)Ge6whLAE?3DSU-N+xG$xaNPNt=$<-oCHY>|O2)d{pC8d&UQ>RVKdS5=P`T?km z{Quwg{Tfi!m#D6;4hnowY0btXv0(c?&F|L5cco_? zUcwiXn3$;c{=@eBb%+1`{ayIr0OK6%az0RC*-eN$eDEOS!-o$mzFc%S%($TN{6k<9N4V9mtN!|@Jp1Lya#2iEO{Ch6P z`()p1>P-r3=aV(4_>jOOXA`koM_->`Ybuwz-<$*C@wKg6wwR=(r-R1Ue}8*B*&yn$ z&)dj#D zYAvOHyXs9p4VqTizUSQ>fKT$1=EZu;E0Yjvk& zyekz}_shBZeb<2l4!KFjZVLkzY}+R0wN&Wh#fub=!Sy{bOiLS4&-}B>9cSmn8Yr*zRMSJ`BbbHW5#naQ% zqfs|e0xT>o6YuY<{r;!5xUB5hxw+OKA2jnn`uqKU z`|jPl55E2N?QM5M1A~lp8IRV~QwfKB{rudXpPO6w|FP@eNZ49{zu(QZ#af*jjnmJW ztjxN3qnc;y%gG-rx$AyD70+GUo_4S4n?>M+WxpcTCMTYmVF)S?+C$&(*Y|@e_r2fm9qtfR z2DQij|9Nf?nmPG+(Ov%KpC%cb3WH0RFBd*NC7R1Vb(gQ`#EBCt-tYbX;a>IoL{NEH z_tz?}?q_Pr%S*1-ahtbR{(8B5W8Ph>AHRPuUa|yS5VQ#V_&opr9i`v=TwG2;K|*O~ zW?Xzw_I}T2KF~1H#^mEkUte97FwGK)iHRxr`>XWLt*zYN({v8*|Nl4tr25R8I|`M> z^kO=Getw?(_0`o$$COx;`FB_pKjT>!yPM6Se9?jh3lxqVIkM$8dkko5{AtmZYuA)i zR9J$S`5gT6^78Dv{fFm(68iVO2UB>zZndlVv4LU1_0pKEt5>g9J!VQyN^(g^SP-Bg z0^uB4y?);+*}Q?llL{5Xx9oBQiGX&ITElHcj`Dv!Ompw>IT?w9A88HUbZ-rbG9aq}i;baeE^ z#qRu|uEV8Emw5IaKY8-xgY?W7@2|(#=YFd;0nJOx$jBUdbhKOAX8N`@ixxS}u`G78 z{$F}GamuXot}8=cos9+!R!*Ee`SQDGx-0yRw|J^e?o@Pc>nMGFtuy=jI!~#~?D91U zAAYS}x9-}_b60-f-FrtmDk7=bKlj$YTI+dLuQWr#!nVzfuRJSh7P@`zti#JXZt*7{ z?tf*MEoor$N5jBC;NQQ0V((k7MET6OlXY}-oMBa}_3O(^*?Omm-uP8=LWt&`BSXj7ve)l%bSAE=T)^FM*^z-LWw%aRA_b(9TVy*i2CbM8t zW%fT--;})XR)GNy4i2kdCb*<{G+(^}nz3?obDLc~CC>XYkGbJjMUk)8lRqkoxGXdL zV$i-h{k)R3b@c7syYrTx-DMha?S}z-mbuirWqJ9kkDqPYyxBP*K%l9q>B}`qsb>>r z&+fjvyIlHBY2^N2yZ3(GrIOXNFi>dc&Yf=Vo;}j$e!uTlK4@gO@M^lXl+F9t#fuj~ z!vIlHxYhrwGpd+5Xl2N)j~!)YWuO_QgJ!R`*~v{@GkxJt=Az=_(r5eyrKPU- z_tjd~GYD>2b}+>z=?Djpv>6X5H|t7H2{kYa_74l2Ru*PdU0wZF;@CBtVE)ME%g&e` z&7QHskyrh3LjwaS8ct8w-<}c>c0OX|qwDeYN9S6XGf2#vs$*av@b~w3^Gd(SMaLv& z=e{~K)A-g(A?d8P#J7ACJ#VDlktz%`+N5&M%vHs9v1+m+OHOX?$CK*w6JA|eIjygI zmdDz#$Df{_X7e^&_QmDv_wU#3LOX8BCp&+)P-<8aY7l3%uk^Lpl`K>5W4SF(3k`1Z zrRVfKTRy+;ROHE96Q7+iTPoRodgCXTOGdxWYU}B-F)a39uyEVqE0HH(-8=C5yjNPr zE{Ah*DV1OABMP@^F8X#b!}Ketg`()(rl79gzE^H-h;!)dWoNv^1OyJOI-9oR`p>JD zw?zVHC+{);+Q`ffS|22Bo_FBt)vK2p1GU2g0~_bekvZp8#?N!sY^mp-S?+;F+ccF{ zC)h~7zp;_|@^XLo&`{B8ub|0yUKh;xcE$Sojhx_RJi(81f?dK6R~X&fkjOkuH@a=n zA|-Ej*S8VXbEfue_7%Kno3+E-w0>%^cXkd>>0g!F4-XtCr>SytaWze!KK*zP%F8Ae(jxP~OVMgc7TwR0=<9z=f;?{rg zOm(CO3M z)Ai%s%F4__v_#L%w_h)NZn@^eUq62?jNf1P;p^Ad_3QP2eSOWIpP#SkKfU9Y`s0%o z_x4oosQGEM@8>gVZ+6!!N>{Q>_2Tw$O!ZpoyKC0|rY0uPY8iFMY@z(~^K5VXvKuL7 z3HNN5oIY(@(F>NXnOv<*e}8>--e33EpzKY=+fT~weW1k|pb3p@YiG9z3JKm#{qnp% zGE(xnmYR~%CWgf)XQ+bKp`Fe!klYMfF_u!dW*K;4*y@$wRb-RE>%(}|9^bkZb!TUB zJ6JWh!Hk~#`}=xt-HMt9S~;e3Ai?OG&#CiZ#Xlu|j?G$rVFSc8-f2BEK}yc_Ll&R8 zSr;%iOrAX1wOLU~X_Fh<pWnb;@L)Wf}<>lppy7)oC!Dl6O1p_}D zN(Qf1oql>_>FcnH>gwdn%Y1L_D$QQ}erMTRDJLhV4Y{|?*2L}>b9Ht7@$tC)!xt|) zE-rQlDHH3M)3G9RM$gL7&mTTG6crgw@lt*C=+T6kGjBfl2CBhZxy3)c+x=e2%1TPs zx~ygXeEDs;x7qad^^Y7szIexu8%`I61!uO&?pSeE+AK#xNLU!u13hx&$bvn4?!4Hh zsj11(uwsSA+^1z_WuPTJr%sSlkL*SEH6Gk_v|ZQr2_hdzBOQcKP%HOsx#61?0m@$<8@Z0r3&p}%9t zf+b5>mM&dd#rgBs*VhaUesirNRpOMCf;Xo4EocGq>~YYBv--bb51l zxA@YfOHZ6TcWg`M<$|xTLf6FZo~D|tlvR48u{(lT$!Y(4_~=3d{WG_krs6 z2Uh<6{&Oq}nLyJuH8nP%RdyvW0`Baql?KfL@2UKJrc%nq<*bshQ^zmv!-o!mItFWE zcZYS&=s5H0#6)EdZf@tgI=fw^uhmK|TwJny?6!7Zz2f5HGVP!lD1&uM`W%}&b?S!A zn>Ux}xVX54olG!Vw`x_>+O=z!CWEqq7n}Ou73Te6S zZ3|1kdv><@*8lpGPa34267g<#cVRi;VQT7q?8>||GYpy8+&;V%a7wtfB~z@cqr*dd zvf1Q8jrJ*X3ot&frU4lQu5ijutFLB(#*u_vU0h10Uz}vPdgaQ!l7>kw=YnTFDYA6yk!X~&t@4l%6%_P7mg1UX zB$;+@&dR;pQjH`*jik=SN=iwy4I^j%3ccEI|8GajMFGLPN3*gvX)&|$G^}5*&!Avr zB=qjxJJ57hN*Xg+p1hQA`CV!II-B|Z zepfhVt}xHc4+|4xVqz-z^(7PJ$DpIBQ=y9vRvuQ!3jF!=rz#nfL5AfTjlFvr6W1nb*@z@mvbAB zV@isORoNR32GDA{X*!WjPft(x2CYjni7;9w_V~@4o(mTO7QfEFyQ{VE@v(;=kINr# zV&&d)`uDfD-BYHBtclqvbn@g$-7*`^t$r(CnUte9_QTA3UuJWnq z-cn{Zo&&=EHjU!(HG#i_4^A?SY!P6ZZI*kencuD>@9r+iJ86%Obe=eU`tZKm z-#Q>CY>6<+J6!hm7VAu(Wq)^9d{k2NpT`p(9=>DuZe=SgDN9Sss`uJDIxaOeHdWu> z@kU2Sm%O_pIa$s3(8}QDTW+_swY_>%4PGwP(ZMnIsd@fA7nC)@Z>?IL7T&%8^78V+ zzrRX(Bn%F`_{k$P|Qe9nL)#}9<7KE+dn0%bC zN79&W-n@AQ1qBZO|3Ow*l`pg07`v;4bF#X>TRWfZgLm)xW*VnII@T+_qvE5|v0mwR zK3S^+r%!W#esd@9CoJb7gb!b3aCh6<1&VT7BXSd||Ko%UWSI z9|49V*oO$MZi|VCbj0ng>I5yUtNs10^U|fD!e?hB1?A-Q-n@N#^x|Uot+(e{m3moN zT6Qurvvq9RWTe<4ASx>Q=pehi$nEX<*Sim&Jn7jZV|gh7wBBJQWNq-`=Yc^%N(>zv zHW*Akw|n7Z&X32R3(3jp1qBBmeS3TR(T&N+K_iA5IyyO*(l@4`m&^Tg^ytw=8#V;2 ziQeva;%U*wijR-dj+6E3(vYpqBCyIJq@jmwd=lOaThQQ!pWmku=w{ep{&azrJP{NC)?+ACaGbIy}BMwV*cGuG_Zy zTL)+f@mtV}Gtj!lNs}g}9o?3H-)`jkBxy6)Him(>nilTnldn$JaE0PK6O-norWHmjgA*slA#?i}*>(i%C1)rb!&VBpt&d$qgZkQymHGNWKnUjC3yJrn1{jR8z9--@JMA;MFUxR;R{Sud+B4dH(%<>0f`T z@_zaK+V)A4gucALFMrHc#I_kmVbfu^!R>w0#Vzi(@9W>)i=(QxRH)86maR#uBvt@8SP z>;8Rt`MMv93=jVOe$UR(e07-=s9v~jwrt_!nTM{NU$kr)TV`hFhc911rIS_pyET93 zNvsaqfBi<3(Z6S#j#vs@jCGrAxO&a4<)N#?7UtjIH^Vrc@7w$P{gWmMiHM7X+P3TW z|FaSj7T)R{aq85m4>ywgAKop$@0yUHQ1$&?ul~LtOsuS|puH1cR?T7Om+N`+CMRZR z5$nsBFHf93>lzUu(Xcyrb?mMZ!>Cnk3uOC*B_%U2?KCObGwqK~PEL+N))kGI-DSM_ z`~RACb#(>A#r0je5|VRc!$BSRqU1&Y!}oiKdwF#+D6Cqw>dejJ9-fS>_m{tXDPeSY zp8xXFQYVgu+ikS8yngSyU;jT=Cu)nwj~_ocmIi5BmA}(bQdU0N$jrXw_L=$i@z4M6 z|MRIElvi)R?-JGC^8VzRGa`wJiJ;XY71hq~!8Y*?^z_Mb=&MHk$whv%l|*{>FH_ERF&hxfP`OPUV@ezm&K_lZ8F(wmK+uwT)jQ@v=~FV z_p#VrC62znyj|Vhs(oD@Yi3?dIWx&{t2?Nd2wv^X&M$W*?*0D1-)2uq6r4CUIX`QY z7N|;7OJJ}ldn3W1maH^MZ1u{MSsaQVKr>_Y8C;4JCQV{$bvl^h<1#7f?{$F5yQlEM?0+(`2YOaA@s?S`#euSPBl&{z8pZz;F8mAsIU z5Cv7$qc2QBj?)fb7h$2Lw8-8-GI;m)>hF0|rcXED;Tsw%YGh=jBO)j`Q7mo&^OUu76;Al`y&ayvs`t-!9Q(5)(_1|uK^(qUr_ef4oZo=uO zprt)|_x5x?KHl#wp(z+?92OkB8Z;9JYJ5qXWC&QNY?sUF-m6ei`qM)zOAH6-VReI(1a%y?%RRqcX#TYipywZ;@A8^vq~R&)c_ed8c`G z=o~zEj_=*OcOG6|n>?)7rG@ETV-uVhGNWhZ)s5S?AHTLXT5c)Z-xivFiq=N zl4c-jZDC;`IeCd(-H$}j`r)NZmv(e^8ovH|BE`ogDEZ`!sI}qowV;9dA3vYZ|9GeP z{LDX~QcM=K?&1Ev+QjT^ZgX?<9$9O#l`B`WZNILP{B5#=(n(Q>KV8ID~{uIag$D zZQUbh3!2cYnq0l%?2L{j$M|Bds2w?eJo(d;lc0G3F`bBng4w4|d4X1V-n%C!YgKX~ z`u^7Ja0Y`YqckHmrIiwM_$I3+XZ0fW{z1#MqVv8FYzfguWi2VGsi-ZVFS1YHFfG#i;@=t zGBPrt>C(BSvxGJ-Qx+GTxKz^TSXo)wn**+Eg8~8sCQX{uvo3yXmgui9FPmGr#gpFO z+pD3g>snT3w#;{S+v@Q3NpEj$tx|n_>Xa8l`TA-lCCv?IXOKNI@a5iNaPpXKxRq-b zyTgoEf4|>1j|zSJ?ptNn4nw3piCzR?0dLRxkPX04u}Or%&0`!xget zcXfAve6hHniNUR3j#pn_|Hkdx$_fe$tHam3fkq*pJ!|uuYqhZW`8f&8q9sQJg(sRC z%;=drXAT3y_Wb*8vuDqCWmYm;?l;%!;N{E0py84;XI#?K)KZKjMYve6t&8ObFaKE> zw%V}pk&9Zg(k71Pt5;@avYbA3N=J%kqH2$Xq0{rNuuUJJg;ixyXMX&s&^)B9qMl*T-{rktk&%Zsu#UJPiM!PITs6$akVz7CU3IxS}OGU`T6$6 zix*#6C@@jfa7It#?$E0`lEKws!NJJ|kufoISS|`oG&P>pV_otBG{TTQZ{9qs^;5l6 z<*MHpf+lZfHFTWF+L+=Kmi^_$#Q?3Tx2|8kdNpE4!NL|n!HHY5Hl&dq9A|p+kp2+g;ZLHmic`8Zj}kWyUoxkBY}nF_2Q)l%^v&`Rc118WMRFSQtQy%af1wFfyE(Z!gcs#~0M*<`Q=1L9OPN*RQ+l{{H&7GSwwT&~37z_pvLpLPJ9p_4WC8?%Zin{Y~fGTrlzJX@4tThc(C^S-Q%5(9V?ESL>Q&9>rDzOEj3*ivvZN}rqaplHnvC# z3MLjEdUIhRb4^W+LDCV9w;~%FKDyL@c;MLFxi4?hw~rq|tt9U&E>~2*1H>oqfCjqb z_pR~WQ7W7dnm(DPV{UH#@pSf8H0ef#!%mcM@dSWy1{-h|V= z-&U$D`j*{$F=bEobv;n=1RB`ex^-(w!WFi=I|`lGADJ<+g+KK8fFBVQ;0$NwQ++W`A(!>>ijpp_I z|6c!J{NclgJF32}x+k+QW$!Dssk=JOwY9x(KRkc$Ufk`nsQtQEPoMUFWSmj^NF*EDRN_cjhT=>=C>GA&6 ztF?c9dz-yMS+f3*z*f#8yHRBf8Dt&Bn zVQQ-Co40R4%d?XH{P;MH4`uP|8bhlsC(oVZ>+9>&(9_$N;&8>~Slg{9&z?!iW-XSK z5|NPTXlP*I+nU+FtMqkS-rZd*3>LVlib+UayBYkE*g#t=nWnhLTrT zI#2Ep&3Kg)Tq>-mzHq@V5w6y6yH=dPp`x9cnK@@_&xtcqzQ@e-?raFr30n(a6PtN1 zC)lMoP;082aH;d=Nts#D#jtL-dl(=1*Z&e`VrJf0_qPhvQZg;ww({52BHafvu(bd! z|Ni|eC@Y)xL#Lx;=B1FJ{rODks>+uV_b`hy*!=tPc*EAMN58$jtt%Na`}jFym-4%N zDupdAE!p;Szj5(ca<#x{o_W5UUi`kE{Cz)*4IIcuTgS8rySuuJ z>>$@?S%B87J^1kOFld*fYIByU#qE&WL1AHSj?HWb@86fN{{AlaVr_a#ih_y?3xj~T zcssAOnZ%uUH#R1N_KpVzPQ174y#0Tf;N^a7;rhB*wWD{he0Onoe|%iN{>X9p`kuhWZVNYT5b&O^cXV6sZK>Yfs)dgv zHyIskH)FhZarUhn)8m!~J-oIynxSO>7s$k1?)CVp^z?Ml=$d<<%tWgxYJyInf$iI` zw=cbU^X9>uHzhqiJvsRKk6&3Ce6~ntrK*~ml9m=1!-FSJTKesNaon%}Z!07$yfNdV zQpw9pN8cFk*trw5O7!5tgH^A2u6oJZR0zzRIrG*m&|>La-^C|?e7|46Jwzw%@|9N` zCMvtXQi<6Xy_Hwis>H$1ukYr!{QUg>wb9!jU38asjfs(IYHoh`{CWDe$DRiRdYjg+ z)n#I4o;ZJg|C%*A-71gUOs1{iwY@j#toxN)rZal1%ir}xZ_it}X_HV{S=qF%m64!z zxIdXoth-oPSrhNHBsg$N1@H_O-mxv16lCS#xTT&vPa7L(d` z?%b(pVshny$UgWo(v_hZ29o8kukku@#O$pS-CO;ATY$&0!fl$dvyR7PrKF`L{rvRQ zqU6PdZIz%1kdu?s(9t>4C8`ZtcOW7na^UDu*2Kibil(M~lC~s}ezPLUAzFMu=)2B~wsYFIbc23m}SF*H}oUR|= zws)_sTc1p4<>zOLT3V}4UI(oU=}JD{_waW9{-ed`ZQFaL&COo^%{@C!H+sV4$;|fl z`_2AdkVxJ<>8kwW^(!rZpRfP7*!|l%8S>(zfkeQjun|p1MmbSL5pI@Iv z!Gng1?{~{xb8^;nbaa4L#5(Cs=VoAP`0(kIkf5NTl9^f9o}bTVD_L4brlh2FSeL(x z(7ARk3D2npT}@3)7gvYtU)-7 z?fmQvE-o$#T3TG7tjqoX5eV_< zAt#&n)VH$fs>*wd^U#rCE z>+Apc`SalQ>*5O+F8uKI>(zfBopNU_bZ(c5*_VA?@5Iw07kBs9I^Vy1aR~?zsQdL& z{mIj(pnaK>j)YH7`!S&{ttQXW(Q)(SkIMZvO`t8A8#itQjmzBRr2a8~yH8M9{13cEa~=*NeLW#5$-FTHW=)+>|ttD#X* ztM=Z{eAl@D&nNDGzwiIgnq4@>OZC^6m(20;@o#N6Ko%0Xo}XuXGxN$RlNmjX3#z}r z^YuEm|L-?x(7+%wJKuvlJBuyq|LrM@SpXW9JaqUlsN;}yVS(d^uU}oSuZx{6XZzCN zN?vGW0NRO$*ujbFZ-mfk~B&`b9T1*#f{0wtGl|FTwUnQ&Ld|d z(ag?&P4D#S)6HH>4|NKwf4CYRuc)ibd-LZ1>-XlmheocgXZSB?b4F03J1|g?Q$X)2Fvzxe~&_U(GBl zEBo-(tFDiak0;;RQTQkFg<_P?v2EM7t@S!KZQ8UMhRJMcXJ#za$j@2}g_?fLif zis#HynS4?}Oss9g27@ctu048jaj}PoheJSsz_m4zpdRYB*MFk7JWcC#_6PO@I9Te*fW%7dO_;@R0JYy=J>FqO-Y~d7015L+7o60<~1)cMv6Sak-`1v{34<9ZbdiWLx-3^$CCu>6z!DRxpU{*S5bMdY*)>D8GQM**c|I}zl*OgZpd@=kJRY6 z<-azi=FJVmUe*iKIRAk52CZ7PO5}aGss4qF7dHm0v1zV}+bady2L0yd=8c7q-6|?8 zA0BLGzp*);KWtr0r~dvwK`;9%k8}uHRDM#?i{H0KV!@-=uUA{hNl0|`N}DG=KGr+K zvRG|h?C!Ru-qR0Vx)fv>zj^aa`+7UGoEr@4>grRbPk(&b-@a9VDfw8>%L$)%@7k60 z`Po?xUf$eo_ik;?1`W~n$lJ?({P+>HV8X}O7qlw+&HerIpye3P=hy4~{CsH15)~I$ z*N1Pn-*>C2*|TJ$$HJAodPT*>fl*Oh4wVZP!o$N^*x8GlxwCdpI~J|3s>&%WEPR&# zO?1$}Qfqe*Jm_Gc&QWvN9z@!@!q6 z-rnBsT2ZkBv?Z#otqpWK#vH3suO1o8AVFszpPs0XD_4E~_xnA!qRZk>)8ndEo_v24 zv{UXXKPRW46UW5Kla-&Hovj`d6Vozr;=~uAlXOh8rhs-zef|3NY+e89Q>UcnmOnW$ z(f3;Y=d(UhSHfx9-N?>g}LCM^lysn$^UYl$IV{;MhE6 zS)iJ_dbjs?#y%^AHrEN@?JKXCH z<^Mm`(a{O%x$*Yy?(L`MCbaQLGC4atcSbw9^gnuUTFR`e{&>?Sqll=eM<*sKSN!|= ze5>e;YgBUPt*9Ww3_apZ}_30@7V&!W|Li}vFXd# zujdENZtvPK~LC4huL`HHtd|j2|+{V*5 zdv^5Z>;U1dZo#X4pFVr0Wye3On& zx|wgYg8S8D`>GYP%)d_h*eh+GkeJx`e*b^D#>U2596eDh*RA7ob#>KxpL9jC^VO3l zOKyaA?3({<*}FnFhKWzEcpp1(*mRY+Zd8kFw^*i?#;b&wscX_7WCgp#hMf+cEwy9k z&WCq)7SG~oGjRzI-+q$O*tfP}`SRu3YvY!@VxF^FJoEnJ`iPaAZ(X^uG5P0z*DEJi z)~4^N_?RSPS0l09fBv-+pDUhQ%0rFP)6>gxw=ss#R(e%<<^8gId#lZzoSZ&9pI`s! zrqaS)yQHS;#Xee<@^(Si)|G8XZf_7(1t}H0;(tt4RrST~?fP|pK7u-S*;WRx4&Abr zU1r^TE;sATZmY{zcH9yP>|a=C#KurvT@5+|>GX8{>nQq#HK zyu2J364J8Ry+6x9?bXU#o3&=HUag&zle0zW_TrC)TQ!wlF|74IR{j0m(JL#117l*= zT;#V~bUZUT)My=O4P<64Xo#|9>QvE3j~|0}nq?UoC~dW=_`u-m>U!e*`TQ?hIy#Wu z(U&d>_4W0Ej$wH4;suAaw6ut*C}=$D=g*&@x~vei^YH)f!?mwgE;p$7kN`c6rkS0; zZSLH;Q_iX`dbhIlqy&SLlhcIx^ZV!5|BDQE6fEu7waZFGOboQyd18rloT{p-gh4_> zP*a}Ap1;4pzc*t((Xqliqt@u$i4zUmx10OTv0%*4&-Z0@TVkm0HwU!9XI;!rrs(MC zm4_9TqAtI(|G#(79#DI-^!2q&B?Tp=MRLo1YYPJd18;24m)DEkb>-qm0YSm97P(%> z4jw#MP*8ASRp@FfD>;bDlRLuK$3<*P;oO#gzYnxkMpjl>P%yCn(lf=y3l}bYaeu%4 zzklENm#5gcxVYH*&7Qn5M(;SN(^dL9?8&odWuT=wF1B8~)q>kvS`vPIc-Ya|`Eo@? zM@L81oHEtqnLcelepJ-_e!JbGO&s=DjeC)x~>G5tZE-YDDSyrIK zYZl2Zb-wl|dVig5S9kZs2@@^|E>~7kdKGA;BKiIOeR=2>p^5Y7-xpl2qNMc7&??9D zk88Ks!J|i67cN}5V)g3RD=rHO3YJ#OPU|TxE&aH@{xA3Qb8{cxNd}#D^5R16qnMZ& z(3rrD8xbjKX=P7Vu9QA?=1hx^T5#3OnKL!7-rQfm|I$ZJVKomCUBQXZN`5R`%Ppqk zkdUANT51;J(RNYb&Uq zCbCdSFf*iG9TWshmZ(gbK3&<$YS&_a|GO8C%h&T17Z-yL_OSo^C3x}Uz`#JzfgTNv z%qksy9Uh;pY$TZ*)~?kB4fQQqq5?XtM|k>zyd!t+$P^Y9GBj+zSH-<`>(;Jh(7_ya zf4_!(;G1%HGbp^l{Q8A;W|N42h|!szJfQuCA`FC(fP~t*fg$bl`wPN=k~x ztG4!b?%?3ykB9l~J5HVQ3XFN;~TG(B# zUs7UHuq9*B!WaE$nlzl2X<^skJGf1puHa8xLRK zrySW?(>882oLBwM5;W3Kz4-C(@9*3D`urCEJa+BcHPBl8vNE%-?ruf~{XHL;jEsy7 z%HPGLq@_JN*v!t*uzue!ufuBgUg&pmB8}Vc~}_Uv{pI-hSx*efa~2=O1oM@prirnV~Dmd;nBD z1_w7sZcaOR-~fYs-H(N4`u?$V_U*GfbLLFJ_jj=&p`ng?`TvfGt4&ta(cwun|(~ z7>*o0y0HHLzph>{kjW1Zu`=*q_v7c_2+&#Y>2hVJhtZ_0YilAS_Se}?(}_G}J7HyL z*!nnLc6RnN^K3!uR$VG9EkRqe&dxSZetK%EhlfYNuH*jx*>=yGB^9&3PWI!+ zj~5Qja8+6qHZdon*u{kfRJ?F zOI7Rs{Y>BU=hJD>nLs)^IuG8w0S$PvfmU68xRt$L^Oc-+8PBy4}$+Yw^^TzGrXlC{zaRbKdj!+ilQcRLgBA9-C`X$h2?YzB#vCT;?8? zTFdt!DD_|yE2s(tl_fDTJ+jti2QFL)c(tLUqhrgm;5%)8GmTi=`Q?xK+y89=EfzGa zZSCk-q5eYTqy&SFt?k5V)7n5M*?hlKyrbslrYoT1fHGZ|dmdwW@a$PzPY=(P>(`T? zoR|n&a}8Sd-Qn?AMgG82uh3A@dsVM>bMEhx1r?#wbfb?o#$Hhi4GonrOk&Z}(h^Di z`t>WQ*EezE#7lFMtE;PJ?CWB>3_4e&Pp)H_uGQAo_T$rOeNam3=-^06PfxzRE%(LU z-P^A$3=~h!$N=pwUb1A#f_?kqUfy_nd%NiWX(v-=nB~sec34@7>B7lfE9K40-^GBM z5;t$&1npC~xjB6)U+1m`7cN{76aOXPr16%?)n$qATq{ZDhW>tjzxj5&+1c3@6%`3* zXPNfCE9jU78flV{lr)V_KhVGkI_Pqml9E!;wU?6(KNM8&*|Nn1wD1XZQq21G`gQ;R zmaja#Nbk^r0}PIiju)<84Xupv_vhc7cJ@+Hh>Oer%c_$M8NR%_%57+9c;ehSx71Ws z(5l<>cE5dIZCKG=@wnGKAUb;WryGBNfB(5>Mu*DP)JcWSpmUv!jfFoyKYx67{=QDn z$!ZT@U0og2?mG9*jg83{m;29mdulY3=WrWu^W@2sSpo$GZLd6?WcZ;V{`QX_6*AUk zJkQV1Z}0BrHp{uOV9P>=i;JHWS;p1>{puEbwP>e|aoU*)8d^$=+IOWG4U`g!#{q^y$F07b5;baO2H+OIe=s+IO{<23aIy!a*8s!Pd$nnYgS z$QT+L78Dj943Dopy7MH~m(O35GPo+-eCKgRi%@5zdyXWNS z*x1-C;qzWPXO7I1r%yd)-L`)_YknUzD&Nu3(a_)Df8}9Gw!i(~Esy%;m9j2Lb;v#W z@$vDY)2F=|1d@;UiGoMlm$)e@E3-1}`|(O_{nqU3UVpV+uZXIYoX&f-?8lEE3bwYg z$NS~m8ygux`!EHS-4f2vv(?R0S>PKN7boEKVd=r^yGmcH^e^1KKPM+=$-hvgS4LGK zkQkaWMP!amrO@ABUk_hd8Ejbdqu|Y*otsap3a_m0?CF_e#iFFtDmSwSd`#uZlP6D{ zJb7?}qO*XQ7+ZC9^^s%8isluWt3%gDFLYOb%yzhq_wc#7)}RLNhYtm7qPO#vm6cVz z-Fh9gTfDTw#pTLbLrHtkmJIE%H3#JD|1=&s;_~F_(}TBfOV67(@5a7bYb|ZYD=XvR=Wp-r<$ZQ;?&;mBN=mN+e2(dU`26|sySuvs zqoTU{?f*$cMn-=4_N{I6=FN}vK&O4#&gi*%Wp{c0nYq^Dpfny9CU&e(wwqVl3^b<6 z$jEqOQ!01fy*-+xGhAG*uo_BkKX_uIGH5Vk%9JSy&(F=R_;gZTP*RdpT3Q;kC-%m! zQtiC^`*gv|T@56+H#asiHZ?bY{CYk9@vW`dprS@``f0=bdo~f#(aD#Vc>ehF`8;S; zVx_aH(jvc}lRKJc%$Nb1-#K~mq=v5U(Ph4~1LEWRJ32T(2Q^(;5ePay@7!E#_0knC zE>}((NM<+8oC#V)-w7H&$;TO}o>33KN3baip9Jglmu z)Om6#--6x7Mn;F8oSbY}`6=bf_3MwXtPJ+>^E(Dwmg#Tzlf}x)3be%0!GVE^iAllb zd8G2}j*czO<;S9yEMCma&(DA4*fG%AdP|os1x1XEtn9=oQ&{}{{XwJLD^{+YXceNQ zbV*4qnKLpX0>`48y6RM;rjLIRwli_9{1aW4uHM0vzVO$yovVux>zB1 zR~Hpowa0!(Zr+s4%gYODUl?dIT=uP0@dtCpvOkHS3c@g zfAILR^2x35@9b>u6jpyUH9YQM6DzmKQ$9XEP>&%gIeBCC_q?s=)l;LRF3n614lmDO z4h%n-;u9q-FW-OZQjkvcwlx<)xp>d7SF0noWC*@`^$Of>wemT(MAV5R=jJ9>IXSrv zTepTrrk|RksiCLmmX)tpok|__(sJu5aM-hcQMoc|h54W$^L` z@89za3kyp~N(sTd(iVu+w{hdf58u9pRn7yQ*<4*+4Q?$51-VpK?%YxFaS;a> zmypp+9~D(q&8y|*<>JSV9XoXSaxiF$Xm|PhuHfZC%zC)!$vx(w2cv{m{_X z7FJbNO*+uPc<9tAuO-Wtb#--dO`JVj`_G?0Esc$hCr+FQn4_(#>MHnuZS;1~A=o!I zBsO2Tcv0};#f!Opx*8fDDXFQQAP42%-p0uQnwU@e^yK8D>G5@fqN1WnmzVi6HT-xT z|9@3U-?bzEUzn=<&s+23zg5YL2?i!6BIoUX=d8YcK}cF!dSlt!TW0&`uVD8~FnX7A zYZ7QNUFg2&E0@p93N@N%S-gxvq3qqAl_7DlvAQ|AxvdKqF4WM~4V|)k_ikc72-WOUfEd$;zfM~@$~GEAH?<3>(&iqT97n~H+XrB^b$1^#>6-LLz-_S9qJv@-$> zNBU%~r<__Jw^!@S*RMxUOjH(4)zs8X`tssp?>Rv!DXo&yQrF7L%GpWYzP_Pa<)x*f z3`aI5AD?pS?c2AllP3qyeq8@$mZqkr*VFa;eyw6qICbh&)YZ0W29m-nbsO(qxqAR~ zf@e<;52zrXIdf*$x|iMJ`XJ-8=BMA^SIf`L}&4LXAT=FOWLpzX9iGYlM8uHM(Ud$)B~c6Q;vKR?Zmemi4) zUZeKz2b;eiKkcjiy=cjjC1*d{zq*+|KlInFbLaRNq~^}=*wTJ-hcsy6-nQJ^0RaIF z_4V~OKc7slc-Sf~axzrb)YMc%UmsK(`}p`s$!_1YiHTv#v}syXXV09u(q{hBrK$`M zKwIwQ-W9MiY~8x`?6JV`aCT>B=dF*!+Ba@2T)e66+qLW04_~lC5*Ptr1 zySIMGr)FiX`m%N2JUIppkmI{g?vREwj}G_S|LeHDJwN&XzrO-b3K|+5|9>2}m%1A2 z8XqseY}v9E>(+%?2CPVw_Q=l8UixXadH$*x|J{n5<|?Vu($Wn4lcR#)-Py^k*s>_k zdsbGr)t9ed6VuYzcEsF*^zv4;;>W(9pnel;hU%<(!g|k`Mp= z{oS>G?wmOvZl=#?tgzV1;jsAol`B_3t0)XiOh8BPPw5K{4+qt6Ua8N|&2{$lwkuUj3nLrjd!ukY{sckQwQji0@I z`EtXyZEh(kDmpqkBAu&N>V5ro?ApYS+ozh{a&X}{lq?6goo{YV4-5`&etmttvYnlr z6GxAvvD?af9fHcB$*j}U^&dYuIaxzP12oXZ02++guzkCGNQelZj739N7uS=gPapQ0 z-#c)1b@;}*zg4c~rOd&>!8)V6GxDfE-<;%pszrJ==y?gg=!a zW*Vo@%5gqiGUvbnhpo5n#6(}&SoIaOog?Afo0}FD9~3}aMPFaj1)b2Q9lp-R$%*Mn zktOH=xr>Y4LFe$v*Z(ohyR)Nl)heweOP7KUv6AXstNb`$J9kTC$G`d8+Is>&-!htI zrLOLNX12NijvYHVl$Dh)F87x=%(|j6amo~xSFc}BeHFK(!12egUtGz_$%*Od*E32! z_ez_)goI4luzkDuu3fthUAYp{BW>;{V^_1|V(HzxcU|xAt3A4Y|39r`z0&GFK0Ym= zsol??h1LD$WQ5d%_95s^@74}qw<582C2OvJ1ajg z11$-ZFv*y3;p$aUF)=YE1A_n=s}hfuagmWTXPD>D+pu}FFv$8-r@TN%OYQl7ue$5A zy;apt(~W!o|NH&u%F5v0Q{n65bo=D(@2#l$`RVD}uKg>sxfG?Q?*DShTX&mdtcw|v6XsY^G#-nd!PuErwo&W?*Y*FP^lb^0`DmXcFg&1BbNo8o6Y z^Xh(O)_lDh4(cwd9a7cZymjl*-S78xuUMh6(pmAW#onPyl@x48j#!1P^g3{93g(WU7 zmlBMYg=I(V{&8le@s6UWTq#D9c0V34Z@q6{@W26dAcx^`Gd;b&@*^%+78gD(&)WLp zMTU#JySFTxVBq$H*5G}wkPA*Ixq8F}aa&1w?yDBidh@%x%e`gU0(XamhkMI11x`Ph za)&c^PlaIca=)ooJW5KJgk}mjdC0N|3I_6TYda6xfR1`0%1OpI6RkKvBe`$h{AWy= XcJKX$;=pJI1_lOCS3j3^P6&}H