From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Sun, 8 Dec 2019 10:53:21 +0800 Subject: [PATCH v6 026/102] sandbox: Add a test for IRQ In-Reply-To: <20191206213936.v6.26.I026619a2340394947b85c9cecc4a97bff912dcb8@changeid> References: <20191207044315.51770-1-sjg@chromium.org> <20191206213936.v6.26.I026619a2340394947b85c9cecc4a97bff912dcb8@changeid> 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 Sat, Dec 7, 2019 at 12:47 PM Simon Glass wrote: > > Add a simple sandbox test for this uclass. > > Signed-off-by: Simon Glass > Reviewed-by: Bin Meng > --- > > Changes in v6: > - Move setting of CONFIG_IRQ in sandbox to this patch > > Changes in v5: None > Changes in v4: > - Drop itss uclass change in Makefile (now in previous patch) > - Drop sandbox defconfig change now that p2sb change is correct > - Enable IRQ for sandbox64 too to avoid build error > > Changes in v3: > - Change the sandbox test from ITSS to IRQ > > Changes in v2: None > > 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/misc/Makefile | 1 + > drivers/misc/irq_sandbox.c | 55 ++++++++++++++++++++++++++++++ > test/dm/Makefile | 1 + > test/dm/irq.c | 32 +++++++++++++++++ > 9 files changed, 97 insertions(+) > create mode 100644 drivers/misc/irq_sandbox.c > create mode 100644 test/dm/irq.c > applied to u-boot-x86/next, thanks!