Merge 'master' into 'os-build'
This commit is contained in:
commit
79c8a64832
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@
|
|||
VERSION = 6
|
||||
PATCHLEVEL = 14
|
||||
SUBLEVEL = 0
|
||||
EXTRAVERSION = -rc4
|
||||
EXTRAVERSION = -rc5
|
||||
NAME = Baby Opossum Posse
|
||||
|
||||
# *DOCUMENTATION*
|
||||
|
|
|
@ -468,6 +468,8 @@ static void walk_relocs(int (*process)(struct section *sec, Elf_Rel *rel,
|
|||
Elf_Sym *sym, const char *symname))
|
||||
{
|
||||
int i;
|
||||
struct section *extab_sec = sec_lookup("__ex_table");
|
||||
int extab_index = extab_sec ? extab_sec - secs : -1;
|
||||
|
||||
/* Walk through the relocations */
|
||||
for (i = 0; i < ehdr.e_shnum; i++) {
|
||||
|
@ -480,6 +482,9 @@ static void walk_relocs(int (*process)(struct section *sec, Elf_Rel *rel,
|
|||
if (sec->shdr.sh_type != SHT_REL_TYPE)
|
||||
continue;
|
||||
|
||||
if (sec->shdr.sh_info == extab_index)
|
||||
continue;
|
||||
|
||||
sec_symtab = sec->link;
|
||||
sec_applies = &secs[sec->shdr.sh_info];
|
||||
if (!(sec_applies->shdr.sh_flags & SHF_ALLOC))
|
||||
|
|
|
@ -59,9 +59,6 @@ struct bam_desc_hw {
|
|||
#define DESC_FLAG_NWD BIT(12)
|
||||
#define DESC_FLAG_CMD BIT(11)
|
||||
|
||||
#define BAM_NDP_REVISION_START 0x20
|
||||
#define BAM_NDP_REVISION_END 0x27
|
||||
|
||||
struct bam_async_desc {
|
||||
struct virt_dma_desc vd;
|
||||
|
||||
|
@ -401,7 +398,6 @@ struct bam_device {
|
|||
|
||||
/* dma start transaction tasklet */
|
||||
struct tasklet_struct task;
|
||||
u32 bam_revision;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -445,10 +441,8 @@ static void bam_reset(struct bam_device *bdev)
|
|||
writel_relaxed(val, bam_addr(bdev, 0, BAM_CTRL));
|
||||
|
||||
/* set descriptor threshold, start with 4 bytes */
|
||||
if (in_range(bdev->bam_revision, BAM_NDP_REVISION_START,
|
||||
BAM_NDP_REVISION_END))
|
||||
writel_relaxed(DEFAULT_CNT_THRSHLD,
|
||||
bam_addr(bdev, 0, BAM_DESC_CNT_TRSHLD));
|
||||
writel_relaxed(DEFAULT_CNT_THRSHLD,
|
||||
bam_addr(bdev, 0, BAM_DESC_CNT_TRSHLD));
|
||||
|
||||
/* Enable default set of h/w workarounds, ie all except BAM_FULL_PIPE */
|
||||
writel_relaxed(BAM_CNFG_BITS_DEFAULT, bam_addr(bdev, 0, BAM_CNFG_BITS));
|
||||
|
@ -1006,10 +1000,9 @@ static void bam_apply_new_config(struct bam_chan *bchan,
|
|||
maxburst = bchan->slave.src_maxburst;
|
||||
else
|
||||
maxburst = bchan->slave.dst_maxburst;
|
||||
if (in_range(bdev->bam_revision, BAM_NDP_REVISION_START,
|
||||
BAM_NDP_REVISION_END))
|
||||
writel_relaxed(maxburst,
|
||||
bam_addr(bdev, 0, BAM_DESC_CNT_TRSHLD));
|
||||
|
||||
writel_relaxed(maxburst,
|
||||
bam_addr(bdev, 0, BAM_DESC_CNT_TRSHLD));
|
||||
}
|
||||
|
||||
bchan->reconfigure = 0;
|
||||
|
@ -1199,11 +1192,10 @@ static int bam_init(struct bam_device *bdev)
|
|||
u32 val;
|
||||
|
||||
/* read revision and configuration information */
|
||||
val = readl_relaxed(bam_addr(bdev, 0, BAM_REVISION));
|
||||
if (!bdev->num_ees)
|
||||
if (!bdev->num_ees) {
|
||||
val = readl_relaxed(bam_addr(bdev, 0, BAM_REVISION));
|
||||
bdev->num_ees = (val >> NUM_EES_SHIFT) & NUM_EES_MASK;
|
||||
|
||||
bdev->bam_revision = val & REVISION_MASK;
|
||||
}
|
||||
|
||||
/* check that configured EE is within range */
|
||||
if (bdev->ee >= bdev->num_ees)
|
||||
|
|
|
@ -83,7 +83,9 @@ struct tegra_adma;
|
|||
* @nr_channels: Number of DMA channels available.
|
||||
* @ch_fifo_size_mask: Mask for FIFO size field.
|
||||
* @sreq_index_offset: Slave channel index offset.
|
||||
* @max_page: Maximum ADMA Channel Page.
|
||||
* @has_outstanding_reqs: If DMA channel can have outstanding requests.
|
||||
* @set_global_pg_config: Global page programming.
|
||||
*/
|
||||
struct tegra_adma_chip_data {
|
||||
unsigned int (*adma_get_burst_config)(unsigned int burst_size);
|
||||
|
@ -99,6 +101,7 @@ struct tegra_adma_chip_data {
|
|||
unsigned int nr_channels;
|
||||
unsigned int ch_fifo_size_mask;
|
||||
unsigned int sreq_index_offset;
|
||||
unsigned int max_page;
|
||||
bool has_outstanding_reqs;
|
||||
void (*set_global_pg_config)(struct tegra_adma *tdma);
|
||||
};
|
||||
|
@ -854,6 +857,7 @@ static const struct tegra_adma_chip_data tegra210_chip_data = {
|
|||
.nr_channels = 22,
|
||||
.ch_fifo_size_mask = 0xf,
|
||||
.sreq_index_offset = 2,
|
||||
.max_page = 0,
|
||||
.has_outstanding_reqs = false,
|
||||
.set_global_pg_config = NULL,
|
||||
};
|
||||
|
@ -871,6 +875,7 @@ static const struct tegra_adma_chip_data tegra186_chip_data = {
|
|||
.nr_channels = 32,
|
||||
.ch_fifo_size_mask = 0x1f,
|
||||
.sreq_index_offset = 4,
|
||||
.max_page = 4,
|
||||
.has_outstanding_reqs = true,
|
||||
.set_global_pg_config = tegra186_adma_global_page_config,
|
||||
};
|
||||
|
|
|
@ -2712,7 +2712,7 @@ EXPORT_SYMBOL_GPL(gpiod_direction_input);
|
|||
|
||||
int gpiod_direction_input_nonotify(struct gpio_desc *desc)
|
||||
{
|
||||
int ret = 0;
|
||||
int ret = 0, dir;
|
||||
|
||||
CLASS(gpio_chip_guard, guard)(desc);
|
||||
if (!guard.gc)
|
||||
|
@ -2740,12 +2740,12 @@ int gpiod_direction_input_nonotify(struct gpio_desc *desc)
|
|||
ret = guard.gc->direction_input(guard.gc,
|
||||
gpio_chip_hwgpio(desc));
|
||||
} else if (guard.gc->get_direction) {
|
||||
ret = guard.gc->get_direction(guard.gc,
|
||||
dir = guard.gc->get_direction(guard.gc,
|
||||
gpio_chip_hwgpio(desc));
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
if (dir < 0)
|
||||
return dir;
|
||||
|
||||
if (ret != GPIO_LINE_DIRECTION_IN) {
|
||||
if (dir != GPIO_LINE_DIRECTION_IN) {
|
||||
gpiod_warn(desc,
|
||||
"%s: missing direction_input() operation and line is output\n",
|
||||
__func__);
|
||||
|
@ -2764,7 +2764,7 @@ int gpiod_direction_input_nonotify(struct gpio_desc *desc)
|
|||
|
||||
static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
|
||||
{
|
||||
int val = !!value, ret = 0;
|
||||
int val = !!value, ret = 0, dir;
|
||||
|
||||
CLASS(gpio_chip_guard, guard)(desc);
|
||||
if (!guard.gc)
|
||||
|
@ -2788,12 +2788,12 @@ static int gpiod_direction_output_raw_commit(struct gpio_desc *desc, int value)
|
|||
} else {
|
||||
/* Check that we are in output mode if we can */
|
||||
if (guard.gc->get_direction) {
|
||||
ret = guard.gc->get_direction(guard.gc,
|
||||
dir = guard.gc->get_direction(guard.gc,
|
||||
gpio_chip_hwgpio(desc));
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
if (dir < 0)
|
||||
return dir;
|
||||
|
||||
if (ret != GPIO_LINE_DIRECTION_OUT) {
|
||||
if (dir != GPIO_LINE_DIRECTION_OUT) {
|
||||
gpiod_warn(desc,
|
||||
"%s: missing direction_output() operation\n",
|
||||
__func__);
|
||||
|
|
|
@ -325,7 +325,7 @@ to_fsl_samsung_hdmi_phy(struct clk_hw *hw)
|
|||
return container_of(hw, struct fsl_samsung_hdmi_phy, hw);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
fsl_samsung_hdmi_phy_configure_pll_lock_det(struct fsl_samsung_hdmi_phy *phy,
|
||||
const struct phy_config *cfg)
|
||||
{
|
||||
|
@ -341,6 +341,9 @@ fsl_samsung_hdmi_phy_configure_pll_lock_det(struct fsl_samsung_hdmi_phy *phy,
|
|||
break;
|
||||
}
|
||||
|
||||
if (unlikely(div == 4))
|
||||
return -EINVAL;
|
||||
|
||||
writeb(FIELD_PREP(REG12_CK_DIV_MASK, div), phy->regs + PHY_REG(12));
|
||||
|
||||
/*
|
||||
|
@ -364,6 +367,8 @@ fsl_samsung_hdmi_phy_configure_pll_lock_det(struct fsl_samsung_hdmi_phy *phy,
|
|||
FIELD_PREP(REG14_RP_CODE_MASK, 2) |
|
||||
FIELD_PREP(REG14_TG_CODE_HIGH_MASK, fld_tg_code >> 8),
|
||||
phy->regs + PHY_REG(14));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static unsigned long fsl_samsung_hdmi_phy_find_pms(unsigned long fout, u8 *p, u16 *m, u8 *s)
|
||||
|
@ -466,7 +471,11 @@ static int fsl_samsung_hdmi_phy_configure(struct fsl_samsung_hdmi_phy *phy,
|
|||
writeb(REG21_SEL_TX_CK_INV | FIELD_PREP(REG21_PMS_S_MASK,
|
||||
cfg->pll_div_regs[2] >> 4), phy->regs + PHY_REG(21));
|
||||
|
||||
fsl_samsung_hdmi_phy_configure_pll_lock_det(phy, cfg);
|
||||
ret = fsl_samsung_hdmi_phy_configure_pll_lock_det(phy, cfg);
|
||||
if (ret) {
|
||||
dev_err(phy->dev, "pixclock too large\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
writeb(REG33_FIX_DA | REG33_MODE_SET_DONE, phy->regs + PHY_REG(33));
|
||||
|
||||
|
|
|
@ -125,6 +125,7 @@ config PHY_ROCKCHIP_USBDP
|
|||
depends on ARCH_ROCKCHIP && OF
|
||||
depends on TYPEC
|
||||
select GENERIC_PHY
|
||||
select USB_COMMON
|
||||
help
|
||||
Enable this to support the Rockchip USB3.0/DP combo PHY with
|
||||
Samsung IP block. This is required for USB3 support on RK3588.
|
||||
|
|
|
@ -324,7 +324,10 @@ static int rockchip_combphy_parse_dt(struct device *dev, struct rockchip_combphy
|
|||
|
||||
priv->ext_refclk = device_property_present(dev, "rockchip,ext-refclk");
|
||||
|
||||
priv->phy_rst = devm_reset_control_get(dev, "phy");
|
||||
priv->phy_rst = devm_reset_control_get_exclusive(dev, "phy");
|
||||
/* fallback to old behaviour */
|
||||
if (PTR_ERR(priv->phy_rst) == -ENOENT)
|
||||
priv->phy_rst = devm_reset_control_array_get_exclusive(dev);
|
||||
if (IS_ERR(priv->phy_rst))
|
||||
return dev_err_probe(dev, PTR_ERR(priv->phy_rst), "failed to get phy reset\n");
|
||||
|
||||
|
|
|
@ -488,9 +488,9 @@ exynos5_usbdrd_pipe3_set_refclk(struct phy_usb_instance *inst)
|
|||
reg |= PHYCLKRST_REFCLKSEL_EXT_REFCLK;
|
||||
|
||||
/* FSEL settings corresponding to reference clock */
|
||||
reg &= ~PHYCLKRST_FSEL_PIPE_MASK |
|
||||
PHYCLKRST_MPLL_MULTIPLIER_MASK |
|
||||
PHYCLKRST_SSC_REFCLKSEL_MASK;
|
||||
reg &= ~(PHYCLKRST_FSEL_PIPE_MASK |
|
||||
PHYCLKRST_MPLL_MULTIPLIER_MASK |
|
||||
PHYCLKRST_SSC_REFCLKSEL_MASK);
|
||||
switch (phy_drd->extrefclk) {
|
||||
case EXYNOS5_FSEL_50MHZ:
|
||||
reg |= (PHYCLKRST_MPLL_MULTIPLIER_50M_REF |
|
||||
|
@ -532,9 +532,9 @@ exynos5_usbdrd_utmi_set_refclk(struct phy_usb_instance *inst)
|
|||
reg &= ~PHYCLKRST_REFCLKSEL_MASK;
|
||||
reg |= PHYCLKRST_REFCLKSEL_EXT_REFCLK;
|
||||
|
||||
reg &= ~PHYCLKRST_FSEL_UTMI_MASK |
|
||||
PHYCLKRST_MPLL_MULTIPLIER_MASK |
|
||||
PHYCLKRST_SSC_REFCLKSEL_MASK;
|
||||
reg &= ~(PHYCLKRST_FSEL_UTMI_MASK |
|
||||
PHYCLKRST_MPLL_MULTIPLIER_MASK |
|
||||
PHYCLKRST_SSC_REFCLKSEL_MASK);
|
||||
reg |= PHYCLKRST_FSEL(phy_drd->extrefclk);
|
||||
|
||||
return reg;
|
||||
|
@ -1296,14 +1296,17 @@ static int exynos5_usbdrd_gs101_phy_exit(struct phy *phy)
|
|||
struct exynos5_usbdrd_phy *phy_drd = to_usbdrd_phy(inst);
|
||||
int ret;
|
||||
|
||||
if (inst->phy_cfg->id == EXYNOS5_DRDPHY_UTMI) {
|
||||
ret = exynos850_usbdrd_phy_exit(phy);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
exynos5_usbdrd_phy_isol(inst, true);
|
||||
|
||||
if (inst->phy_cfg->id != EXYNOS5_DRDPHY_UTMI)
|
||||
return 0;
|
||||
|
||||
ret = exynos850_usbdrd_phy_exit(phy);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
exynos5_usbdrd_phy_isol(inst, true);
|
||||
return regulator_bulk_disable(phy_drd->drv_data->n_regulators,
|
||||
phy_drd->regulators);
|
||||
}
|
||||
|
|
|
@ -111,6 +111,7 @@ static const struct clk_impedance imp_lookup[] = {
|
|||
{ 4204000, { 511000, 609000, 706000, 802000 } },
|
||||
{ 3999000, { 571000, 648000, 726000, 803000 } }
|
||||
};
|
||||
#define DEFAULT_IMP_INDEX 3 /* Default impedance is 50 Ohm */
|
||||
|
||||
static int stm32_impedance_tune(struct stm32_combophy *combophy)
|
||||
{
|
||||
|
@ -119,10 +120,9 @@ static int stm32_impedance_tune(struct stm32_combophy *combophy)
|
|||
u8 imp_of, vswing_of;
|
||||
u32 max_imp = imp_lookup[0].microohm;
|
||||
u32 min_imp = imp_lookup[imp_size - 1].microohm;
|
||||
u32 max_vswing = imp_lookup[imp_size - 1].vswing[vswing_size - 1];
|
||||
u32 max_vswing;
|
||||
u32 min_vswing = imp_lookup[0].vswing[0];
|
||||
u32 val;
|
||||
u32 regval;
|
||||
|
||||
if (!of_property_read_u32(combophy->dev->of_node, "st,output-micro-ohms", &val)) {
|
||||
if (val < min_imp || val > max_imp) {
|
||||
|
@ -130,45 +130,43 @@ static int stm32_impedance_tune(struct stm32_combophy *combophy)
|
|||
return -EINVAL;
|
||||
}
|
||||
|
||||
regval = 0;
|
||||
for (imp_of = 0; imp_of < ARRAY_SIZE(imp_lookup); imp_of++) {
|
||||
if (imp_lookup[imp_of].microohm <= val) {
|
||||
regval = FIELD_PREP(STM32MP25_PCIEPRG_IMPCTRL_OHM, imp_of);
|
||||
for (imp_of = 0; imp_of < ARRAY_SIZE(imp_lookup); imp_of++)
|
||||
if (imp_lookup[imp_of].microohm <= val)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (WARN_ON(imp_of == ARRAY_SIZE(imp_lookup)))
|
||||
return -EINVAL;
|
||||
|
||||
dev_dbg(combophy->dev, "Set %u micro-ohms output impedance\n",
|
||||
imp_lookup[imp_of].microohm);
|
||||
|
||||
regmap_update_bits(combophy->regmap, SYSCFG_PCIEPRGCR,
|
||||
STM32MP25_PCIEPRG_IMPCTRL_OHM,
|
||||
regval);
|
||||
} else {
|
||||
regmap_read(combophy->regmap, SYSCFG_PCIEPRGCR, &val);
|
||||
imp_of = FIELD_GET(STM32MP25_PCIEPRG_IMPCTRL_OHM, val);
|
||||
}
|
||||
FIELD_PREP(STM32MP25_PCIEPRG_IMPCTRL_OHM, imp_of));
|
||||
} else
|
||||
imp_of = DEFAULT_IMP_INDEX;
|
||||
|
||||
if (!of_property_read_u32(combophy->dev->of_node, "st,output-vswing-microvolt", &val)) {
|
||||
max_vswing = imp_lookup[imp_of].vswing[vswing_size - 1];
|
||||
|
||||
if (val < min_vswing || val > max_vswing) {
|
||||
dev_err(combophy->dev, "Invalid value %u for output vswing\n", val);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
regval = 0;
|
||||
for (vswing_of = 0; vswing_of < ARRAY_SIZE(imp_lookup[imp_of].vswing); vswing_of++) {
|
||||
if (imp_lookup[imp_of].vswing[vswing_of] >= val) {
|
||||
regval = FIELD_PREP(STM32MP25_PCIEPRG_IMPCTRL_VSWING, vswing_of);
|
||||
for (vswing_of = 0; vswing_of < ARRAY_SIZE(imp_lookup[imp_of].vswing); vswing_of++)
|
||||
if (imp_lookup[imp_of].vswing[vswing_of] >= val)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (WARN_ON(vswing_of == ARRAY_SIZE(imp_lookup[imp_of].vswing)))
|
||||
return -EINVAL;
|
||||
|
||||
dev_dbg(combophy->dev, "Set %u microvolt swing\n",
|
||||
imp_lookup[imp_of].vswing[vswing_of]);
|
||||
|
||||
regmap_update_bits(combophy->regmap, SYSCFG_PCIEPRGCR,
|
||||
STM32MP25_PCIEPRG_IMPCTRL_VSWING,
|
||||
regval);
|
||||
FIELD_PREP(STM32MP25_PCIEPRG_IMPCTRL_VSWING, vswing_of));
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -928,6 +928,7 @@ static int tegra186_utmi_phy_init(struct phy *phy)
|
|||
unsigned int index = lane->index;
|
||||
struct device *dev = padctl->dev;
|
||||
int err;
|
||||
u32 reg;
|
||||
|
||||
port = tegra_xusb_find_usb2_port(padctl, index);
|
||||
if (!port) {
|
||||
|
@ -935,6 +936,16 @@ static int tegra186_utmi_phy_init(struct phy *phy)
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (port->mode == USB_DR_MODE_OTG ||
|
||||
port->mode == USB_DR_MODE_PERIPHERAL) {
|
||||
/* reset VBUS&ID OVERRIDE */
|
||||
reg = padctl_readl(padctl, USB2_VBUS_ID);
|
||||
reg &= ~VBUS_OVERRIDE;
|
||||
reg &= ~ID_OVERRIDE(~0);
|
||||
reg |= ID_OVERRIDE_FLOATING;
|
||||
padctl_writel(padctl, reg, USB2_VBUS_ID);
|
||||
}
|
||||
|
||||
if (port->supply && port->mode == USB_DR_MODE_HOST) {
|
||||
err = regulator_enable(port->supply);
|
||||
if (err) {
|
||||
|
|
|
@ -424,6 +424,12 @@ static int phy_gmii_sel_init_ports(struct phy_gmii_sel_priv *priv)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static const struct regmap_config phy_gmii_sel_regmap_cfg = {
|
||||
.reg_bits = 32,
|
||||
.val_bits = 32,
|
||||
.reg_stride = 4,
|
||||
};
|
||||
|
||||
static int phy_gmii_sel_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct device *dev = &pdev->dev;
|
||||
|
@ -468,7 +474,14 @@ static int phy_gmii_sel_probe(struct platform_device *pdev)
|
|||
|
||||
priv->regmap = syscon_node_to_regmap(node->parent);
|
||||
if (IS_ERR(priv->regmap)) {
|
||||
priv->regmap = device_node_to_regmap(node);
|
||||
void __iomem *base;
|
||||
|
||||
base = devm_platform_ioremap_resource(pdev, 0);
|
||||
if (IS_ERR(base))
|
||||
return dev_err_probe(dev, PTR_ERR(base),
|
||||
"failed to get base memory resource\n");
|
||||
|
||||
priv->regmap = regmap_init_mmio(dev, base, &phy_gmii_sel_regmap_cfg);
|
||||
if (IS_ERR(priv->regmap))
|
||||
return dev_err_probe(dev, PTR_ERR(priv->regmap),
|
||||
"Failed to get syscon\n");
|
||||
|
|
Loading…
Reference in New Issue