Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.
Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)
Remove unnecessary or redundant interface attributes where they're not
needed.
There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
2021-04-25 02:36:23 +03:00
|
|
|
/* $NetBSD: flash_mtdparts.c,v 1.2 2021/04/24 23:36:53 thorpej Exp $ */
|
2017-11-13 20:35:58 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2017 Jared McNeill <jmcneill@invisible.ca>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.
Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)
Remove unnecessary or redundant interface attributes where they're not
needed.
There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
2021-04-25 02:36:23 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: flash_mtdparts.c,v 1.2 2021/04/24 23:36:53 thorpej Exp $");
|
2017-11-13 20:35:58 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kmem.h>
|
|
|
|
|
|
|
|
#include <dev/flash/flash.h>
|
|
|
|
|
|
|
|
extern int flash_print(void *, const char *);
|
|
|
|
|
|
|
|
static void
|
|
|
|
flash_attach_partition(struct flash_interface *flash_if, device_t parent,
|
|
|
|
struct flash_partition *part)
|
|
|
|
{
|
|
|
|
struct flash_attach_args faa;
|
|
|
|
|
|
|
|
faa.flash_if = flash_if;
|
|
|
|
faa.partinfo = *part;
|
|
|
|
|
Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.
Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)
Remove unnecessary or redundant interface attributes where they're not
needed.
There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
2021-04-25 02:36:23 +03:00
|
|
|
config_found(parent, &faa, flash_print,
|
|
|
|
CFARG_IATTR, "flashbus",
|
|
|
|
CFARG_EOL);
|
2017-11-13 20:35:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static flash_size_t
|
|
|
|
flash_parse_size(char *partdef, char **ep)
|
|
|
|
{
|
|
|
|
flash_size_t size;
|
|
|
|
|
|
|
|
/* Parse the size parameter */
|
|
|
|
size = strtoul(partdef, ep, 10);
|
|
|
|
if (partdef == *ep)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
switch (**ep) {
|
|
|
|
case 'G':
|
|
|
|
case 'g':
|
|
|
|
size <<= 10;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
size <<= 10;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'K':
|
|
|
|
case 'k':
|
|
|
|
size <<= 10;
|
|
|
|
(*ep)++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
flash_parse_partdef(flash_size_t flash_size, char *partdef, flash_off_t *offset,
|
|
|
|
struct flash_partition *ppart)
|
|
|
|
{
|
|
|
|
struct flash_partition part;
|
|
|
|
|
|
|
|
/* Get the partition size */
|
|
|
|
if (*partdef == '-') {
|
|
|
|
/* Use the remaining space */
|
|
|
|
part.part_size = 0;
|
|
|
|
partdef++;
|
|
|
|
} else {
|
|
|
|
part.part_size = flash_parse_size(partdef, &partdef);
|
|
|
|
if (part.part_size == 0)
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*partdef == '@') {
|
|
|
|
/* Explicit offset */
|
|
|
|
partdef++;
|
|
|
|
part.part_offset = flash_parse_size(partdef, &partdef);
|
|
|
|
} else {
|
|
|
|
/* Offset is the end of the previous partition */
|
|
|
|
part.part_offset = *offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate partition size for "all remaining space" parts */
|
|
|
|
if (part.part_size == 0)
|
|
|
|
part.part_size = flash_size - part.part_offset;
|
|
|
|
|
|
|
|
if (*partdef == '(') {
|
|
|
|
/* Partition name */
|
|
|
|
partdef++;
|
|
|
|
part.part_name = partdef;
|
|
|
|
partdef = strchr(partdef, ')');
|
|
|
|
if (partdef == NULL)
|
|
|
|
return EINVAL;
|
|
|
|
*partdef = '\0';
|
|
|
|
partdef++;
|
|
|
|
}
|
|
|
|
|
|
|
|
part.part_flags = 0;
|
|
|
|
if (strncmp(partdef, "ro", 2) == 0) {
|
|
|
|
part.part_flags |= FLASH_PART_READONLY;
|
|
|
|
partdef += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppart = part;
|
|
|
|
|
|
|
|
*offset = part.part_offset + part.part_size;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
flash_parse_mtddef(struct flash_interface *flash_if, device_t parent,
|
|
|
|
flash_size_t flash_size, char *mtddef)
|
|
|
|
{
|
|
|
|
struct flash_partition part;
|
|
|
|
char *partdef = mtddef, *nextdef;
|
|
|
|
flash_off_t offset = 0;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
while (partdef && offset < flash_size) {
|
|
|
|
/* Find the end */
|
|
|
|
nextdef = strchr(partdef, ',');
|
|
|
|
if (nextdef == NULL)
|
|
|
|
nextdef = strchr(partdef, ' ');
|
|
|
|
if (nextdef)
|
|
|
|
*nextdef++ = '\0';
|
|
|
|
|
|
|
|
error = flash_parse_partdef(flash_size, partdef, &offset,
|
|
|
|
&part);
|
|
|
|
if (error) {
|
|
|
|
aprint_error_dev(parent, "bad partition def '%s'\n",
|
|
|
|
partdef);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
flash_attach_partition(flash_if, parent, &part);
|
|
|
|
|
|
|
|
partdef = nextdef;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach partitions to a given parent device node that match the supplied
|
|
|
|
* device id. The cmdline follows the following format:
|
|
|
|
*
|
|
|
|
* mtdparts=<mtddef>[;<mtddef]
|
|
|
|
* <mtddef> := <mtd-id>:<partdef>[,<partdef>]
|
|
|
|
* <partdef> := <size>[@offset][<name>][ro]
|
|
|
|
* <mtd-id> := unique id used in mapping driver/device (number of flash bank)
|
|
|
|
* <size> := memsize OR "-" to denote all remaining space
|
|
|
|
* <name> := '(' NAME ')'
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
flash_attach_mtdparts(struct flash_interface *flash_if, device_t parent,
|
|
|
|
flash_size_t flash_size, const char *mtd_id, const char *cmdline)
|
|
|
|
{
|
|
|
|
char *mtddef;
|
|
|
|
size_t mtddeflen;
|
|
|
|
|
|
|
|
/* Find the definition for our mtd id */
|
|
|
|
const char *s = strstr(cmdline, mtd_id);
|
|
|
|
if (s == NULL || s[strlen(mtd_id)] != ':')
|
|
|
|
return;
|
|
|
|
|
|
|
|
mtddef = kmem_strdupsize(s + strlen(mtd_id) + 1, &mtddeflen, KM_SLEEP);
|
|
|
|
|
|
|
|
flash_parse_mtddef(flash_if, parent, flash_size, mtddef);
|
|
|
|
|
|
|
|
kmem_free(mtddef, mtddeflen);
|
|
|
|
}
|