treewide: Use OF_REAL instead of !OF_PLATDATA
Now that we have a 'positive' Kconfig option, use this instead of the negative one, which is harder to understand. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
414cc15144
commit
9539738509
@ -21,7 +21,7 @@ static const struct udevice_id rk3399_syscon_ids[] = {
|
||||
U_BOOT_DRIVER(syscon_rk3399) = {
|
||||
.name = "rk3399_syscon",
|
||||
.id = UCLASS_SYSCON,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.of_match = rk3399_syscon_ids,
|
||||
|
@ -18,7 +18,7 @@ U_BOOT_DRIVER(syscon_rk3568) = {
|
||||
.name = "rk3568_syscon",
|
||||
.id = UCLASS_SYSCON,
|
||||
.of_match = rk3568_syscon_ids,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
};
|
||||
|
@ -220,7 +220,7 @@ static int apl_hostbridge_of_to_plat(struct udevice *dev)
|
||||
ret = uclass_first_device_err(UCLASS_PINCTRL, &pinctrl);
|
||||
if (ret)
|
||||
return log_msg_ret("no hostbridge PINCTRL", ret);
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
int root;
|
||||
|
||||
/* Get length of PCI Express Region */
|
||||
@ -375,7 +375,7 @@ struct acpi_ops apl_hostbridge_acpi_ops = {
|
||||
#endif
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_hostbridge_ids[] = {
|
||||
{ .compatible = "intel,apl-hostbridge" },
|
||||
{ }
|
||||
|
@ -128,7 +128,7 @@ struct acpi_ops apl_lpc_acpi_ops = {
|
||||
.inject_dsdt = southbridge_inject_dsdt,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_lpc_ids[] = {
|
||||
{ .compatible = "intel,apl-lpc" },
|
||||
{ }
|
||||
|
@ -23,7 +23,7 @@ static const struct pch_ops apl_pch_ops = {
|
||||
.set_spi_protect = apl_set_spi_protect,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_pch_ids[] = {
|
||||
{ .compatible = "intel,apl-pch" },
|
||||
{ }
|
||||
|
@ -107,7 +107,7 @@ int apl_pmc_ofdata_to_uc_plat(struct udevice *dev)
|
||||
struct acpi_pmc_upriv *upriv = dev_get_uclass_priv(dev);
|
||||
struct apl_pmc_plat *plat = dev_get_plat(dev);
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
u32 base[6];
|
||||
int size;
|
||||
int ret;
|
||||
@ -206,7 +206,7 @@ static const struct acpi_pmc_ops apl_pmc_ops = {
|
||||
.global_reset_set_enable = apl_global_reset_set_enable,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_pmc_ids[] = {
|
||||
{ .compatible = "intel,apl-pmc" },
|
||||
{ }
|
||||
|
@ -123,7 +123,7 @@ static int apl_ns16550_of_to_plat(struct udevice *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_ns16550_serial_ids[] = {
|
||||
{ .compatible = "intel,apl-ns16550" },
|
||||
{ },
|
||||
|
@ -213,7 +213,7 @@ static const struct irq_ops itss_ops = {
|
||||
#endif
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id itss_ids[] = {
|
||||
{ .compatible = "intel,itss", .data = X86_IRQT_ITSS },
|
||||
{ }
|
||||
|
@ -88,7 +88,7 @@ int p2sb_of_to_plat(struct udevice *dev)
|
||||
struct p2sb_uc_priv *upriv = dev_get_uclass_priv(dev);
|
||||
struct p2sb_plat *plat = dev_get_plat(dev);
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
int ret;
|
||||
u32 base[2];
|
||||
|
||||
@ -159,7 +159,7 @@ static int p2sb_remove(struct udevice *dev)
|
||||
|
||||
static int p2sb_child_post_bind(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
|
||||
int ret;
|
||||
u32 pid;
|
||||
@ -177,7 +177,7 @@ static const struct p2sb_ops p2sb_ops = {
|
||||
.set_hide = intel_p2sb_set_hide,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id p2sb_ids[] = {
|
||||
{ .compatible = "intel,p2sb" },
|
||||
{ }
|
||||
|
@ -139,7 +139,7 @@ void spl_board_init(void)
|
||||
* for devices, so the TPL BARs continue to be used. Once U-Boot starts it does
|
||||
* the auto allocation (after relocation).
|
||||
*/
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id tpl_fake_pci_ids[] = {
|
||||
{ .compatible = "pci-x86" },
|
||||
{ }
|
||||
|
@ -300,7 +300,7 @@ struct sysinfo_ops coral_sysinfo_ops = {
|
||||
.get_str = coral_get_str,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id coral_ids[] = {
|
||||
{ .compatible = "google,coral" },
|
||||
{ }
|
||||
|
@ -26,7 +26,10 @@
|
||||
gd_t *gd;
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
/* Add a simple GPIO device */
|
||||
/*
|
||||
* Add a simple GPIO device (don't use with of-platdata as it interferes with
|
||||
* the auto-generated devices)
|
||||
*/
|
||||
U_BOOT_DRVINFO(gpio_sandbox) = {
|
||||
.name = "sandbox_gpio",
|
||||
};
|
||||
|
@ -215,7 +215,7 @@ For example:
|
||||
|
||||
static int mmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
/* Decode the devicetree data */
|
||||
struct mmc_plat *plat = dev_get_plat(dev);
|
||||
const void *blob = gd->fdt_blob;
|
||||
|
@ -40,7 +40,7 @@ const struct clk_ops clk_fixed_factor_ops = {
|
||||
|
||||
static int clk_fixed_factor_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
int err;
|
||||
struct clk_fixed_factor *ff = to_clk_fixed_factor(dev);
|
||||
|
||||
|
@ -32,7 +32,7 @@ void clk_fixed_rate_ofdata_to_plat_(struct udevice *dev,
|
||||
struct clk_fixed_rate *plat)
|
||||
{
|
||||
struct clk *clk = &plat->clk;
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
plat->fixed_rate = dev_read_u32_default(dev, "clock-frequency", 0);
|
||||
#endif
|
||||
/* Make fixed rate clock accessible from higher level struct clk */
|
||||
|
@ -540,7 +540,7 @@ static struct clk_ops rk3188_clk_ops = {
|
||||
|
||||
static int rk3188_clk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3188_clk_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->cru = dev_read_addr_ptr(dev);
|
||||
|
@ -957,7 +957,7 @@ static struct clk_ops rk3288_clk_ops = {
|
||||
|
||||
static int rk3288_clk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3288_clk_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->cru = dev_read_addr_ptr(dev);
|
||||
|
@ -596,7 +596,7 @@ static int rk3368_clk_probe(struct udevice *dev)
|
||||
|
||||
static int rk3368_clk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3368_clk_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->cru = dev_read_addr_ptr(dev);
|
||||
|
@ -1402,7 +1402,7 @@ static int rk3399_clk_probe(struct udevice *dev)
|
||||
|
||||
static int rk3399_clk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3399_clk_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->cru = dev_read_addr_ptr(dev);
|
||||
@ -1614,7 +1614,7 @@ static int rk3399_pmuclk_probe(struct udevice *dev)
|
||||
|
||||
static int rk3399_pmuclk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3399_pmuclk_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->pmucru = dev_read_addr_ptr(dev);
|
||||
|
@ -65,7 +65,7 @@ UCLASS_DRIVER(simple_bus) = {
|
||||
.per_device_plat_auto = sizeof(struct simple_bus_plat),
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id generic_simple_bus_ids[] = {
|
||||
{ .compatible = "simple-bus" },
|
||||
{ .compatible = "simple-mfd" },
|
||||
|
@ -186,7 +186,7 @@ static const struct udevice_id generic_syscon_ids[] = {
|
||||
U_BOOT_DRIVER(generic_syscon) = {
|
||||
.name = "syscon",
|
||||
.id = UCLASS_SYSCON,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.of_match = generic_syscon_ids,
|
||||
|
@ -22,7 +22,7 @@ int list_count_items(struct list_head *head)
|
||||
return count;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
int pci_get_devfn(struct udevice *dev)
|
||||
{
|
||||
struct fdt_pci_addr addr;
|
||||
|
@ -1137,7 +1137,7 @@ err:
|
||||
return ret;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static int _gpio_request_by_name_nodev(ofnode node, const char *list_name,
|
||||
int index, struct gpio_desc *desc,
|
||||
int flags, bool add_index)
|
||||
|
@ -204,7 +204,7 @@ static const struct dm_gpio_ops gpio_intel_ops = {
|
||||
#endif
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id intel_intel_gpio_ids[] = {
|
||||
{ .compatible = "intel,gpio" },
|
||||
{ }
|
||||
|
@ -362,7 +362,7 @@ U_BOOT_DRIVER(gpio_omap) = {
|
||||
.name = "gpio_omap",
|
||||
.id = UCLASS_GPIO,
|
||||
#if CONFIG_IS_ENABLED(OF_CONTROL)
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.of_match = omap_gpio_ids,
|
||||
.of_to_plat = of_match_ptr(omap_gpio_of_to_plat),
|
||||
.plat_auto = sizeof(struct omap_gpio_plat),
|
||||
|
@ -79,7 +79,7 @@ UCLASS_DRIVER(i2c_emul) = {
|
||||
UCLASS_DRIVER(i2c_emul_parent) = {
|
||||
.id = UCLASS_I2C_EMUL_PARENT,
|
||||
.name = "i2c_emul_parent",
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.post_bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
};
|
||||
|
@ -1671,7 +1671,7 @@ UCLASS_DRIVER(cros_ec) = {
|
||||
.id = UCLASS_CROS_EC,
|
||||
.name = "cros-ec",
|
||||
.per_device_auto = sizeof(struct cros_ec_dev),
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.post_bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.flags = DM_UC_FLAG_ALLOC_PRIV_DMA,
|
||||
|
@ -183,7 +183,7 @@ int p2sb_set_port_id(struct udevice *dev, int portid)
|
||||
|
||||
static int p2sb_child_post_bind(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct p2sb_child_plat *pplat = dev_get_parent_plat(dev);
|
||||
int ret;
|
||||
u32 pid;
|
||||
|
@ -1411,7 +1411,7 @@ __weak void init_clk_usdhc(u32 index)
|
||||
|
||||
static int fsl_esdhc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct fsl_esdhc_priv *priv = dev_get_priv(dev);
|
||||
#if CONFIG_IS_ENABLED(DM_REGULATOR)
|
||||
struct udevice *vqmmc_dev;
|
||||
@ -1598,7 +1598,7 @@ static int fsl_esdhc_probe(struct udevice *dev)
|
||||
return ret;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
ret = mmc_of_parse(dev, &plat->cfg);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
@ -392,7 +392,7 @@ static void ftsdc_setup_cfg(struct mmc_config *cfg, const char *name, int buswid
|
||||
|
||||
static int ftsdc010_mmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct ftsdc_priv *priv = dev_get_priv(dev);
|
||||
struct ftsdc010_chip *chip = &priv->chip;
|
||||
chip->name = dev->name;
|
||||
|
@ -52,7 +52,7 @@ static uint rockchip_dwmmc_get_mmc_clk(struct dwmci_host *host, uint freq)
|
||||
|
||||
static int rockchip_dwmmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rockchip_dwmmc_priv *priv = dev_get_priv(dev);
|
||||
struct dwmci_host *host = &priv->host;
|
||||
|
||||
|
@ -155,7 +155,7 @@ static int apl_pinctrl_of_to_plat(struct udevice *dev)
|
||||
return intel_pinctrl_of_to_plat(dev, comm, 2);
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id apl_gpio_ids[] = {
|
||||
{ .compatible = "intel,apl-pinctrl"},
|
||||
{ }
|
||||
@ -168,7 +168,7 @@ U_BOOT_DRIVER(intel_apl_pinctrl) = {
|
||||
.of_match = of_match_ptr(apl_gpio_ids),
|
||||
.probe = intel_pinctrl_probe,
|
||||
.ops = &intel_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.of_to_plat = apl_pinctrl_of_to_plat,
|
||||
|
@ -186,7 +186,7 @@ U_BOOT_DRIVER(fsl_imx23_pinctrl) = {
|
||||
.id = UCLASS_PINCTRL,
|
||||
.of_match = of_match_ptr(mxs_pinctrl_match),
|
||||
.probe = mxs_pinctrl_probe,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.priv_auto = sizeof(struct mxs_pinctrl_priv),
|
||||
|
@ -421,7 +421,7 @@ static int __maybe_unused pinctrl_post_bind(struct udevice *dev)
|
||||
|
||||
UCLASS_DRIVER(pinctrl) = {
|
||||
.id = UCLASS_PINCTRL,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.post_bind = pinctrl_post_bind,
|
||||
#endif
|
||||
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
||||
|
@ -363,7 +363,7 @@ U_BOOT_DRIVER(pinctrl_px30) = {
|
||||
.of_match = px30_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -103,7 +103,7 @@ U_BOOT_DRIVER(pinctrl_rockchip) = {
|
||||
.of_match = rk3036_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -205,7 +205,7 @@ U_BOOT_DRIVER(pinctrl_rk3128) = {
|
||||
.of_match = rk3128_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -126,7 +126,7 @@ U_BOOT_DRIVER(rockchip_rk3188_pinctrl) = {
|
||||
.of_match = rk3188_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -292,7 +292,7 @@ U_BOOT_DRIVER(pinctrl_rk3228) = {
|
||||
.of_match = rk3228_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -248,7 +248,7 @@ U_BOOT_DRIVER(rockchip_rk3288_pinctrl) = {
|
||||
.of_match = rk3288_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -459,7 +459,7 @@ U_BOOT_DRIVER(pinctrl_rk3308) = {
|
||||
.of_match = rk3308_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -323,7 +323,7 @@ U_BOOT_DRIVER(rockchip_rk3328_pinctrl) = {
|
||||
.of_match = rk3328_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -177,7 +177,7 @@ U_BOOT_DRIVER(rockchip_rk3368_pinctrl) = {
|
||||
.of_match = rk3368_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -317,7 +317,7 @@ U_BOOT_DRIVER(pinctrl_rk3399) = {
|
||||
.of_match = rk3399_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -291,7 +291,7 @@ U_BOOT_DRIVER(pinctrl_rv1108) = {
|
||||
.of_match = rv1108_pinctrl_ids,
|
||||
.priv_auto = sizeof(struct rockchip_pinctrl_priv),
|
||||
.ops = &rockchip_pinctrl_ops,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
.probe = rockchip_pinctrl_probe,
|
||||
|
@ -883,7 +883,7 @@ static int rk3368_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3368_sdram_params *plat = dev_get_plat(dev);
|
||||
|
||||
ret = regmap_init_mem(dev_ofnode(dev), &plat->map);
|
||||
|
@ -816,7 +816,7 @@ static int setup_sdram(struct udevice *dev)
|
||||
|
||||
static int rk3188_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3188_sdram_params *params = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
|
@ -716,7 +716,7 @@ out:
|
||||
|
||||
static int rk322x_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk322x_sdram_params *params = dev_get_plat(dev);
|
||||
const void *blob = gd->fdt_blob;
|
||||
int node = dev_of_offset(dev);
|
||||
|
@ -973,7 +973,7 @@ static int setup_sdram(struct udevice *dev)
|
||||
|
||||
static int rk3288_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3288_sdram_params *params = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
|
@ -517,7 +517,7 @@ static int rk3328_dmc_init(struct udevice *dev)
|
||||
struct rockchip_dmc_plat *plat = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3328_sdram_params *params = &plat->sdram_params;
|
||||
#else
|
||||
struct dtd_rockchip_rk3328_dmc *dtplat = &plat->dtplat;
|
||||
@ -549,7 +549,7 @@ static int rk3328_dmc_init(struct udevice *dev)
|
||||
|
||||
static int rk3328_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rockchip_dmc_plat *plat = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
|
@ -3013,7 +3013,7 @@ static int sdram_init(struct dram_info *dram,
|
||||
|
||||
static int rk3399_dmc_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rockchip_dmc_plat *plat = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
@ -3068,7 +3068,7 @@ static int rk3399_dmc_init(struct udevice *dev)
|
||||
struct dram_info *priv = dev_get_priv(dev);
|
||||
struct rockchip_dmc_plat *plat = dev_get_plat(dev);
|
||||
int ret;
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rk3399_sdram_params *params = &plat->sdram_params;
|
||||
#else
|
||||
struct dtd_rockchip_rk3399_dmc *dtplat = &plat->dtplat;
|
||||
|
@ -177,7 +177,7 @@ UCLASS_DRIVER(rtc) = {
|
||||
.name = "rtc",
|
||||
.id = UCLASS_RTC,
|
||||
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.post_bind = dm_scan_fdt_dev,
|
||||
#endif
|
||||
};
|
||||
|
@ -237,7 +237,7 @@ U_BOOT_DRIVER(sandbox_serial) = {
|
||||
.flags = DM_FLAG_PRE_RELOC,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct sandbox_serial_plat platdata_non_fdt = {
|
||||
.colour = -1,
|
||||
};
|
||||
|
@ -145,7 +145,7 @@ static int mt7620_serial_probe(struct udevice *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static int mt7620_serial_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
struct mt7620_serial_plat *plat = dev_get_plat(dev);
|
||||
@ -200,7 +200,7 @@ static const struct dm_serial_ops mt7620_serial_ops = {
|
||||
U_BOOT_DRIVER(serial_mt7620) = {
|
||||
.name = "serial_mt7620",
|
||||
.id = UCLASS_SERIAL,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.of_match = mt7620_serial_ids,
|
||||
.of_to_plat = mt7620_serial_of_to_plat,
|
||||
#endif
|
||||
|
@ -604,7 +604,7 @@ static int ich_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
|
||||
return ret;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
/**
|
||||
* ich_spi_get_basics() - Get basic information about the ICH device
|
||||
*
|
||||
@ -672,7 +672,7 @@ static int ich_get_mmap_bus(struct udevice *bus, ulong *map_basep,
|
||||
uint *map_sizep, uint *offsetp)
|
||||
{
|
||||
pci_dev_t spi_bdf;
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
if (device_is_on_pci_bus(bus)) {
|
||||
struct pci_child_plat *pplat;
|
||||
|
||||
@ -940,7 +940,7 @@ static int ich_spi_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
struct ich_spi_plat *plat = dev_get_plat(dev);
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct ich_spi_priv *priv = dev_get_priv(dev);
|
||||
int ret;
|
||||
|
||||
|
@ -286,7 +286,7 @@ static const struct dm_spi_ops pl022_spi_ops = {
|
||||
.cs_info = pl022_cs_info,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static int pl022_spi_of_to_plat(struct udevice *bus)
|
||||
{
|
||||
struct pl022_spi_pdata *plat = dev_get_plat(bus);
|
||||
@ -315,7 +315,7 @@ static const struct udevice_id pl022_spi_ids[] = {
|
||||
U_BOOT_DRIVER(pl022_spi) = {
|
||||
.name = "pl022_spi",
|
||||
.id = UCLASS_SPI,
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.of_match = pl022_spi_ids,
|
||||
.of_to_plat = pl022_spi_of_to_plat,
|
||||
#endif
|
||||
|
@ -193,7 +193,7 @@ static int conv_of_plat(struct udevice *dev)
|
||||
|
||||
static int rockchip_spi_of_to_plat(struct udevice *bus)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rockchip_spi_plat *plat = dev_get_plat(bus);
|
||||
struct rockchip_spi_priv *priv = dev_get_priv(bus);
|
||||
int ret;
|
||||
|
@ -162,7 +162,7 @@ int spi_write_then_read(struct spi_slave *slave, const u8 *opcode,
|
||||
return ret;
|
||||
}
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static int spi_child_post_bind(struct udevice *dev)
|
||||
{
|
||||
struct dm_spi_slave_plat *plat = dev_get_parent_plat(dev);
|
||||
@ -176,7 +176,7 @@ static int spi_child_post_bind(struct udevice *dev)
|
||||
|
||||
static int spi_post_probe(struct udevice *bus)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct dm_spi_bus *spi = dev_get_uclass_priv(bus);
|
||||
|
||||
spi->max_hz = dev_read_u32_default(bus, "spi-max-frequency", 0);
|
||||
@ -539,7 +539,7 @@ UCLASS_DRIVER(spi) = {
|
||||
.per_device_auto = sizeof(struct dm_spi_bus),
|
||||
.per_child_auto = sizeof(struct spi_slave),
|
||||
.per_child_plat_auto = sizeof(struct dm_spi_slave_plat),
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
.child_post_bind = spi_child_post_bind,
|
||||
#endif
|
||||
};
|
||||
|
@ -133,7 +133,7 @@ U_BOOT_DRIVER(warm_sysreset_sandbox) = {
|
||||
.ops = &sandbox_warm_sysreset_ops,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
/* This is here in case we don't have a device tree */
|
||||
U_BOOT_DRVINFO(sysreset_sandbox_non_fdt) = {
|
||||
.name = "sysreset_sandbox",
|
||||
|
@ -55,7 +55,7 @@ ulong timer_get_boot_us(void)
|
||||
/* The timer is available */
|
||||
rate = timer_get_rate(gd->timer);
|
||||
timer_get_count(gd->timer, &ticks);
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
} else if (ret == -EAGAIN) {
|
||||
/* We have been called so early that the DM is not ready,... */
|
||||
ofnode node = offset_to_ofnode(-1);
|
||||
@ -100,7 +100,7 @@ static u64 rockchip_timer_get_count(struct udevice *dev)
|
||||
|
||||
static int rockchip_clk_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct rockchip_timer_priv *priv = dev_get_priv(dev);
|
||||
|
||||
priv->timer = dev_read_addr_ptr(dev);
|
||||
|
@ -50,7 +50,7 @@ unsigned long notrace timer_get_rate(struct udevice *dev)
|
||||
|
||||
static int timer_pre_probe(struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
struct timer_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
||||
struct clk timer_clk;
|
||||
int err;
|
||||
@ -136,7 +136,7 @@ int notrace dm_timer_init(void)
|
||||
if (gd->dm_root == NULL)
|
||||
return -EAGAIN;
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
/* Check for a chosen timer to be used for tick */
|
||||
node = ofnode_get_chosen_node("tick-timer");
|
||||
|
||||
|
@ -479,7 +479,7 @@ static const struct timer_ops tsc_timer_ops = {
|
||||
.get_count = tsc_timer_get_count,
|
||||
};
|
||||
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
static const struct udevice_id tsc_timer_ids[] = {
|
||||
{ .compatible = "x86,tsc-timer", },
|
||||
{ }
|
||||
|
@ -181,7 +181,7 @@ struct udevice {
|
||||
u32 flags_;
|
||||
#endif
|
||||
int seq_;
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
ofnode node_;
|
||||
#endif
|
||||
#ifdef CONFIG_DEVRES
|
||||
@ -242,7 +242,7 @@ static inline void dev_bic_flags(struct udevice *dev, u32 bic)
|
||||
*/
|
||||
static inline ofnode dev_ofnode(const struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
return dev->node_;
|
||||
#else
|
||||
return ofnode_null();
|
||||
@ -262,7 +262,7 @@ static inline ofnode dev_ofnode(const struct udevice *dev)
|
||||
|
||||
static inline int dev_of_offset(const struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
return ofnode_to_offset(dev_ofnode(dev));
|
||||
#else
|
||||
return -1;
|
||||
@ -271,7 +271,7 @@ static inline int dev_of_offset(const struct udevice *dev)
|
||||
|
||||
static inline bool dev_has_ofnode(const struct udevice *dev)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
return ofnode_valid(dev_ofnode(dev));
|
||||
#else
|
||||
return false;
|
||||
@ -280,7 +280,7 @@ static inline bool dev_has_ofnode(const struct udevice *dev)
|
||||
|
||||
static inline void dev_set_ofnode(struct udevice *dev, ofnode node)
|
||||
{
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
#if CONFIG_IS_ENABLED(OF_REAL)
|
||||
dev->node_ = node;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user