From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Sun, 8 Dec 2019 10:53:18 +0800 Subject: [PATCH v6 025/102] x86: Move UCLASS_IRQ into a separate file In-Reply-To: <20191206213936.v6.25.I6e887ca4f819fa15009bbcb90062498a58f8c135@changeid> References: <20191207044315.51770-1-sjg@chromium.org> <20191206213936.v6.25.I6e887ca4f819fa15009bbcb90062498a58f8c135@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: > > Update this uclass to support the needs of the Apollo Lake ITSS. It > supports four operations. > > Move the uclass into a separate directory so that sandbox can use it too. > Add a new Kconfig to control it and enable this on x86. > > Signed-off-by: Simon Glass > Reviewed-by: Bin Meng > --- > > Changes in v6: None > Changes in v5: None > Changes in v4: > - Drop itss uclass in Makefile > - Fix 'enabled' typo > - apollolake -> Apollo Lake > > Changes in v3: > - Add two more operations to IRQ > - Use the IRQ uclass instead of creating a new ITSS uclass > > Changes in v2: None > > arch/Kconfig | 1 + > arch/x86/cpu/irq.c | 5 --- > drivers/misc/Kconfig | 9 ++++ > drivers/misc/Makefile | 1 + > drivers/misc/irq-uclass.c | 53 +++++++++++++++++++++++ > include/irq.h | 88 +++++++++++++++++++++++++++++++++++++++ > 6 files changed, 152 insertions(+), 5 deletions(-) > create mode 100644 drivers/misc/irq-uclass.c > create mode 100644 include/irq.h > applied to u-boot-x86/next, thanks!