freebsd-dev/sys/dev/bhnd/bhndb/bhndb_bus_if.m
Landon J. Fuller 111d7cb2e3 Migrate bhndb(4) to the new bhnd_erom API.
Adds support for probing and initializing bhndb(4) bridge state using
the bhnd_erom API, ensuring that full bridge configuration is available
*prior* to actually attaching and enumerating the bhnd(4) child device,
allowing us to safely allocate bus-level agent/device resources during
bhnd(4) bus enumeration.

- Add a bhnd_erom_probe() method usable by bhndb(4). This is an analogue
  to the existing bhnd_erom_probe_static() method, and allows the bhndb
  bridge to discover the best available erom parser class prior to newbus
  probing of its children.
- Add support for supplying identification hints when probing erom
  devices. This is required on early EXTIF-only chipsets, where chip
  identification registers are not available.
- Migrate bhndb over to the new bhnd_erom API, using bhnd_core_info
  records rather than bridged bhnd(4) device_t references to determine
  the bridged chipsets' capability/bridge configuration.
- The bhndb parent (e.g. if_bwn) is now required to supply a hardware
  priority table to the bridge. The default table is currently sufficient
  for our supported devices.
- Drop the two-pass attach approach we used for compatibility with bhndb(4) in
  the bhnd(4) bus drivers, and instead perform bus enumeration immediately,
  and allocate bridged per-child bus-level resources during that enumeration.

Approved by:	adrian (mentor)
Differential Revision:	https://reviews.freebsd.org/D7768
2016-09-04 00:58:19 +00:00

146 lines
4.2 KiB
Objective-C

#-
# Copyright (c) 2015-2016 Landon Fuller <landonf@FreeBSD.org>
# 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 OR CONTRIBUTORS 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.
#
# $FreeBSD$
#include <sys/types.h>
#include <sys/bus.h>
#
# Parent bus interface required by attached bhndb bridge devices.
#
INTERFACE bhndb_bus;
HEADER {
struct bhnd_core_info;
struct bhndb_hwcfg;
struct bhndb_hw;
};
CODE {
#include <sys/systm.h>
static const struct bhnd_chipid *
bhndb_null_get_chipid(device_t dev, device_t child)
{
return (NULL);
}
static const struct bhndb_hwcfg *
bhndb_null_get_generic_hwcfg(device_t dev, device_t child)
{
panic("bhndb_get_generic_hwcfg unimplemented");
}
static const struct bhndb_hw *
bhndb_null_get_hardware_table(device_t dev, device_t child)
{
panic("bhndb_get_hardware_table unimplemented");
}
static const struct bhndb_hw_priority *
bhndb_null_get_hardware_prio(device_t dev, device_t child)
{
panic("bhndb_get_hardware_prio unimplemented");
}
static bool
bhndb_null_is_core_disabled(device_t dev, device_t child,
struct bhnd_core_info *core)
{
return (true);
}
}
/**
* Return a generic hardware configuration to be used by
* the bhndb bridge device to enumerate attached devices.
*
* @param dev The parent device.
* @param child The attached bhndb device.
*
* @retval bhndb_hwcfg The configuration to use for bus enumeration.
*/
METHOD const struct bhndb_hwcfg * get_generic_hwcfg {
device_t dev;
device_t child;
} DEFAULT bhndb_null_get_generic_hwcfg;
/**
* Provide chip identification information to be used by a @p child during
* device enumeration.
*
* May return NULL if the device includes a ChipCommon core.
*
* @param dev The parent device.
* @param child The attached bhndb device.
*/
METHOD const struct bhnd_chipid * get_chipid {
device_t dev;
device_t child;
} DEFAULT bhndb_null_get_chipid;
/**
* Return the hardware specification table to be used when identifying the
* bridge's full hardware configuration.
*
* @param dev The parent device.
* @param child The attached bhndb device.
*/
METHOD const struct bhndb_hw * get_hardware_table {
device_t dev;
device_t child;
} DEFAULT bhndb_null_get_hardware_table;
/**
* Return the hardware priority table to be used when allocating bridge
* resources.
*
* @param dev The parent device.
* @param child The attached bhndb device.
*/
METHOD const struct bhndb_hw_priority * get_hardware_prio {
device_t dev;
device_t child;
} DEFAULT bhndb_null_get_hardware_prio;
/**
* Return true if the hardware required by @p core is unpopulated or
* otherwise unusable.
*
* In some cases, the core's pins may be left floating, or the hardware
* may otherwise be non-functional; this method allows the parent device
* to explicitly specify whether @p core should be disabled.
*
* @param dev The parent device.
* @param child The attached bhndb device.
* @param core A core discovered on @p child.
*/
METHOD bool is_core_disabled {
device_t dev;
device_t child;
struct bhnd_core_info *core;
} DEFAULT bhndb_null_is_core_disabled;