xref: /kernel/linux/linux-5.10/arch/m68k/q40/q40ints.c (revision 8c2ecf20)
18c2ecf20Sopenharmony_ci/*
28c2ecf20Sopenharmony_ci * arch/m68k/q40/q40ints.c
38c2ecf20Sopenharmony_ci *
48c2ecf20Sopenharmony_ci * Copyright (C) 1999,2001 Richard Zidlicky
58c2ecf20Sopenharmony_ci *
68c2ecf20Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public
78c2ecf20Sopenharmony_ci * License.  See the file COPYING in the main directory of this archive
88c2ecf20Sopenharmony_ci * for more details.
98c2ecf20Sopenharmony_ci *
108c2ecf20Sopenharmony_ci * .. used to be loosely based on bvme6000ints.c
118c2ecf20Sopenharmony_ci *
128c2ecf20Sopenharmony_ci */
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci#include <linux/types.h>
158c2ecf20Sopenharmony_ci#include <linux/kernel.h>
168c2ecf20Sopenharmony_ci#include <linux/errno.h>
178c2ecf20Sopenharmony_ci#include <linux/interrupt.h>
188c2ecf20Sopenharmony_ci#include <linux/irq.h>
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci#include <asm/ptrace.h>
218c2ecf20Sopenharmony_ci#include <asm/traps.h>
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ci#include <asm/q40_master.h>
248c2ecf20Sopenharmony_ci#include <asm/q40ints.h>
258c2ecf20Sopenharmony_ci
268c2ecf20Sopenharmony_ci/*
278c2ecf20Sopenharmony_ci * Q40 IRQs are defined as follows:
288c2ecf20Sopenharmony_ci *            3,4,5,6,7,10,11,14,15 : ISA dev IRQs
298c2ecf20Sopenharmony_ci *            16-31: reserved
308c2ecf20Sopenharmony_ci *            32   : keyboard int
318c2ecf20Sopenharmony_ci *            33   : frame int (50/200 Hz periodic timer)
328c2ecf20Sopenharmony_ci *            34   : sample int (10/20 KHz periodic timer)
338c2ecf20Sopenharmony_ci *
348c2ecf20Sopenharmony_ci*/
358c2ecf20Sopenharmony_ci
368c2ecf20Sopenharmony_cistatic void q40_irq_handler(unsigned int, struct pt_regs *fp);
378c2ecf20Sopenharmony_cistatic void q40_irq_enable(struct irq_data *data);
388c2ecf20Sopenharmony_cistatic void q40_irq_disable(struct irq_data *data);
398c2ecf20Sopenharmony_ci
408c2ecf20Sopenharmony_ciunsigned short q40_ablecount[35];
418c2ecf20Sopenharmony_ciunsigned short q40_state[35];
428c2ecf20Sopenharmony_ci
438c2ecf20Sopenharmony_cistatic unsigned int q40_irq_startup(struct irq_data *data)
448c2ecf20Sopenharmony_ci{
458c2ecf20Sopenharmony_ci	unsigned int irq = data->irq;
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci	/* test for ISA ints not implemented by HW */
488c2ecf20Sopenharmony_ci	switch (irq) {
498c2ecf20Sopenharmony_ci	case 1: case 2: case 8: case 9:
508c2ecf20Sopenharmony_ci	case 11: case 12: case 13:
518c2ecf20Sopenharmony_ci		pr_warn("%s: ISA IRQ %d not implemented by HW\n", __func__,
528c2ecf20Sopenharmony_ci			irq);
538c2ecf20Sopenharmony_ci		/* FIXME return -ENXIO; */
548c2ecf20Sopenharmony_ci	}
558c2ecf20Sopenharmony_ci	return 0;
568c2ecf20Sopenharmony_ci}
578c2ecf20Sopenharmony_ci
588c2ecf20Sopenharmony_cistatic void q40_irq_shutdown(struct irq_data *data)
598c2ecf20Sopenharmony_ci{
608c2ecf20Sopenharmony_ci}
618c2ecf20Sopenharmony_ci
628c2ecf20Sopenharmony_cistatic struct irq_chip q40_irq_chip = {
638c2ecf20Sopenharmony_ci	.name		= "q40",
648c2ecf20Sopenharmony_ci	.irq_startup	= q40_irq_startup,
658c2ecf20Sopenharmony_ci	.irq_shutdown	= q40_irq_shutdown,
668c2ecf20Sopenharmony_ci	.irq_enable	= q40_irq_enable,
678c2ecf20Sopenharmony_ci	.irq_disable	= q40_irq_disable,
688c2ecf20Sopenharmony_ci};
698c2ecf20Sopenharmony_ci
708c2ecf20Sopenharmony_ci/*
718c2ecf20Sopenharmony_ci * void q40_init_IRQ (void)
728c2ecf20Sopenharmony_ci *
738c2ecf20Sopenharmony_ci * Parameters:	None
748c2ecf20Sopenharmony_ci *
758c2ecf20Sopenharmony_ci * Returns:	Nothing
768c2ecf20Sopenharmony_ci *
778c2ecf20Sopenharmony_ci * This function is called during kernel startup to initialize
788c2ecf20Sopenharmony_ci * the q40 IRQ handling routines.
798c2ecf20Sopenharmony_ci */
808c2ecf20Sopenharmony_ci
818c2ecf20Sopenharmony_cistatic int disabled;
828c2ecf20Sopenharmony_ci
838c2ecf20Sopenharmony_civoid __init q40_init_IRQ(void)
848c2ecf20Sopenharmony_ci{
858c2ecf20Sopenharmony_ci	m68k_setup_irq_controller(&q40_irq_chip, handle_simple_irq, 1,
868c2ecf20Sopenharmony_ci				  Q40_IRQ_MAX);
878c2ecf20Sopenharmony_ci
888c2ecf20Sopenharmony_ci	/* setup handler for ISA ints */
898c2ecf20Sopenharmony_ci	m68k_setup_auto_interrupt(q40_irq_handler);
908c2ecf20Sopenharmony_ci
918c2ecf20Sopenharmony_ci	m68k_irq_startup_irq(IRQ_AUTO_2);
928c2ecf20Sopenharmony_ci	m68k_irq_startup_irq(IRQ_AUTO_4);
938c2ecf20Sopenharmony_ci
948c2ecf20Sopenharmony_ci	/* now enable some ints.. */
958c2ecf20Sopenharmony_ci	master_outb(1, EXT_ENABLE_REG);  /* ISA IRQ 5-15 */
968c2ecf20Sopenharmony_ci
978c2ecf20Sopenharmony_ci	/* make sure keyboard IRQ is disabled */
988c2ecf20Sopenharmony_ci	master_outb(0, KEY_IRQ_ENABLE_REG);
998c2ecf20Sopenharmony_ci}
1008c2ecf20Sopenharmony_ci
1018c2ecf20Sopenharmony_ci
1028c2ecf20Sopenharmony_ci/*
1038c2ecf20Sopenharmony_ci * this stuff doesn't really belong here..
1048c2ecf20Sopenharmony_ci */
1058c2ecf20Sopenharmony_ci
1068c2ecf20Sopenharmony_ciint ql_ticks;              /* 200Hz ticks since last jiffie */
1078c2ecf20Sopenharmony_cistatic int sound_ticks;
1088c2ecf20Sopenharmony_ci
1098c2ecf20Sopenharmony_ci#define SVOL 45
1108c2ecf20Sopenharmony_ci
1118c2ecf20Sopenharmony_civoid q40_mksound(unsigned int hz, unsigned int ticks)
1128c2ecf20Sopenharmony_ci{
1138c2ecf20Sopenharmony_ci	/* for now ignore hz, except that hz==0 switches off sound */
1148c2ecf20Sopenharmony_ci	/* simply alternate the ampl (128-SVOL)-(128+SVOL)-..-.. at 200Hz */
1158c2ecf20Sopenharmony_ci	if (hz == 0) {
1168c2ecf20Sopenharmony_ci		if (sound_ticks)
1178c2ecf20Sopenharmony_ci			sound_ticks = 1;
1188c2ecf20Sopenharmony_ci
1198c2ecf20Sopenharmony_ci		*DAC_LEFT = 128;
1208c2ecf20Sopenharmony_ci		*DAC_RIGHT = 128;
1218c2ecf20Sopenharmony_ci
1228c2ecf20Sopenharmony_ci		return;
1238c2ecf20Sopenharmony_ci	}
1248c2ecf20Sopenharmony_ci	/* sound itself is done in q40_timer_int */
1258c2ecf20Sopenharmony_ci	if (sound_ticks == 0)
1268c2ecf20Sopenharmony_ci		sound_ticks = 1000; /* pretty long beep */
1278c2ecf20Sopenharmony_ci	sound_ticks = ticks << 1;
1288c2ecf20Sopenharmony_ci}
1298c2ecf20Sopenharmony_ci
1308c2ecf20Sopenharmony_cistatic irqreturn_t q40_timer_int(int irq, void *dev_id)
1318c2ecf20Sopenharmony_ci{
1328c2ecf20Sopenharmony_ci	irq_handler_t timer_routine = dev_id;
1338c2ecf20Sopenharmony_ci
1348c2ecf20Sopenharmony_ci	ql_ticks = ql_ticks ? 0 : 1;
1358c2ecf20Sopenharmony_ci	if (sound_ticks) {
1368c2ecf20Sopenharmony_ci		unsigned char sval=(sound_ticks & 1) ? 128-SVOL : 128+SVOL;
1378c2ecf20Sopenharmony_ci		sound_ticks--;
1388c2ecf20Sopenharmony_ci		*DAC_LEFT=sval;
1398c2ecf20Sopenharmony_ci		*DAC_RIGHT=sval;
1408c2ecf20Sopenharmony_ci	}
1418c2ecf20Sopenharmony_ci
1428c2ecf20Sopenharmony_ci	if (!ql_ticks) {
1438c2ecf20Sopenharmony_ci		unsigned long flags;
1448c2ecf20Sopenharmony_ci
1458c2ecf20Sopenharmony_ci		local_irq_save(flags);
1468c2ecf20Sopenharmony_ci		timer_routine(0, NULL);
1478c2ecf20Sopenharmony_ci		local_irq_restore(flags);
1488c2ecf20Sopenharmony_ci	}
1498c2ecf20Sopenharmony_ci	return IRQ_HANDLED;
1508c2ecf20Sopenharmony_ci}
1518c2ecf20Sopenharmony_ci
1528c2ecf20Sopenharmony_civoid q40_sched_init (irq_handler_t timer_routine)
1538c2ecf20Sopenharmony_ci{
1548c2ecf20Sopenharmony_ci	int timer_irq;
1558c2ecf20Sopenharmony_ci
1568c2ecf20Sopenharmony_ci	timer_irq = Q40_IRQ_FRAME;
1578c2ecf20Sopenharmony_ci
1588c2ecf20Sopenharmony_ci	if (request_irq(timer_irq, q40_timer_int, 0, "timer", timer_routine))
1598c2ecf20Sopenharmony_ci		panic("Couldn't register timer int");
1608c2ecf20Sopenharmony_ci
1618c2ecf20Sopenharmony_ci	master_outb(-1, FRAME_CLEAR_REG);
1628c2ecf20Sopenharmony_ci	master_outb( 1, FRAME_RATE_REG);
1638c2ecf20Sopenharmony_ci}
1648c2ecf20Sopenharmony_ci
1658c2ecf20Sopenharmony_ci
1668c2ecf20Sopenharmony_ci/*
1678c2ecf20Sopenharmony_ci * tables to translate bits into IRQ numbers
1688c2ecf20Sopenharmony_ci * it is a good idea to order the entries by priority
1698c2ecf20Sopenharmony_ci *
1708c2ecf20Sopenharmony_ci*/
1718c2ecf20Sopenharmony_ci
1728c2ecf20Sopenharmony_cistruct IRQ_TABLE{ unsigned mask; int irq ;};
1738c2ecf20Sopenharmony_ci#if 0
1748c2ecf20Sopenharmony_cistatic struct IRQ_TABLE iirqs[]={
1758c2ecf20Sopenharmony_ci  {Q40_IRQ_FRAME_MASK,Q40_IRQ_FRAME},
1768c2ecf20Sopenharmony_ci  {Q40_IRQ_KEYB_MASK,Q40_IRQ_KEYBOARD},
1778c2ecf20Sopenharmony_ci  {0,0}};
1788c2ecf20Sopenharmony_ci#endif
1798c2ecf20Sopenharmony_cistatic struct IRQ_TABLE eirqs[] = {
1808c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ3_MASK,	.irq = 3 },	/* ser 1 */
1818c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ4_MASK,	.irq = 4 },	/* ser 2 */
1828c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ14_MASK,	.irq = 14 },	/* IDE 1 */
1838c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ15_MASK,	.irq = 15 },	/* IDE 2 */
1848c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ6_MASK,	.irq = 6 },	/* floppy, handled elsewhere */
1858c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ7_MASK,	.irq = 7 },	/* par */
1868c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ5_MASK,	.irq = 5 },
1878c2ecf20Sopenharmony_ci  { .mask = Q40_IRQ10_MASK,	.irq = 10 },
1888c2ecf20Sopenharmony_ci  {0,0}
1898c2ecf20Sopenharmony_ci};
1908c2ecf20Sopenharmony_ci
1918c2ecf20Sopenharmony_ci/* complain only this many times about spurious ints : */
1928c2ecf20Sopenharmony_cistatic int ccleirq=60;    /* ISA dev IRQs*/
1938c2ecf20Sopenharmony_ci/*static int cclirq=60;*/     /* internal */
1948c2ecf20Sopenharmony_ci
1958c2ecf20Sopenharmony_ci/* FIXME: add shared ints,mask,unmask,probing.... */
1968c2ecf20Sopenharmony_ci
1978c2ecf20Sopenharmony_ci#define IRQ_INPROGRESS 1
1988c2ecf20Sopenharmony_ci/*static unsigned short saved_mask;*/
1998c2ecf20Sopenharmony_ci//static int do_tint=0;
2008c2ecf20Sopenharmony_ci
2018c2ecf20Sopenharmony_ci#define DEBUG_Q40INT
2028c2ecf20Sopenharmony_ci/*#define IP_USE_DISABLE *//* would be nice, but crashes ???? */
2038c2ecf20Sopenharmony_ci
2048c2ecf20Sopenharmony_cistatic int mext_disabled=0;  /* ext irq disabled by master chip? */
2058c2ecf20Sopenharmony_cistatic int aliased_irq=0;  /* how many times inside handler ?*/
2068c2ecf20Sopenharmony_ci
2078c2ecf20Sopenharmony_ci
2088c2ecf20Sopenharmony_ci/* got interrupt, dispatch to ISA or keyboard/timer IRQs */
2098c2ecf20Sopenharmony_cistatic void q40_irq_handler(unsigned int irq, struct pt_regs *fp)
2108c2ecf20Sopenharmony_ci{
2118c2ecf20Sopenharmony_ci	unsigned mir, mer;
2128c2ecf20Sopenharmony_ci	int i;
2138c2ecf20Sopenharmony_ci
2148c2ecf20Sopenharmony_ci//repeat:
2158c2ecf20Sopenharmony_ci	mir = master_inb(IIRQ_REG);
2168c2ecf20Sopenharmony_ci#ifdef CONFIG_BLK_DEV_FD
2178c2ecf20Sopenharmony_ci	if ((mir & Q40_IRQ_EXT_MASK) &&
2188c2ecf20Sopenharmony_ci	    (master_inb(EIRQ_REG) & Q40_IRQ6_MASK)) {
2198c2ecf20Sopenharmony_ci		floppy_hardint();
2208c2ecf20Sopenharmony_ci		return;
2218c2ecf20Sopenharmony_ci	}
2228c2ecf20Sopenharmony_ci#endif
2238c2ecf20Sopenharmony_ci	switch (irq) {
2248c2ecf20Sopenharmony_ci	case 4:
2258c2ecf20Sopenharmony_ci	case 6:
2268c2ecf20Sopenharmony_ci		do_IRQ(Q40_IRQ_SAMPLE, fp);
2278c2ecf20Sopenharmony_ci		return;
2288c2ecf20Sopenharmony_ci	}
2298c2ecf20Sopenharmony_ci	if (mir & Q40_IRQ_FRAME_MASK) {
2308c2ecf20Sopenharmony_ci		do_IRQ(Q40_IRQ_FRAME, fp);
2318c2ecf20Sopenharmony_ci		master_outb(-1, FRAME_CLEAR_REG);
2328c2ecf20Sopenharmony_ci	}
2338c2ecf20Sopenharmony_ci	if ((mir & Q40_IRQ_SER_MASK) || (mir & Q40_IRQ_EXT_MASK)) {
2348c2ecf20Sopenharmony_ci		mer = master_inb(EIRQ_REG);
2358c2ecf20Sopenharmony_ci		for (i = 0; eirqs[i].mask; i++) {
2368c2ecf20Sopenharmony_ci			if (mer & eirqs[i].mask) {
2378c2ecf20Sopenharmony_ci				irq = eirqs[i].irq;
2388c2ecf20Sopenharmony_ci/*
2398c2ecf20Sopenharmony_ci * There is a little mess wrt which IRQ really caused this irq request. The
2408c2ecf20Sopenharmony_ci * main problem is that IIRQ_REG and EIRQ_REG reflect the state when they
2418c2ecf20Sopenharmony_ci * are read - which is long after the request came in. In theory IRQs should
2428c2ecf20Sopenharmony_ci * not just go away but they occasionally do
2438c2ecf20Sopenharmony_ci */
2448c2ecf20Sopenharmony_ci				if (irq > 4 && irq <= 15 && mext_disabled) {
2458c2ecf20Sopenharmony_ci					/*aliased_irq++;*/
2468c2ecf20Sopenharmony_ci					goto iirq;
2478c2ecf20Sopenharmony_ci				}
2488c2ecf20Sopenharmony_ci				if (q40_state[irq] & IRQ_INPROGRESS) {
2498c2ecf20Sopenharmony_ci					/* some handlers do local_irq_enable() for irq latency reasons, */
2508c2ecf20Sopenharmony_ci					/* however reentering an active irq handler is not permitted */
2518c2ecf20Sopenharmony_ci#ifdef IP_USE_DISABLE
2528c2ecf20Sopenharmony_ci					/* in theory this is the better way to do it because it still */
2538c2ecf20Sopenharmony_ci					/* lets through eg the serial irqs, unfortunately it crashes */
2548c2ecf20Sopenharmony_ci					disable_irq(irq);
2558c2ecf20Sopenharmony_ci					disabled = 1;
2568c2ecf20Sopenharmony_ci#else
2578c2ecf20Sopenharmony_ci					/*pr_warn("IRQ_INPROGRESS detected for irq %d, disabling - %s disabled\n",
2588c2ecf20Sopenharmony_ci						irq, disabled ? "already" : "not yet"); */
2598c2ecf20Sopenharmony_ci					fp->sr = (((fp->sr) & (~0x700))+0x200);
2608c2ecf20Sopenharmony_ci					disabled = 1;
2618c2ecf20Sopenharmony_ci#endif
2628c2ecf20Sopenharmony_ci					goto iirq;
2638c2ecf20Sopenharmony_ci				}
2648c2ecf20Sopenharmony_ci				q40_state[irq] |= IRQ_INPROGRESS;
2658c2ecf20Sopenharmony_ci				do_IRQ(irq, fp);
2668c2ecf20Sopenharmony_ci				q40_state[irq] &= ~IRQ_INPROGRESS;
2678c2ecf20Sopenharmony_ci
2688c2ecf20Sopenharmony_ci				/* naively enable everything, if that fails than    */
2698c2ecf20Sopenharmony_ci				/* this function will be reentered immediately thus */
2708c2ecf20Sopenharmony_ci				/* getting another chance to disable the IRQ        */
2718c2ecf20Sopenharmony_ci
2728c2ecf20Sopenharmony_ci				if (disabled) {
2738c2ecf20Sopenharmony_ci#ifdef IP_USE_DISABLE
2748c2ecf20Sopenharmony_ci					if (irq > 4) {
2758c2ecf20Sopenharmony_ci						disabled = 0;
2768c2ecf20Sopenharmony_ci						enable_irq(irq);
2778c2ecf20Sopenharmony_ci					}
2788c2ecf20Sopenharmony_ci#else
2798c2ecf20Sopenharmony_ci					disabled = 0;
2808c2ecf20Sopenharmony_ci					/*pr_info("reenabling irq %d\n", irq); */
2818c2ecf20Sopenharmony_ci#endif
2828c2ecf20Sopenharmony_ci				}
2838c2ecf20Sopenharmony_ci// used to do 'goto repeat;' here, this delayed bh processing too long
2848c2ecf20Sopenharmony_ci				return;
2858c2ecf20Sopenharmony_ci			}
2868c2ecf20Sopenharmony_ci		}
2878c2ecf20Sopenharmony_ci		if (mer && ccleirq > 0 && !aliased_irq) {
2888c2ecf20Sopenharmony_ci			pr_warn("ISA interrupt from unknown source? EIRQ_REG = %x\n",
2898c2ecf20Sopenharmony_ci				mer);
2908c2ecf20Sopenharmony_ci			ccleirq--;
2918c2ecf20Sopenharmony_ci		}
2928c2ecf20Sopenharmony_ci	}
2938c2ecf20Sopenharmony_ci iirq:
2948c2ecf20Sopenharmony_ci	mir = master_inb(IIRQ_REG);
2958c2ecf20Sopenharmony_ci	/* should test whether keyboard irq is really enabled, doing it in defhand */
2968c2ecf20Sopenharmony_ci	if (mir & Q40_IRQ_KEYB_MASK)
2978c2ecf20Sopenharmony_ci		do_IRQ(Q40_IRQ_KEYBOARD, fp);
2988c2ecf20Sopenharmony_ci
2998c2ecf20Sopenharmony_ci	return;
3008c2ecf20Sopenharmony_ci}
3018c2ecf20Sopenharmony_ci
3028c2ecf20Sopenharmony_civoid q40_irq_enable(struct irq_data *data)
3038c2ecf20Sopenharmony_ci{
3048c2ecf20Sopenharmony_ci	unsigned int irq = data->irq;
3058c2ecf20Sopenharmony_ci
3068c2ecf20Sopenharmony_ci	if (irq >= 5 && irq <= 15) {
3078c2ecf20Sopenharmony_ci		mext_disabled--;
3088c2ecf20Sopenharmony_ci		if (mext_disabled > 0)
3098c2ecf20Sopenharmony_ci			pr_warn("q40_irq_enable : nested disable/enable\n");
3108c2ecf20Sopenharmony_ci		if (mext_disabled == 0)
3118c2ecf20Sopenharmony_ci			master_outb(1, EXT_ENABLE_REG);
3128c2ecf20Sopenharmony_ci	}
3138c2ecf20Sopenharmony_ci}
3148c2ecf20Sopenharmony_ci
3158c2ecf20Sopenharmony_ci
3168c2ecf20Sopenharmony_civoid q40_irq_disable(struct irq_data *data)
3178c2ecf20Sopenharmony_ci{
3188c2ecf20Sopenharmony_ci	unsigned int irq = data->irq;
3198c2ecf20Sopenharmony_ci
3208c2ecf20Sopenharmony_ci	/* disable ISA iqs : only do something if the driver has been
3218c2ecf20Sopenharmony_ci	 * verified to be Q40 "compatible" - right now IDE, NE2K
3228c2ecf20Sopenharmony_ci	 * Any driver should not attempt to sleep across disable_irq !!
3238c2ecf20Sopenharmony_ci	 */
3248c2ecf20Sopenharmony_ci
3258c2ecf20Sopenharmony_ci	if (irq >= 5 && irq <= 15) {
3268c2ecf20Sopenharmony_ci		master_outb(0, EXT_ENABLE_REG);
3278c2ecf20Sopenharmony_ci		mext_disabled++;
3288c2ecf20Sopenharmony_ci		if (mext_disabled > 1)
3298c2ecf20Sopenharmony_ci			pr_info("disable_irq nesting count %d\n",
3308c2ecf20Sopenharmony_ci				mext_disabled);
3318c2ecf20Sopenharmony_ci	}
3328c2ecf20Sopenharmony_ci}
333