SND_SOC_DAPM_LINE("HDMI", NULL),
 };
 
-static const struct snd_soc_dapm_route rockchip_dapm_routes[] = {
-       /* Input Lines */
-       {"MIC", NULL, "Headset Mic"},
-       {"DMIC1L", NULL, "Int Mic"},
-       {"DMIC1R", NULL, "Int Mic"},
-       {"DMic", NULL, "Int Mic"},
-
-       /* Output Lines */
-       {"Headphones", NULL, "HPL"},
-       {"Headphones", NULL, "HPR"},
-       {"Speakers", NULL, "Speaker"},
-       {"HDMI", NULL, "TX"},
-};
-
 static const struct snd_kcontrol_new rockchip_controls[] = {
        SOC_DAPM_PIN_SWITCH("Headphones"),
        SOC_DAPM_PIN_SWITCH("Speakers"),
        .owner = THIS_MODULE,
        .dapm_widgets = rockchip_dapm_widgets,
        .num_dapm_widgets = ARRAY_SIZE(rockchip_dapm_widgets),
-       .dapm_routes = rockchip_dapm_routes,
-       .num_dapm_routes = ARRAY_SIZE(rockchip_dapm_routes),
        .controls = rockchip_controls,
        .num_controls = ARRAY_SIZE(rockchip_controls),
 };
        },
 };
 
+static const struct snd_soc_dapm_route rockchip_sound_cdndp_routes[] = {
+       /* Output */
+       {"HDMI", NULL, "TX"},
+};
+
+static const struct snd_soc_dapm_route rockchip_sound_da7219_routes[] = {
+       /* Output */
+       {"Headphones", NULL, "HPL"},
+       {"Headphones", NULL, "HPR"},
+
+       /* Input */
+       {"MIC", NULL, "Headset Mic"},
+};
+
+static const struct snd_soc_dapm_route rockchip_sound_dmic_routes[] = {
+       /* Input */
+       {"DMic", NULL, "Int Mic"},
+};
+
+static const struct snd_soc_dapm_route rockchip_sound_max98357a_routes[] = {
+       /* Output */
+       {"Speakers", NULL, "Speaker"},
+};
+
+static const struct snd_soc_dapm_route rockchip_sound_rt5514_routes[] = {
+       /* Input */
+       {"DMIC1L", NULL, "Int Mic"},
+       {"DMIC1R", NULL, "Int Mic"},
+};
+
+struct rockchip_sound_route {
+       const struct snd_soc_dapm_route *routes;
+       int num_routes;
+};
+
+static const struct rockchip_sound_route rockchip_routes[] = {
+       [DAILINK_CDNDP] = {
+               .routes = rockchip_sound_cdndp_routes,
+               .num_routes = ARRAY_SIZE(rockchip_sound_cdndp_routes),
+       },
+       [DAILINK_DA7219] = {
+               .routes = rockchip_sound_da7219_routes,
+               .num_routes = ARRAY_SIZE(rockchip_sound_da7219_routes),
+       },
+       [DAILINK_DMIC] = {
+               .routes = rockchip_sound_dmic_routes,
+               .num_routes = ARRAY_SIZE(rockchip_sound_dmic_routes),
+       },
+       [DAILINK_MAX98357A] = {
+               .routes = rockchip_sound_max98357a_routes,
+               .num_routes = ARRAY_SIZE(rockchip_sound_max98357a_routes),
+       },
+       [DAILINK_RT5514] = {
+               .routes = rockchip_sound_rt5514_routes,
+               .num_routes = ARRAY_SIZE(rockchip_sound_rt5514_routes),
+       },
+       [DAILINK_RT5514_DSP] = {},
+};
+
 static int rockchip_sound_codec_node_match(struct device_node *np_codec)
 {
        int i;
        struct device_node *np_cpu, *np_cpu0, *np_cpu1;
        struct device_node *np_codec;
        struct snd_soc_dai_link *dai;
+       struct snd_soc_dapm_route *routes;
        int i, index;
 
        card->dai_link = devm_kzalloc(dev, sizeof(rockchip_dais),
        if (!card->dai_link)
                return -ENOMEM;
 
+       routes = devm_kzalloc(dev, sizeof(rockchip_routes),
+                             GFP_KERNEL);
+       if (!routes)
+               return -ENOMEM;
+       card->dapm_routes = routes;
+
        np_cpu0 = of_parse_phandle(dev->of_node, "rockchip,cpu", 0);
        np_cpu1 = of_parse_phandle(dev->of_node, "rockchip,cpu", 1);
 
+       card->num_dapm_routes = 0;
        card->num_links = 0;
        for (i = 0; i < ARRAY_SIZE(rockchip_dais); i++) {
                np_codec = of_parse_phandle(dev->of_node,
                dai->codec_of_node = np_codec;
                dai->platform_of_node = np_cpu;
                dai->cpu_of_node = np_cpu;
+
+               memcpy(routes + card->num_dapm_routes,
+                      rockchip_routes[index].routes,
+                      rockchip_routes[index].num_routes * sizeof(*routes));
+               card->num_dapm_routes += rockchip_routes[index].num_routes;
        }
 
        return 0;