From 44bc2df36962a01165f14c526e0605a5b1899aae Mon Sep 17 00:00:00 2001 From: Stefan Binding Date: Tue, 22 Oct 2024 14:36:18 +0100 Subject: [PATCH] sound: Enable Debug for CS35L41 HDA Change-Id: I07ba3a29daf2050b189c4cf2f77f1702617bdd0d Signed-off-by: Stefan Binding --- sound/pci/hda/cs35l41_hda.c | 2 ++ sound/pci/hda/hda_auto_parser.c | 2 ++ sound/pci/hda/hda_bind.c | 2 ++ sound/pci/hda/hda_codec.c | 2 ++ sound/pci/hda/hda_controller.c | 2 ++ sound/pci/hda/hda_generic.c | 2 ++ sound/pci/hda/hda_intel.c | 2 ++ sound/pci/hda/patch_realtek.c | 2 ++ sound/soc/codecs/cs35l41-lib.c | 11 +++++++++++ 9 files changed, 27 insertions(+) diff --git a/sound/pci/hda/cs35l41_hda.c b/sound/pci/hda/cs35l41_hda.c index d68bf7591d90..299c9d0149d6 100644 --- a/sound/pci/hda/cs35l41_hda.c +++ b/sound/pci/hda/cs35l41_hda.c @@ -6,6 +6,8 @@ // // Author: Lucas Tanure +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_auto_parser.c b/sound/pci/hda/hda_auto_parser.c index 7c6b1fe8dfcc..8adf566690a4 100644 --- a/sound/pci/hda/hda_auto_parser.c +++ b/sound/pci/hda/hda_auto_parser.c @@ -5,6 +5,8 @@ * Copyright (c) 2012 Takashi Iwai */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_bind.c b/sound/pci/hda/hda_bind.c index b7ca2a83fbb0..d4144f9818c5 100644 --- a/sound/pci/hda/hda_bind.c +++ b/sound/pci/hda/hda_bind.c @@ -4,6 +4,8 @@ * Copyright (c) Takashi Iwai */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 14763c0f31ad..ddadb04ad63f 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -5,6 +5,8 @@ * Copyright (c) 2004 Takashi Iwai */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_controller.c b/sound/pci/hda/hda_controller.c index f3330b7e0fcf..3599e110599f 100644 --- a/sound/pci/hda/hda_controller.c +++ b/sound/pci/hda/hda_controller.c @@ -9,6 +9,8 @@ * PeiSen Hou */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c index b34d84fedcc8..47ea94612b4c 100644 --- a/sound/pci/hda/hda_generic.c +++ b/sound/pci/hda/hda_generic.c @@ -7,6 +7,8 @@ * Copyright (c) 2004 Takashi Iwai */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index b4540c5cd2a6..4f54e9f4fbd5 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -20,6 +20,8 @@ * 2004.12.01 Major rewrite by tiwai, merged the work of pshou */ +#define DEBUG + #include #include #include diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 69db3d4905ea..613b6decd427 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -10,6 +10,8 @@ * Jonathan Woithe */ +#define DEBUG + #include #include #include diff --git a/sound/soc/codecs/cs35l41-lib.c b/sound/soc/codecs/cs35l41-lib.c index 1702f26049d3..d92c40032f73 100644 --- a/sound/soc/codecs/cs35l41-lib.c +++ b/sound/soc/codecs/cs35l41-lib.c @@ -7,6 +7,8 @@ // Author: David Rhodes // Author: Lucas Tanure +#define DEBUG + #include #include #include @@ -1219,6 +1221,7 @@ int cs35l41_global_enable(struct device *dev, struct regmap *regmap, enum cs35l4 int enable, struct cs_dsp *dsp) { int ret; + unsigned int temp; unsigned int gpio1_func, pad_control, pwr_ctrl1, pwr_ctrl3, int_status, pup_pdn_mask; unsigned int pwr_ctl1_val; struct reg_sequence cs35l41_mdsync_down_seq[] = { @@ -1307,6 +1310,14 @@ int cs35l41_global_enable(struct device *dev, struct regmap *regmap, enum cs35l4 dev_err(dev, "Failed waiting for CS35L41_PUP_DONE_MASK: %d\n", ret); /* Lock the test key, it was unlocked during the multi_reg_write */ cs35l41_test_key_lock(dev, regmap); + regmap_read(regmap, CS35L41_IRQ1_STATUS1, &temp); + dev_info(dev, "IRQ1 Status: 0x%08x\n", temp); + regmap_read(regmap, CS35L41_IRQ1_STATUS2, &temp); + dev_info(dev, "IRQ2 Status: 0x%08x\n", temp); + regmap_read(regmap, CS35L41_IRQ1_STATUS3, &temp); + dev_info(dev, "IRQ3 Status: 0x%08x\n", temp); + regmap_read(regmap, CS35L41_IRQ1_STATUS4, &temp); + dev_info(dev, "IRQ4 Status: 0x%08x\n", temp); return ret; } regmap_write(regmap, CS35L41_IRQ1_STATUS1, CS35L41_PUP_DONE_MASK); -- 2.43.0