Commit f76a9ae6 authored by Christian Vogel's avatar Christian Vogel Committed by Greg Kroah-Hartman

w1/ds2490: remove dump from ds_recv_status, pr_ to dev_XXX logging.

Changed all remaining pr_XXX calls that write out debugging info into
dev_XXX calls, changed the needlessly verbose decoding of status bits
into dev_dbg(), so that it's supressed by the logging levels by default.

Forthermore the ds_recv_status function has a "dump" parameter that
enables extremely verbose logging, and that's used only once.
This has been factored out, and called explicitly at that one place.
Signed-off-by: default avatarChristian Vogel <vogelchr@vogel.cx>
Link: https://lore.kernel.org/r/20220324193246.16814-2-vogelchr@vogel.cxSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ac11fe0
...@@ -172,8 +172,9 @@ static int ds_send_control_cmd(struct ds_device *dev, u16 value, u16 index) ...@@ -172,8 +172,9 @@ static int ds_send_control_cmd(struct ds_device *dev, u16 value, u16 index)
err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]), err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
CONTROL_CMD, VENDOR, value, index, NULL, 0, 1000); CONTROL_CMD, VENDOR, value, index, NULL, 0, 1000);
if (err < 0) { if (err < 0) {
pr_err("Failed to send command control message %x.%x: err=%d.\n", dev_err(&dev->udev->dev,
value, index, err); "Failed to send command control message %x.%x: err=%d.\n",
value, index, err);
return err; return err;
} }
...@@ -187,8 +188,9 @@ static int ds_send_control_mode(struct ds_device *dev, u16 value, u16 index) ...@@ -187,8 +188,9 @@ static int ds_send_control_mode(struct ds_device *dev, u16 value, u16 index)
err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]), err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
MODE_CMD, VENDOR, value, index, NULL, 0, 1000); MODE_CMD, VENDOR, value, index, NULL, 0, 1000);
if (err < 0) { if (err < 0) {
pr_err("Failed to send mode control message %x.%x: err=%d.\n", dev_err(&dev->udev->dev,
value, index, err); "Failed to send mode control message %x.%x: err=%d.\n",
value, index, err);
return err; return err;
} }
...@@ -202,72 +204,68 @@ static int ds_send_control(struct ds_device *dev, u16 value, u16 index) ...@@ -202,72 +204,68 @@ static int ds_send_control(struct ds_device *dev, u16 value, u16 index)
err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]), err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
COMM_CMD, VENDOR, value, index, NULL, 0, 1000); COMM_CMD, VENDOR, value, index, NULL, 0, 1000);
if (err < 0) { if (err < 0) {
pr_err("Failed to send control message %x.%x: err=%d.\n", dev_err(&dev->udev->dev,
value, index, err); "Failed to send control message %x.%x: err=%d.\n",
value, index, err);
return err; return err;
} }
return err; return err;
} }
static inline void ds_print_msg(unsigned char *buf, unsigned char *str, int off) static void ds_dump_status(struct ds_device *ds_dev, unsigned char *buf, int count)
{
pr_info("%45s: %8x\n", str, buf[off]);
}
static void ds_dump_status(struct ds_device *dev, unsigned char *buf, int count)
{ {
struct device *dev = &ds_dev->udev->dev;
int i; int i;
dev_info(&dev->udev->dev, "ep_status=0x%x, count=%d, status=%*phC", dev_info(dev, "ep_status=0x%x, count=%d, status=%*phC",
dev->ep[EP_STATUS], count, count, buf); ds_dev->ep[EP_STATUS], count, count, buf);
if (count >= 16) { if (count >= 16) {
ds_print_msg(buf, "enable flag", 0); dev_dbg(dev, "enable flag: 0x%02x", buf[0]);
ds_print_msg(buf, "1-wire speed", 1); dev_dbg(dev, "1-wire speed: 0x%02x", buf[1]);
ds_print_msg(buf, "strong pullup duration", 2); dev_dbg(dev, "strong pullup duration: 0x%02x", buf[2]);
ds_print_msg(buf, "programming pulse duration", 3); dev_dbg(dev, "programming pulse duration: 0x%02x", buf[3]);
ds_print_msg(buf, "pulldown slew rate control", 4); dev_dbg(dev, "pulldown slew rate control: 0x%02x", buf[4]);
ds_print_msg(buf, "write-1 low time", 5); dev_dbg(dev, "write-1 low time: 0x%02x", buf[5]);
ds_print_msg(buf, "data sample offset/write-0 recovery time", dev_dbg(dev, "data sample offset/write-0 recovery time: 0x%02x", buf[6]);
6); dev_dbg(dev, "reserved (test register): 0x%02x", buf[7]);
ds_print_msg(buf, "reserved (test register)", 7); dev_dbg(dev, "device status flags: 0x%02x", buf[8]);
ds_print_msg(buf, "device status flags", 8); dev_dbg(dev, "communication command byte 1: 0x%02x", buf[9]);
ds_print_msg(buf, "communication command byte 1", 9); dev_dbg(dev, "communication command byte 2: 0x%02x", buf[10]);
ds_print_msg(buf, "communication command byte 2", 10); dev_dbg(dev, "communication command buffer status: 0x%02x", buf[11]);
ds_print_msg(buf, "communication command buffer status", 11); dev_dbg(dev, "1-wire data output buffer status: 0x%02x", buf[12]);
ds_print_msg(buf, "1-wire data output buffer status", 12); dev_dbg(dev, "1-wire data input buffer status: 0x%02x", buf[13]);
ds_print_msg(buf, "1-wire data input buffer status", 13); dev_dbg(dev, "reserved: 0x%02x", buf[14]);
ds_print_msg(buf, "reserved", 14); dev_dbg(dev, "reserved: 0x%02x", buf[15]);
ds_print_msg(buf, "reserved", 15);
} }
for (i = 16; i < count; ++i) { for (i = 16; i < count; ++i) {
if (buf[i] == RR_DETECT) { if (buf[i] == RR_DETECT) {
ds_print_msg(buf, "new device detect", i); dev_dbg(dev, "New device detect.\n");
continue; continue;
} }
ds_print_msg(buf, "Result Register Value: ", i); dev_dbg(dev, "Result Register Value: 0x%02x", buf[i]);
if (buf[i] & RR_NRS) if (buf[i] & RR_NRS)
pr_info("NRS: Reset no presence or ...\n"); dev_dbg(dev, "NRS: Reset no presence or ...\n");
if (buf[i] & RR_SH) if (buf[i] & RR_SH)
pr_info("SH: short on reset or set path\n"); dev_dbg(dev, "SH: short on reset or set path\n");
if (buf[i] & RR_APP) if (buf[i] & RR_APP)
pr_info("APP: alarming presence on reset\n"); dev_dbg(dev, "APP: alarming presence on reset\n");
if (buf[i] & RR_VPP) if (buf[i] & RR_VPP)
pr_info("VPP: 12V expected not seen\n"); dev_dbg(dev, "VPP: 12V expected not seen\n");
if (buf[i] & RR_CMP) if (buf[i] & RR_CMP)
pr_info("CMP: compare error\n"); dev_dbg(dev, "CMP: compare error\n");
if (buf[i] & RR_CRC) if (buf[i] & RR_CRC)
pr_info("CRC: CRC error detected\n"); dev_dbg(dev, "CRC: CRC error detected\n");
if (buf[i] & RR_RDP) if (buf[i] & RR_RDP)
pr_info("RDP: redirected page\n"); dev_dbg(dev, "RDP: redirected page\n");
if (buf[i] & RR_EOS) if (buf[i] & RR_EOS)
pr_info("EOS: end of search error\n"); dev_dbg(dev, "EOS: end of search error\n");
} }
} }
static int ds_recv_status(struct ds_device *dev, struct ds_status *st, static int ds_recv_status(struct ds_device *dev, struct ds_status *st)
bool dump)
{ {
int count, err; int count, err;
...@@ -281,14 +279,12 @@ static int ds_recv_status(struct ds_device *dev, struct ds_status *st, ...@@ -281,14 +279,12 @@ static int ds_recv_status(struct ds_device *dev, struct ds_status *st,
dev->st_buf, sizeof(dev->st_buf), dev->st_buf, sizeof(dev->st_buf),
&count, 1000); &count, 1000);
if (err < 0) { if (err < 0) {
pr_err("Failed to read 1-wire data from 0x%x: err=%d.\n", dev_err(&dev->udev->dev,
dev->ep[EP_STATUS], err); "Failed to read 1-wire data from 0x%x: err=%d.\n",
dev->ep[EP_STATUS], err);
return err; return err;
} }
if (dump)
ds_dump_status(dev, dev->st_buf, count);
if (st && count >= sizeof(*st)) if (st && count >= sizeof(*st))
memcpy(st, dev->st_buf, sizeof(*st)); memcpy(st, dev->st_buf, sizeof(*st));
...@@ -302,13 +298,15 @@ static void ds_reset_device(struct ds_device *dev) ...@@ -302,13 +298,15 @@ static void ds_reset_device(struct ds_device *dev)
* the strong pullup. * the strong pullup.
*/ */
if (ds_send_control_mode(dev, MOD_PULSE_EN, PULSE_SPUE)) if (ds_send_control_mode(dev, MOD_PULSE_EN, PULSE_SPUE))
pr_err("ds_reset_device: Error allowing strong pullup\n"); dev_err(&dev->udev->dev,
"%s: Error allowing strong pullup\n", __func__);
/* Chip strong pullup time was cleared. */ /* Chip strong pullup time was cleared. */
if (dev->spu_sleep) { if (dev->spu_sleep) {
/* lower 4 bits are 0, see ds_set_pullup */ /* lower 4 bits are 0, see ds_set_pullup */
u8 del = dev->spu_sleep>>4; u8 del = dev->spu_sleep>>4;
if (ds_send_control(dev, COMM_SET_DURATION | COMM_IM, del)) if (ds_send_control(dev, COMM_SET_DURATION | COMM_IM, del))
pr_err("ds_reset_device: Error setting duration\n"); dev_err(&dev->udev->dev,
"%s: Error setting duration\n", __func__);
} }
} }
...@@ -329,9 +327,16 @@ static int ds_recv_data(struct ds_device *dev, unsigned char *buf, int size) ...@@ -329,9 +327,16 @@ static int ds_recv_data(struct ds_device *dev, unsigned char *buf, int size)
err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_IN]), err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_IN]),
buf, size, &count, 1000); buf, size, &count, 1000);
if (err < 0) { if (err < 0) {
int recv_len;
dev_info(&dev->udev->dev, "Clearing ep0x%x.\n", dev->ep[EP_DATA_IN]); dev_info(&dev->udev->dev, "Clearing ep0x%x.\n", dev->ep[EP_DATA_IN]);
usb_clear_halt(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_IN])); usb_clear_halt(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_IN]));
ds_recv_status(dev, NULL, true);
/* status might tell us why endpoint is stuck? */
recv_len = ds_recv_status(dev, NULL);
if (recv_len >= 0)
ds_dump_status(dev, dev->st_buf, recv_len);
return err; return err;
} }
...@@ -355,7 +360,7 @@ static int ds_send_data(struct ds_device *dev, unsigned char *buf, int len) ...@@ -355,7 +360,7 @@ static int ds_send_data(struct ds_device *dev, unsigned char *buf, int len)
count = 0; count = 0;
err = usb_bulk_msg(dev->udev, usb_sndbulkpipe(dev->udev, dev->ep[EP_DATA_OUT]), buf, len, &count, 1000); err = usb_bulk_msg(dev->udev, usb_sndbulkpipe(dev->udev, dev->ep[EP_DATA_OUT]), buf, len, &count, 1000);
if (err < 0) { if (err < 0) {
pr_err("Failed to write 1-wire data to ep0x%x: " dev_err(&dev->udev->dev, "Failed to write 1-wire data to ep0x%x: "
"err=%d.\n", dev->ep[EP_DATA_OUT], err); "err=%d.\n", dev->ep[EP_DATA_OUT], err);
return err; return err;
} }
...@@ -377,7 +382,7 @@ int ds_stop_pulse(struct ds_device *dev, int limit) ...@@ -377,7 +382,7 @@ int ds_stop_pulse(struct ds_device *dev, int limit)
err = ds_send_control(dev, CTL_RESUME_EXE, 0); err = ds_send_control(dev, CTL_RESUME_EXE, 0);
if (err) if (err)
break; break;
err = ds_recv_status(dev, &st, false); err = ds_recv_status(dev, &st);
if (err) if (err)
break; break;
...@@ -424,7 +429,7 @@ static int ds_wait_status(struct ds_device *dev, struct ds_status *st) ...@@ -424,7 +429,7 @@ static int ds_wait_status(struct ds_device *dev, struct ds_status *st)
do { do {
st->status = 0; st->status = 0;
err = ds_recv_status(dev, st, false); err = ds_recv_status(dev, st);
#if 0 #if 0
if (err >= 0) { if (err >= 0) {
int i; int i;
...@@ -437,7 +442,7 @@ static int ds_wait_status(struct ds_device *dev, struct ds_status *st) ...@@ -437,7 +442,7 @@ static int ds_wait_status(struct ds_device *dev, struct ds_status *st)
} while (!(st->status & ST_IDLE) && !(err < 0) && ++count < 100); } while (!(st->status & ST_IDLE) && !(err < 0) && ++count < 100);
if (err >= 16 && st->status & ST_EPOF) { if (err >= 16 && st->status & ST_EPOF) {
pr_info("Resetting device after ST_EPOF.\n"); dev_info(&dev->udev->dev, "Resetting device after ST_EPOF.\n");
ds_reset_device(dev); ds_reset_device(dev);
/* Always dump the device status. */ /* Always dump the device status. */
count = 101; count = 101;
...@@ -721,7 +726,7 @@ static void ds9490r_search(void *data, struct w1_master *master, ...@@ -721,7 +726,7 @@ static void ds9490r_search(void *data, struct w1_master *master,
do { do {
schedule_timeout(jtime); schedule_timeout(jtime);
err = ds_recv_status(dev, &st, false); err = ds_recv_status(dev, &st);
if (err < 0 || err < sizeof(st)) if (err < 0 || err < sizeof(st))
break; break;
...@@ -992,10 +997,9 @@ static int ds_probe(struct usb_interface *intf, ...@@ -992,10 +997,9 @@ static int ds_probe(struct usb_interface *intf,
int i, err, alt; int i, err, alt;
dev = kzalloc(sizeof(struct ds_device), GFP_KERNEL); dev = kzalloc(sizeof(struct ds_device), GFP_KERNEL);
if (!dev) { if (!dev)
pr_info("Failed to allocate new DS9490R structure.\n");
return -ENOMEM; return -ENOMEM;
}
dev->udev = usb_get_dev(udev); dev->udev = usb_get_dev(udev);
if (!dev->udev) { if (!dev->udev) {
err = -ENOMEM; err = -ENOMEM;
...@@ -1025,7 +1029,7 @@ static int ds_probe(struct usb_interface *intf, ...@@ -1025,7 +1029,7 @@ static int ds_probe(struct usb_interface *intf,
iface_desc = intf->cur_altsetting; iface_desc = intf->cur_altsetting;
if (iface_desc->desc.bNumEndpoints != NUM_EP-1) { if (iface_desc->desc.bNumEndpoints != NUM_EP-1) {
pr_info("Num endpoints=%d. It is not DS9490R.\n", dev_err(&dev->udev->dev, "Num endpoints=%d. It is not DS9490R.\n",
iface_desc->desc.bNumEndpoints); iface_desc->desc.bNumEndpoints);
err = -EINVAL; err = -EINVAL;
goto err_out_clear; goto err_out_clear;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment