Skip to content
Snippets Groups Projects
Commit b0265d56 authored by Simon Glass's avatar Simon Glass
Browse files

dm: tegra: nand: Remove use of fdtdec GPIO support


These functions are going away, so use the new uclass support instead.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 04072cba
No related branches found
No related tags found
No related merge requests found
...@@ -79,7 +79,7 @@ enum { ...@@ -79,7 +79,7 @@ enum {
struct fdt_nand { struct fdt_nand {
struct nand_ctlr *reg; struct nand_ctlr *reg;
int enabled; /* 1 to enable, 0 to disable */ int enabled; /* 1 to enable, 0 to disable */
struct fdt_gpio_state wp_gpio; /* write-protect GPIO */ struct gpio_desc wp_gpio; /* write-protect GPIO */
s32 width; /* bit width, normally 8 */ s32 width; /* bit width, normally 8 */
u32 timing[FDT_NAND_TIMING_COUNT]; u32 timing[FDT_NAND_TIMING_COUNT];
}; };
...@@ -945,8 +945,8 @@ static int fdt_decode_nand(const void *blob, int node, struct fdt_nand *config) ...@@ -945,8 +945,8 @@ static int fdt_decode_nand(const void *blob, int node, struct fdt_nand *config)
config->reg = (struct nand_ctlr *)fdtdec_get_addr(blob, node, "reg"); config->reg = (struct nand_ctlr *)fdtdec_get_addr(blob, node, "reg");
config->enabled = fdtdec_get_is_enabled(blob, node); config->enabled = fdtdec_get_is_enabled(blob, node);
config->width = fdtdec_get_int(blob, node, "nvidia,nand-width", 8); config->width = fdtdec_get_int(blob, node, "nvidia,nand-width", 8);
err = fdtdec_decode_gpio(blob, node, "nvidia,wp-gpios", err = gpio_request_by_name_nodev(blob, node, "nvidia,wp-gpios", 0,
&config->wp_gpio); &config->wp_gpio, GPIOD_IS_OUT);
if (err) if (err)
return err; return err;
err = fdtdec_get_int_array(blob, node, "nvidia,timing", err = fdtdec_get_int_array(blob, node, "nvidia,timing",
...@@ -1009,8 +1009,7 @@ int tegra_nand_init(struct nand_chip *nand, int devnum) ...@@ -1009,8 +1009,7 @@ int tegra_nand_init(struct nand_chip *nand, int devnum)
/* Adjust timing for NAND device */ /* Adjust timing for NAND device */
setup_timing(config->timing, info->reg); setup_timing(config->timing, info->reg);
fdtdec_setup_gpio(&config->wp_gpio); dm_gpio_set_value(&config->wp_gpio, 1);
gpio_direction_output(config->wp_gpio.gpio, 1);
our_mtd = &nand_info[devnum]; our_mtd = &nand_info[devnum];
our_mtd->priv = nand; our_mtd->priv = nand;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment