blob: eefdf12369c3fe9dcd75495b6c857d35179262b5 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Priyanka Jainef76b2e2018-10-29 09:17:09 +00002# Copyright 2016-2018 NXP
Mingkai Hu0e58b512015-10-26 19:47:50 +08003# Copyright 2014-2015, Freescale Semiconductor
Mingkai Hu0e58b512015-10-26 19:47:50 +08004
5obj-y += cpu.o
6obj-y += lowlevel.o
7obj-y += soc.o
Sumit Garge1df3372018-01-06 09:04:23 +05308ifndef CONFIG_SPL_BUILD
Michael Walle53ec9992020-06-01 21:53:27 +02009obj-$(CONFIG_MP) += mp.o spintable.o
Mingkai Hu0e58b512015-10-26 19:47:50 +080010obj-$(CONFIG_OF_LIBFDT) += fdt.o
Sumit Garge1df3372018-01-06 09:04:23 +053011endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080012obj-$(CONFIG_SPL) += spl.o
13
14ifneq ($(CONFIG_FSL_LSCH3),)
15obj-y += fsl_lsch3_speed.o
16obj-$(CONFIG_SYS_HAS_SERDES) += fsl_lsch3_serdes.o
Mingkai Hue4e93ea2015-10-26 19:47:51 +080017else
18ifneq ($(CONFIG_FSL_LSCH2),)
19obj-y += fsl_lsch2_speed.o
20obj-$(CONFIG_SYS_HAS_SERDES) += fsl_lsch2_serdes.o
21endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080022endif
23
Priyanka Jainef76b2e2018-10-29 09:17:09 +000024ifneq ($(CONFIG_ARCH_LX2160A),)
25obj-$(CONFIG_SYS_HAS_SERDES) += lx2160a_serdes.o
Laurentiu Tudor7085d072019-10-18 09:01:55 +000026obj-y += icid.o lx2160_ids.o
Priyanka Jainef76b2e2018-10-29 09:17:09 +000027endif
28
Meenakshi Aggarwalccb5d5d2020-10-29 19:16:16 +053029ifneq ($(CONFIG_ARCH_LX2162A),)
30obj-$(CONFIG_SYS_HAS_SERDES) += lx2160a_serdes.o
31obj-y += icid.o lx2160_ids.o
32endif
33
York Sun4ce6fbf2017-03-27 11:41:01 -070034ifneq ($(CONFIG_ARCH_LS2080A),)
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +053035obj-$(CONFIG_SYS_HAS_SERDES) += ls2080a_serdes.o
Laurentiu Tudor4adff392019-10-18 09:01:54 +000036obj-y += icid.o ls2088_ids.o
Prabhakar Kushwaha77f7ded2015-11-09 16:42:20 +053037endif
38
York Sun342cf062017-03-27 11:41:02 -070039ifneq ($(CONFIG_ARCH_LS1043A),)
Mingkai Hueee86ff2015-10-26 19:47:52 +080040obj-$(CONFIG_SYS_HAS_SERDES) += ls1043a_serdes.o
macro.wave.z@gmail.com51d94212016-12-08 11:58:26 +080041obj-$(CONFIG_ARMV8_PSCI) += ls1043a_psci.o
Laurentiu Tudor22012d52018-08-27 17:33:59 +030042obj-y += icid.o ls1043_ids.o
Mingkai Hueee86ff2015-10-26 19:47:52 +080043endif
Prabhakar Kushwahad169ebe2016-06-03 18:41:31 +053044
York Sunb3d71642016-09-26 08:09:26 -070045ifneq ($(CONFIG_ARCH_LS1012A),)
Prabhakar Kushwahad169ebe2016-06-03 18:41:31 +053046obj-$(CONFIG_SYS_HAS_SERDES) += ls1012a_serdes.o
47endif
Mingkai Hucd54c0f2016-07-05 16:01:55 +080048
York Sunbad49842016-09-26 08:09:24 -070049ifneq ($(CONFIG_ARCH_LS1046A),)
Mingkai Hucd54c0f2016-07-05 16:01:55 +080050obj-$(CONFIG_SYS_HAS_SERDES) += ls1046a_serdes.o
Laurentiu Tudor512d13e2018-08-09 15:19:46 +030051obj-y += icid.o ls1046_ids.o
Mingkai Hucd54c0f2016-07-05 16:01:55 +080052endif
Ashish Kumarb25faa22017-08-31 16:12:53 +053053
54ifneq ($(CONFIG_ARCH_LS1088A),)
55obj-$(CONFIG_SYS_HAS_SERDES) += ls1088a_serdes.o
Laurentiu Tudor7690ea72019-07-30 17:29:58 +030056obj-y += icid.o ls1088_ids.o
Ashish Kumarb25faa22017-08-31 16:12:53 +053057endif
Yuantian Tang4aefa162019-04-10 16:43:33 +080058
59ifneq ($(CONFIG_ARCH_LS1028A),)
60obj-$(CONFIG_SYS_HAS_SERDES) += ls1028a_serdes.o
Laurentiu Tudor01dc5472019-07-30 17:29:59 +030061obj-y += icid.o ls1028_ids.o
Yuantian Tang4aefa162019-04-10 16:43:33 +080062endif