broonie is currently certified at Journeyer level.

Name: Mark Brown
Member since: 2000-04-01 18:19:43
Last Login: 2008-02-16 16:48:52

FOAF RDF Share This

Notes:

If you know me for doing anything, it's probably maintaining a few Debian packages (Leafnode, zlib, helping with nis and a bunch of Fortran related packages). I currently work for Wolfson Microelectronics on drives for their chips.

Projects

Recent blog entries by broonie

Syndication: RSS 2.0

regmap updates in 3.2

Version 3.1 of the Linux kernel was the first release to include regmap support and only included a bare minimum of features in order to ease review so version 3.2 has been a pretty big one for regmap development with some pretty major features being built on top of the core code.

  • Support for register caches – Dimitris Papastamos ported his code for rbtree and LZO caches from ASoC over to regmap. This makes it easy for drivers to cache the current values of the device registers, improving performance by eliminating reads when doing read/modify/write cycles and providing functions to restore the register cache when resuming from power down. An indexed cache type was also added but this will be removed in 3.3 as it offers no real advantage over rbtree.
  • Support for a wider range of SPI register transfer formats contributed by Lars-Peter Clausen.
  • Tracepoints supporting both register access logging and monitoring of the time spent on register I/O operations.
  • Register map dumps via debugfs to help provide diagnostic information during development.

Syndicated 2012-01-06 23:59:19 from Technicalities

ASoC updates in 3.2

Linux 3.2 was released yesterday. It’s been a fairly busy release for ASoC in terms of the subsystem, including the first piece of work at moving the register I/O code over to regmap to eliminate the duplication there, but a pretty quiet one on the drivers front.

  • Substantial optimization of the DAPM algorithm, substantially reducing the CPU usage when power states change. This is especially beneficial with larger modern devices.
  • Support for CODEC drivers using the regmap API.
  • Some smaller API updates – support for larger register maps, support for specifying a source when setting a sysclk.
  • New CPU for Alchemy and Freescale MXS.
  • New CODEC drivers for Analog ADAU1373, Realtek RT5631 and Wolfson MicroelectronicsWM1811 and WM5100.

Syndicated 2012-01-06 19:07:48 from Technicalities

What’s wrong with switch statements?

Recently I’ve been noticing a surprising pattern in code I’m reviewing for the kernel. A lot of people seem to have taken to writing code that I’d expect to look like this:

switch (thing) {
case VALUE:
        /* Stuff */
        break;
case BAR:
        /* Nonsense */
        break;
default:
        /* Whatever */
        break;
}

with if statements instead:

if (thing == VALUE) {
        /* Stuff */
} else if (thing == BAR) {
        /* Nonsense */
} else {
        /* Whatever */
}

(where stuff, nonsense and whatever are usually a bit larger). I really don’t understand where this has come from – the if based form isn’t nearly so idiomatic for selecting between a range of values and this seems to have come from nowhere pretty much. Is there some code base out there where this is common practice or something?

Syndicated 2011-12-20 13:24:55 from Technicalities

ASoC updates in 3.1

Linus released version 3.1 of the kernel at Kernel Summit this morning. This has been another fairly quiet release for the framework with a few nice power optimizations, a range of driver enhancements and a fairly small set of new drivers.

  • Lots of cleanups to the register cache code in preparation for moving the code to the regmap API.
  • Support for maintaining lower power when in mostly idle states like microphone detection.
  • Support for weak DAPM routes, enabling better pop/click performance for paths like sidetones.
  • New CODEC drivers for Analog Devices ADAV80x, Sigmatel STA32x and Wolfson WM8728 and WM8983.



Posted from Prague, Prague, Czech Republic.

Syndicated 2011-10-24 09:36:56 from Technicalities

regmap – a register map abstraction for the Linux kernel

A good proportion of I2C and SPI device drivers in the kernel contain some very similar code for accessing the register maps of hardware connected to those buses – most hardware designers have solved the problem of providing very similar ways. Linux 3.1 introduces a new kernel API called regmap which factors out this code from the drivers, saving code and making it much easier to share infrastructure. There’s been an implementation of this in ASoC for some time now, the regmap API makes it available to all drivers.

The version of this API in version 3.1 is very simple, just factoring out the simplest level of physical I/O from the devices. Devices register with the regmap API by providing a struct regmap_config (which currently only allows the sizes of the register addresses and values to be specified) and the bus-specific structure to it. They can then use simple read and write operations on the device:

int regmap_read(struct regmap *map, unsigned int reg, unsigned int *val);
int regmap_write(struct regmap *map, unsigned int reg, unsigned int val);

The API handles everything to do with formatting the data for transmission and parsing data coming back from the device. Block functions are also provided to allow multiple registers to be read or written simultaneously. Even with this basic level of support we end up saving quite a bit of code as drivers are converted to use the API.

The changes sitting in -next for version 3.2 take this a step further, adding support for more variations on SPI registers, a debugfs interface for dumping the device registers, register cache support courtesy of my colleague Dimitris Papastamos and trace points for dynamic instrumentation of the system.

Posted from Santa Rosa, California, United States.

Syndicated 2011-09-30 12:46:54 from Technicalities

105 older entries...

 

broonie certified others as follows:

  • broonie certified joey as Master
  • broonie certified cas as Journeyer
  • broonie certified vicious as Journeyer
  • broonie certified bombadil as Journeyer
  • broonie certified lupus as Journeyer
  • broonie certified bribass as Journeyer
  • broonie certified vincent as Journeyer
  • broonie certified apenwarr as Journeyer
  • broonie certified wichert as Master
  • broonie certified espy as Journeyer
  • broonie certified doogie as Journeyer
  • broonie certified hands as Journeyer
  • broonie certified branden as Journeyer
  • broonie certified netgod as Journeyer
  • broonie certified knghtbrd as Journeyer
  • broonie certified Joy as Journeyer
  • broonie certified rse as Master
  • broonie certified exa as Apprentice
  • broonie certified Stevey as Journeyer
  • broonie certified moray as Journeyer
  • broonie certified skx as Journeyer

Others have certified broonie as follows:

  • joey certified broonie as Journeyer
  • lordsutch certified broonie as Journeyer
  • branden certified broonie as Journeyer
  • cech certified broonie as Journeyer
  • lazarus certified broonie as Journeyer
  • Joy certified broonie as Journeyer
  • fxn certified broonie as Journeyer
  • Jordi certified broonie as Journeyer

[ Certification disabled because you're not logged in. ]

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!

X
Share this page