KernelDriverProgrammingCourse2015/OutlineDay2

From RevSpace
Revision as of 10:12, 9 August 2015 by Hans de Goede (talk | contribs) (Kernel Driver Programming Course Day 2)
Jump to navigation Jump to search

Kernel Driver Programming Course Day 2

  1. Intro
    1. Welcome
    2. Results of the first course day, a number of changes have been queued up for merging into the official kernel sources
    3. Some further changes are queued up in my sunxi-wip branch as they rely on the pmic for otg vbus-detection and the matching pmic code is not yet merged upstream
  2. Plan for today:
    1. Kernel is an intermediate between hardware and applications, a device driver typically has 2 interfaces, one side talking to the hardware, and another side talking to userspace
    2. i2c hardware and driver basics
    3. Looking at a userspace interface from a userspace pov: input devices / evdev
    4. Looking at evdev from the kernel side
    5. Handson
  3. i2c hardware and driver basics
    1. i2c hardware basics
    2. Exploring an i2c device using i2cdetect and i2cget
    3. Looking at a basic i2c driver
  4. Lunch Break
  5. Looking at a userspace interface from a userspace pov: input devices / evdev
    1. evemu-record demo
  6. Looking at evdev from the kernel side
    1. Looking at an example of an i2c input driver
  7. Handson
    1. Building and running your own kernel
      1. Build and install u-boot for your board using the instructions from Day 1
      2. Cross compile your own kernel, following the preparation instructions for today
      3. Install this kernel by copying arch/arm/boot/zImage to the cards boot partition
      4. Also copy over the build dtb files arch/arm/boot/dts/sun?i-*.dtb to the dtb dir under the boot partition
      5. Boot your board, login as root and do "uname -a" to verify that the board is running your kernel
    2. Building and running a standalone driver
      1. On your laptop download the basic i2c driver, edit the Makefile adjusting the path to the linux kernel sources and CROSS_COMPILE= settings to match your system
      2. Type "make" to build the driver, and then transfer the generated .ko file to your ARM board
      3. On your arm system do "insmod i2c-basic-drv.ko" and then "lsmod" to verify that the module has loaded
    3. Pick a project and start working on it
      1. Any project from the list will do, basically there are 3 options to chose from:
      2. Projects to enable features and or complete boards in u-boot / devicetree as done during [[KernelDriverProgrammingCourse2015/OutlineDay1 | day 1].
      3. Writing an i2c input device driver, as discussed today, either a Silead GSL1680 touchcreen driver, Focaltech ft5x touchscreen driver, Memsic MXC622X accelerometer driver, Freescale MMA7660 or MMA8452 accelerometer driver or a Bosch BMA250 accelerometer driver.
      4. Any other project from the list

Back to KernelDriverProgrammingCourse2015