Lines Matching refs:options
81 pr_info("%s%d at MMIO%s %pa (options '%s')\n",
86 &port->mapbase, device->options);
88 pr_info("%s%d at I/O port 0x%lx (options '%s')\n",
90 port->iobase, device->options);
93 static int __init parse_options(struct earlycon_device *device, char *options)
99 if (uart_parse_earlycon(options, &port->iotype, &addr, &options))
122 if (options) {
125 device->baud = simple_strtoul(options, NULL, 0);
126 uartclk = strchr(options, ',');
129 options);
130 length = min(strcspn(options, " ") + 1,
131 (size_t)(sizeof(device->options)));
132 strscpy(device->options, options, length);
143 /* On parsing error, pass the options buf to the setup function */
171 * <name>,io|mmio|mmio32|mmio32be,<addr>,<options>
172 * <name>,0x<addr>,<options>
173 * <name>,<options>
177 * <options> string in the 'options' parameter; all other forms set
255 const char *options)
312 if (options) {
313 early_console_dev.baud = simple_strtoul(options, NULL, 0);
314 strscpy(early_console_dev.options, options,
315 sizeof(early_console_dev.options));
318 err = match->setup(&early_console_dev, options);