]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: speakup: add spk_io_ops struct to spk_synth
authorOkash Khawaja <okash.khawaja@gmail.com>
Tue, 14 Mar 2017 13:41:53 +0000 (13:41 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Mar 2017 02:11:22 +0000 (11:11 +0900)
This patch adds spk_io_ops struct which contain those methods whose job is to
communicate with synth device. Currently, all comms with external synth
device use raw serial i/o. The idea is to group all methods which do the
actual communication with external device into this new struct. Then migrating
a serial-based synth over to an alternative to raw serial i/o will mean
swapping serial spk_io_ops instance with the io_ops instance of the new
method, making the migration simpler.

At the moment, this struct only contains one method, synth_out but more will
be added in future when migrating synths which require input functionality.
Also at the moment, synth_out method has one implementation which uses
serial i/o. Plan is to add an alternative.

Signed-off-by: Okash Khawaja <okash.khawaja@gmail.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19 files changed:
drivers/staging/speakup/serialio.c
drivers/staging/speakup/speakup_acntpc.c
drivers/staging/speakup/speakup_acntsa.c
drivers/staging/speakup/speakup_apollo.c
drivers/staging/speakup/speakup_audptr.c
drivers/staging/speakup/speakup_bns.c
drivers/staging/speakup/speakup_decext.c
drivers/staging/speakup/speakup_decpc.c
drivers/staging/speakup/speakup_dectlk.c
drivers/staging/speakup/speakup_dtlk.c
drivers/staging/speakup/speakup_dummy.c
drivers/staging/speakup/speakup_keypc.c
drivers/staging/speakup/speakup_ltlk.c
drivers/staging/speakup/speakup_soft.c
drivers/staging/speakup/speakup_spkout.c
drivers/staging/speakup/speakup_txprt.c
drivers/staging/speakup/spk_priv.h
drivers/staging/speakup/spk_types.h
drivers/staging/speakup/synth.c

index f51ab5c25b497b0211ad3032cd8d8035ba47a6ff..d7736f7a35fe81e1dbe6398a44978ef80e38cd72 100644 (file)
@@ -24,6 +24,12 @@ static const struct old_serial_port rs_table[] = {
 static const struct old_serial_port *serstate;
 static int timeouts;
 
+static int spk_serial_out(struct spk_synth *in_synth, const char ch);
+struct spk_io_ops spk_serial_io_ops = {
+       .synth_out = spk_serial_out,
+};
+EXPORT_SYMBOL_GPL(spk_serial_io_ops);
+
 const struct old_serial_port *spk_serial_init(int index)
 {
        int baud = 9600, quot = 0;
@@ -214,7 +220,6 @@ int spk_serial_out(struct spk_synth *in_synth, const char ch)
        }
        return 0;
 }
-EXPORT_SYMBOL_GPL(spk_serial_out);
 
 void spk_serial_release(void)
 {
index 56ece087ff8883a089b6f66e17da94dea105e8dc..81dd0c0917dc40cf5caca10a13c06a02cb8916eb 100644 (file)
@@ -113,6 +113,7 @@ static struct spk_synth synth_acntpc = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = accent_release,
        .synth_immediate = synth_immediate,
index b2e352712766ae8925beef2a269023a2a0af489b..6a66801f9eba2bbbc44da2c65b1dcb33fe9ccc07 100644 (file)
@@ -99,6 +99,7 @@ static struct spk_synth synth_acntsa = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index 07149b0b03bbbc8ae58428fab5c884660976ee2d..c78a2ffb13bde600d2696637eae7f31800a25ff5 100644 (file)
@@ -108,6 +108,7 @@ static struct spk_synth synth_apollo = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
@@ -169,7 +170,7 @@ static void do_catch_up(struct spk_synth *synth)
                set_current_state(TASK_INTERRUPTIBLE);
                full_time_val = full_time->u.n.value;
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
-               if (!spk_serial_out(synth, ch)) {
+               if (!synth->io_ops->synth_out(synth, ch)) {
                        outb(UART_MCR_DTR, speakup_info.port_tts + UART_MCR);
                        outb(UART_MCR_DTR | UART_MCR_RTS,
                                        speakup_info.port_tts + UART_MCR);
@@ -182,7 +183,7 @@ static void do_catch_up(struct spk_synth *synth)
                        full_time_val = full_time->u.n.value;
                        delay_time_val = delay_time->u.n.value;
                        spin_unlock_irqrestore(&speakup_info.spinlock, flags);
-                       if (spk_serial_out(synth, synth->procspeech))
+                       if (synth->io_ops->synth_out(synth, synth->procspeech))
                                schedule_timeout(msecs_to_jiffies
                                                 (delay_time_val));
                        else
@@ -195,7 +196,7 @@ static void do_catch_up(struct spk_synth *synth)
                synth_buffer_getc();
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
        }
-       spk_serial_out(synth, PROCSPEECH);
+       synth->io_ops->synth_out(synth, PROCSPEECH);
 }
 
 module_param_named(ser, synth_apollo.ser, int, 0444);
index 31dcd4ec25c6440ad17bac906eb4fad10c58e54f..76e21f69e769d64b7059aff8ee3eb49b2ee3789c 100644 (file)
@@ -104,6 +104,7 @@ static struct spk_synth synth_audptr = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
@@ -135,7 +136,7 @@ static void synth_flush(struct spk_synth *synth)
                udelay(1);
        }
        outb(SYNTH_CLEAR, speakup_info.port_tts);
-       spk_serial_out(synth, PROCSPEECH);
+       synth->io_ops->synth_out(synth, PROCSPEECH);
 }
 
 static void synth_version(struct spk_synth *synth)
index da158c968e7cd3c335734f19bde91320c7779b6a..6c46f670fef70e30a93034f8bdfbd2c3308a3706 100644 (file)
@@ -96,6 +96,7 @@ static struct spk_synth synth_bns = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index 8ac833e825804d978af92487759a1728531a7070..4cf038457c1a3c0d62391d3d360b5e668a0c4482 100644 (file)
@@ -127,6 +127,7 @@ static struct spk_synth synth_decext = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
@@ -186,7 +187,7 @@ static void do_catch_up(struct spk_synth *synth)
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
                if (ch == '\n')
                        ch = 0x0D;
-               if (synth_full() || !spk_serial_out(synth, ch)) {
+               if (synth_full() || !synth->io_ops->synth_out(synth, ch)) {
                        schedule_timeout(msecs_to_jiffies(delay_time_val));
                        continue;
                }
@@ -200,10 +201,10 @@ static void do_catch_up(struct spk_synth *synth)
                        in_escape = 0;
                else if (ch <= SPACE) {
                        if (!in_escape && strchr(",.!?;:", last))
-                               spk_serial_out(synth, PROCSPEECH);
+                               synth->io_ops->synth_out(synth, PROCSPEECH);
                        if (time_after_eq(jiffies, jiff_max)) {
                                if (!in_escape)
-                                       spk_serial_out(synth, PROCSPEECH);
+                                       synth->io_ops->synth_out(synth, PROCSPEECH);
                                spin_lock_irqsave(&speakup_info.spinlock,
                                                        flags);
                                jiffy_delta_val = jiffy_delta->u.n.value;
@@ -218,7 +219,7 @@ static void do_catch_up(struct spk_synth *synth)
                last = ch;
        }
        if (!in_escape)
-               spk_serial_out(synth, PROCSPEECH);
+               synth->io_ops->synth_out(synth, PROCSPEECH);
 }
 
 static void synth_flush(struct spk_synth *synth)
index 4cd9730ee03d3a4ac4799206846d0b511f98ae6d..a4c5807b38de840faa1fa68f56b944d406cacded 100644 (file)
@@ -218,6 +218,7 @@ static struct spk_synth synth_dec_pc = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = dtpc_release,
        .synth_immediate = synth_immediate,
index 8cdf197d68009c3f133e6962791be6e4e86392fc..f36d579015f0521e9529719ac72159fd4b8a9131 100644 (file)
@@ -130,6 +130,7 @@ static struct spk_synth synth_dectlk = {
        .vars = vars,
        .default_pitch = ap_defaults,
        .default_vol = g5_defaults,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
@@ -251,7 +252,7 @@ static void do_catch_up(struct spk_synth *synth)
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
                if (ch == '\n')
                        ch = 0x0D;
-               if (synth_full_val || !spk_serial_out(synth, ch)) {
+               if (synth_full_val || !synth->io_ops->synth_out(synth, ch)) {
                        schedule_timeout(msecs_to_jiffies(delay_time_val));
                        continue;
                }
@@ -265,10 +266,10 @@ static void do_catch_up(struct spk_synth *synth)
                        in_escape = 0;
                else if (ch <= SPACE) {
                        if (!in_escape && strchr(",.!?;:", last))
-                               spk_serial_out(synth, PROCSPEECH);
+                               synth->io_ops->synth_out(synth, PROCSPEECH);
                        if (time_after_eq(jiffies, jiff_max)) {
                                if (!in_escape)
-                                       spk_serial_out(synth, PROCSPEECH);
+                                       synth->io_ops->synth_out(synth, PROCSPEECH);
                                spin_lock_irqsave(&speakup_info.spinlock,
                                                flags);
                                jiffy_delta_val = jiffy_delta->u.n.value;
@@ -283,17 +284,17 @@ static void do_catch_up(struct spk_synth *synth)
                last = ch;
        }
        if (!in_escape)
-               spk_serial_out(synth, PROCSPEECH);
+               synth->io_ops->synth_out(synth, PROCSPEECH);
 }
 
 static void synth_flush(struct spk_synth *synth)
 {
        if (in_escape)
                /* if in command output ']' so we don't get an error */
-               spk_serial_out(synth, ']');
+               synth->io_ops->synth_out(synth, ']');
        in_escape = 0;
        is_flushing = 1;
-       spk_serial_out(synth, SYNTH_CLEAR);
+       synth->io_ops->synth_out(synth, SYNTH_CLEAR);
 }
 
 module_param_named(ser, synth_dectlk.ser, int, 0444);
index de67288beb25f88373938f62050f6522f2349b5a..e5a434376d35380b9b2b9fa1d06b066e90f9c85b 100644 (file)
@@ -128,6 +128,7 @@ static struct spk_synth synth_dtlk = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = dtlk_release,
        .synth_immediate = synth_immediate,
index cb7cef30c12433c892b6dac8cffedc3a0ef3eb8c..8d64dd84c0791f0da0bf400fb2202989a6ad2902 100644 (file)
@@ -98,6 +98,7 @@ static struct spk_synth synth_dummy = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index 7c24e088549cd6601b91a2d9e496b8066e58819f..9eb9352e5db789af65f926b82c70a97e966888bd 100644 (file)
@@ -105,6 +105,7 @@ static struct spk_synth synth_keypc = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = keynote_release,
        .synth_immediate = synth_immediate,
index 9d22198a0339ca28dbf1737ba2194c9512984fb3..ca4c0484a806c82c571f98f4fd293d0dc749c7de 100644 (file)
@@ -111,6 +111,7 @@ static struct spk_synth synth_ltlk = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index 1f99ce912ab9f027d857bc53024b1f3255b8284b..e454f5685f70a30cc0e9cbea662c79102e0180d8 100644 (file)
@@ -131,6 +131,7 @@ static struct spk_synth synth_soft = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = NULL,
        .probe = softsynth_probe,
        .release = softsynth_release,
        .synth_immediate = NULL,
index 143fadabfe6c33cb6c1274f1d0f6813eba6ad446..8faeca4f050e12779304d19bff2b9f4e9954b999 100644 (file)
@@ -102,6 +102,7 @@ static struct spk_synth synth_spkout = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index aa2f338d15d8bcbbb94dc90bbcaae958367d5510..75364c81680030abbf92f6c2f0cac37cda0f9adf 100644 (file)
@@ -95,6 +95,7 @@ static struct spk_synth synth_txprt = {
        .startup = SYNTH_START,
        .checkval = SYNTH_CHECK,
        .vars = vars,
+       .io_ops = &spk_serial_io_ops,
        .probe = spk_serial_synth_probe,
        .release = spk_serial_release,
        .synth_immediate = spk_synth_immediate,
index 170599c481557ee04a5c2fa27bd1225f6b9dd493..7e12fecf938032872720d2c8d83a0830e7780326 100644 (file)
@@ -45,7 +45,6 @@ void spk_stop_serial_interrupt(void);
 int spk_wait_for_xmitr(struct spk_synth *in_synth);
 unsigned char spk_serial_in(void);
 unsigned char spk_serial_in_nowait(void);
-int spk_serial_out(struct spk_synth *in_synth, const char ch);
 void spk_serial_release(void);
 
 void synth_buffer_skip_nonlatin1(void);
@@ -79,4 +78,6 @@ extern struct speakup_info_t speakup_info;
 
 extern struct var_t synth_time_vars[];
 
+extern struct spk_io_ops spk_serial_io_ops;
+
 #endif
index 9541b9e65840c318ce87b0daefcd0a56796e11ae..a446064b6c91bcfe02d1ab0c91f8e3278eb94b4e 100644 (file)
@@ -146,6 +146,12 @@ struct synth_indexing {
        unsigned char currindex;
 };
 
+struct spk_synth;
+
+struct spk_io_ops {
+       int (*synth_out)(struct spk_synth *synth, const char ch);
+};
+
 struct spk_synth {
        const char *name;
        const char *version;
@@ -164,6 +170,7 @@ struct spk_synth {
        struct var_t *vars;
        int *default_pitch;
        int *default_vol;
+       struct spk_io_ops *io_ops;
        int (*probe)(struct spk_synth *synth);
        void (*release)(void);
        const char *(*synth_immediate)(struct spk_synth *synth,
index 41967c9e500386e777818409d9332cf75fcdab27..72d4f027e40a33d5f1c5c46ccebc3595057c7d59 100644 (file)
@@ -120,7 +120,7 @@ void spk_do_catch_up(struct spk_synth *synth)
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
                if (ch == '\n')
                        ch = synth->procspeech;
-               if (!spk_serial_out(synth, ch)) {
+               if (!synth->io_ops->synth_out(synth, ch)) {
                        schedule_timeout(msecs_to_jiffies(full_time_val));
                        continue;
                }
@@ -130,7 +130,7 @@ void spk_do_catch_up(struct spk_synth *synth)
                        delay_time_val = delay_time->u.n.value;
                        full_time_val = full_time->u.n.value;
                        spin_unlock_irqrestore(&speakup_info.spinlock, flags);
-                       if (spk_serial_out(synth, synth->procspeech))
+                       if (synth->io_ops->synth_out(synth, synth->procspeech))
                                schedule_timeout(
                                        msecs_to_jiffies(delay_time_val));
                        else
@@ -143,7 +143,7 @@ void spk_do_catch_up(struct spk_synth *synth)
                synth_buffer_getc();
                spin_unlock_irqrestore(&speakup_info.spinlock, flags);
        }
-       spk_serial_out(synth, synth->procspeech);
+       synth->io_ops->synth_out(synth, synth->procspeech);
 }
 EXPORT_SYMBOL_GPL(spk_do_catch_up);
 
@@ -166,7 +166,7 @@ EXPORT_SYMBOL_GPL(spk_synth_immediate);
 
 void spk_synth_flush(struct spk_synth *synth)
 {
-       spk_serial_out(synth, synth->clear);
+       synth->io_ops->synth_out(synth, synth->clear);
 }
 EXPORT_SYMBOL_GPL(spk_synth_flush);