Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efe4f92d authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: dwc3: Check USB LPM status before accessing registers"

parents aabd8761 ef5eba44
Loading
Loading
Loading
Loading
+27 −1
Original line number Diff line number Diff line
@@ -282,6 +282,32 @@ static const struct debugfs_reg32 dwc3_regs[] = {
	dump_register(OSTS),
};

static int dwc3_regdump_show(struct seq_file *s, void *unused)
{
	struct dwc3		*dwc = s->private;

	if (atomic_read(&dwc->in_lpm)) {
		seq_puts(s, "USB device is powered off\n");
		return 0;
	}

	debugfs_print_regs32(s, dwc->regset->regs, dwc->regset->nregs,
				dwc->regset->base, "");
	return 0;
}

static int dwc3_regdump_open(struct inode *inode, struct file *file)
{
	return single_open(file, dwc3_regdump_show, inode->i_private);
}

static const struct file_operations dwc3_regdump_fops = {
	.open			= dwc3_regdump_open,
	.read			= seq_read,
	.llseek			= seq_lseek,
	.release		= single_release,
};

static int dwc3_mode_show(struct seq_file *s, void *unused)
{
	struct dwc3		*dwc = s->private;
@@ -997,7 +1023,7 @@ void dwc3_debugfs_init(struct dwc3 *dwc)

	dwc->root = root;

	debugfs_create_regset32("regdump", S_IRUGO, root, dwc->regset);
	debugfs_create_file("regdump", 0444, root, dwc, &dwc3_regdump_fops);

	if (IS_ENABLED(CONFIG_USB_DWC3_DUAL_ROLE)) {
		debugfs_create_file("mode", S_IRUGO | S_IWUSR, root, dwc,