From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Thu, 2 Jul 2020 21:50:16 -0600 Subject: [PATCH 2/8] test: Add tests for SOC uclass In-Reply-To: <20200630043853.13276-3-d-gerlach@ti.com> References: <20200630043853.13276-1-d-gerlach@ti.com> <20200630043853.13276-3-d-gerlach@ti.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 29 Jun 2020 at 22:38, Dave Gerlach wrote: > > Add a sandbox SOC driver, and some tests for the SOC uclass. > > Signed-off-by: Dave Gerlach > --- > arch/sandbox/dts/test.dts | 4 + > configs/sandbox64_defconfig | 1 + > configs/sandbox_defconfig | 1 + > configs/sandbox_flattree_defconfig | 1 + > configs/sandbox_spl_defconfig | 1 + > drivers/soc/Makefile | 1 + > drivers/soc/soc_sandbox.c | 56 ++++++++++++++ > test/dm/Makefile | 1 + > test/dm/soc.c | 120 +++++++++++++++++++++++++++++ > 9 files changed, 186 insertions(+) > create mode 100644 drivers/soc/soc_sandbox.c > create mode 100644 test/dm/soc.c > Reviewed-by: Simon Glass