This series starts adding base hda controller code to hda core. There are few more changes like dsp loader etc planned to be added as well.
This is based on Takashi's test/hda-core branch with patches posted last week, we have modified naming convention loosely based on takashi's work, Takshi feel free to recommend more changes if you think they are required
Jeeja KP (2): ALSA: hda: move common hda controller register defines up ALSA: hda: add hda controller to hda
Vinod Koul (1): ALSA: hda: add HDA_MAX_CODECS
include/sound/hda_registers.h | 200 +++++++ include/sound/hda_verbs.h | 1 + include/sound/hdaudio.h | 215 +++++++ sound/hda/Makefile | 2 +- sound/hda/hdac_controller.c | 1284 ++++++++++++++++++++++++++++++++++++++++ sound/pci/hda/hda_controller.c | 4 +- sound/pci/hda/hda_controller.h | 203 +------ 7 files changed, 1707 insertions(+), 202 deletions(-) create mode 100644 include/sound/hda_registers.h create mode 100644 sound/hda/hdac_controller.c