hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
/*
 * Copyright (C) 2011 Wolfgang Grandegger <wg@denx.de>.
 * Copyright (C) 2005-2007 Jan Kiszka <jan.kiszka@web.de>.
 *
 * Xenomai is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Xenomai is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Xenomai; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */
 
#include <linux/version.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/slab.h>
#include <linux/of_platform.h>
#include <linux/io.h>
 
#include <asm/mpc52xx.h>
#include <asm/mpc52xx_psc.h>
 
#include <rtdm/serial.h>
#include <rtdm/driver.h>
 
MODULE_DESCRIPTION("RTDM-based driver for MPC52xx UARTs");
MODULE_AUTHOR("Wolfgang Grandegger <wg@denx.de>");
MODULE_VERSION("1.0.0");
MODULE_LICENSE("GPL");
 
#define RT_MPC52XX_UART_DRVNAM    "xeno_mpc52xx_uart"
 
#define IN_BUFFER_SIZE        512
#define OUT_BUFFER_SIZE        512
 
#define PARITY_MASK        0x03
#define DATA_BITS_MASK        0x03
#define STOP_BITS_MASK        0x01
#define FIFO_MASK        0xC0
#define EVENT_MASK        0x0F
 
 
struct rt_mpc52xx_uart_port {
   const struct device *dev;
   struct mpc52xx_psc __iomem *psc;
   struct mpc52xx_psc_fifo __iomem *fifo;
   unsigned int uartclk;
   int irq;
   int num;
};
 
struct rt_mpc52xx_uart_ctx {
   struct rtser_config config;    /* current device configuration */
 
   rtdm_irq_t irq_handle;        /* device IRQ handle */
   rtdm_lock_t lock;        /* lock to protect context struct */
 
   int in_head;            /* RX ring buffer, head pointer */
   int in_tail;            /* RX ring buffer, tail pointer */
   size_t in_npend;        /* pending bytes in RX ring */
   int in_nwait;            /* bytes the user waits for */
   rtdm_event_t in_event;        /* raised to unblock reader */
   char in_buf[IN_BUFFER_SIZE];    /* RX ring buffer */
   volatile unsigned long in_lock;    /* single-reader lock */
   uint64_t *in_history;        /* RX timestamp buffer */
 
   int out_head;            /* TX ring buffer, head pointer */
   int out_tail;            /* TX ring buffer, tail pointer */
   size_t out_npend;        /* pending bytes in TX ring */
   rtdm_event_t out_event;        /* raised to unblock writer */
   char out_buf[OUT_BUFFER_SIZE];    /* TX ring buffer */
   rtdm_mutex_t out_lock;        /* single-writer mutex */
 
   uint64_t last_timestamp;    /* timestamp of last event */
   int ioc_events;            /* recorded events */
   rtdm_event_t ioc_event;        /* raised to unblock event waiter */
   volatile unsigned long ioc_event_lock;    /* single-waiter lock */
 
 
   int mcr_status;            /* emulated MCR cache */
   int status;            /* cache for LSR + soft-states */
   int saved_errors;        /* error cache for RTIOC_GET_STATUS */
 
   unsigned int imr_status;    /* interrupt mask register cache */
   int tx_empty;            /* shift register empty flag */
 
   struct rt_mpc52xx_uart_port *port; /* Port related data */
};
 
static const struct rtser_config default_config = {
   .config_mask = 0xFFFF,
   .baud_rate = RTSER_DEF_BAUD,
   .parity = RTSER_DEF_PARITY,
   .data_bits = RTSER_DEF_BITS,
   .stop_bits = RTSER_DEF_STOPB,
   .handshake = RTSER_DEF_HAND,
   .fifo_depth = RTSER_DEF_FIFO_DEPTH,
   .rx_timeout = RTSER_DEF_TIMEOUT,
   .tx_timeout = RTSER_DEF_TIMEOUT,
   .event_timeout = RTSER_DEF_TIMEOUT,
   .timestamp_history = RTSER_DEF_TIMESTAMP_HISTORY,
   .event_mask = RTSER_DEF_EVENT_MASK,
   .rs485 = RTSER_DEF_RS485,
};
 
/* lookup table for matching device nodes to index numbers */
static struct device_node *rt_mpc52xx_uart_nodes[MPC52xx_PSC_MAXNUM];
 
static inline void psc_fifo_init(struct rt_mpc52xx_uart_ctx *ctx)
{
   out_8(&ctx->port->fifo->rfcntl, 0x00);
   out_be16(&ctx->port->fifo->rfalarm, 0x1ff);
   out_8(&ctx->port->fifo->tfcntl, 0x07);
   out_be16(&ctx->port->fifo->tfalarm, 0x80);
}
 
static inline int psc_raw_rx_rdy(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_be16(&ctx->port->psc->mpc52xx_psc_status) &
       MPC52xx_PSC_SR_RXRDY;
}
 
static inline int psc_raw_tx_rdy(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_be16(&ctx->port->psc->mpc52xx_psc_status) &
       MPC52xx_PSC_SR_TXRDY;
}
 
static inline int psc_rx_rdy(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_be16(&ctx->port->psc->mpc52xx_psc_isr) &
       ctx->imr_status & MPC52xx_PSC_IMR_RXRDY;
}
 
static int psc_tx_rdy(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_be16(&ctx->port->psc->mpc52xx_psc_isr) &
       ctx->imr_status & MPC52xx_PSC_IMR_TXRDY;
}
 
static inline int psc_tx_empty(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_be16(&ctx->port->psc->mpc52xx_psc_status) &
       MPC52xx_PSC_SR_TXEMP;
}
 
static inline void psc_start_tx(struct rt_mpc52xx_uart_ctx *ctx)
{
   ctx->imr_status |= MPC52xx_PSC_IMR_TXRDY;
   out_be16(&ctx->port->psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static inline void psc_stop_tx(struct rt_mpc52xx_uart_ctx *ctx)
{
   ctx->imr_status &= ~MPC52xx_PSC_IMR_TXRDY;
   out_be16(&ctx->port->psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static inline void psc_stop_rx(struct rt_mpc52xx_uart_ctx *ctx)
{
   ctx->imr_status &= ~MPC52xx_PSC_IMR_RXRDY;
   out_be16(&ctx->port->psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static inline void psc_write_char(struct rt_mpc52xx_uart_ctx *ctx,
                 unsigned char c)
{
   out_8(&ctx->port->psc->mpc52xx_psc_buffer_8, c);
}
 
static inline unsigned char psc_read_char(struct rt_mpc52xx_uart_ctx *ctx)
{
   return in_8(&ctx->port->psc->mpc52xx_psc_buffer_8);
}
 
static inline void psc_disable_ints(struct rt_mpc52xx_uart_ctx *ctx)
{
   ctx->imr_status = 0;
   out_be16(&ctx->port->psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static void psc_set_mcr(struct rt_mpc52xx_uart_ctx *ctx,
           unsigned int mcr)
{
   if (mcr & RTSER_MCR_RTS)
       out_8(&ctx->port->psc->op1, MPC52xx_PSC_OP_RTS);
   else
       out_8(&ctx->port->psc->op0, MPC52xx_PSC_OP_RTS);
}
 
/* FIXME: status interrupts not yet handled properly */
static unsigned int psc_get_msr(struct rt_mpc52xx_uart_ctx *ctx)
{
   unsigned int msr = RTSER_MSR_DSR;
   u8 status = in_8(&ctx->port->psc->mpc52xx_psc_ipcr);
 
   if (!(status & MPC52xx_PSC_CTS))
       msr |= RTSER_MSR_CTS;
   if (!(status & MPC52xx_PSC_DCD))
       msr |= RTSER_MSR_DCD;
 
   return msr;
}
 
static void psc_enable_ms(struct rt_mpc52xx_uart_ctx *ctx)
{
   struct mpc52xx_psc *psc = ctx->port->psc;
 
   /* clear D_*-bits by reading them */
   in_8(&psc->mpc52xx_psc_ipcr);
   /* enable CTS and DCD as IPC interrupts */
   out_8(&psc->mpc52xx_psc_acr, MPC52xx_PSC_IEC_CTS | MPC52xx_PSC_IEC_DCD);
 
   ctx->imr_status |= MPC52xx_PSC_IMR_IPC;
   out_be16(&psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static void psc_disable_ms(struct rt_mpc52xx_uart_ctx *ctx)
{
   struct mpc52xx_psc *psc = ctx->port->psc;
 
   /* disable CTS and DCD as IPC interrupts */
   out_8(&psc->mpc52xx_psc_acr, 0);
 
   ctx->imr_status &= ~MPC52xx_PSC_IMR_IPC;
   out_be16(&psc->mpc52xx_psc_imr, ctx->imr_status);
}
 
static struct of_device_id mpc5200_gpio_ids[] = {
   { .compatible = "fsl,mpc5200-gpio", },
   { .compatible = "mpc5200-gpio", },
   {}
};
 
static void rt_mpc52xx_uart_init_hw(struct rt_mpc52xx_uart_port *port)
{
   struct mpc52xx_gpio __iomem *gpio;
   struct device_node *gpio_np;
   u32 port_config;
 
   if (port->num == 6) {
       gpio_np = of_find_matching_node(NULL, mpc5200_gpio_ids);
       gpio = of_iomap(gpio_np, 0);
       of_node_put(gpio_np);
       if (!gpio) {
           dev_err(port->dev, "PSC%d port_config: "
               "couldn't map gpio ids\n", port->num);
           return;
       }
       port_config = in_be32(&gpio->port_config);
       port_config &= 0xFF0FFFFF; /* port config for PSC6 */
       port_config |= 0x00500000;
       dev_dbg(port->dev, "PSC%d port_config: old:%x new:%x\n",
           port->num, in_be32(&gpio->port_config), port_config);
       out_be32(&gpio->port_config, port_config);
       iounmap(gpio);
   }
}
 
static inline void rt_mpc52xx_uart_put_char(struct rt_mpc52xx_uart_ctx *ctx,
                       uint64_t *timestamp,
                       unsigned char ch)
{
   ctx->in_buf[ctx->in_tail] = ch;
   if (ctx->in_history)
       ctx->in_history[ctx->in_tail] = *timestamp;
   ctx->in_tail = (ctx->in_tail + 1) & (IN_BUFFER_SIZE - 1);
 
   if (++ctx->in_npend > IN_BUFFER_SIZE) {
       ctx->status |= RTSER_SOFT_OVERRUN_ERR;
       ctx->in_npend--;
   }
}
 
static inline int rt_mpc52xx_uart_rx_interrupt(struct rt_mpc52xx_uart_ctx *ctx,
                          uint64_t *timestamp)
{
   int rbytes = 0;
   int psc_status;
 
   psc_status = in_be16(&ctx->port->psc->mpc52xx_psc_status);
   while (psc_status & MPC52xx_PSC_SR_RXRDY) {
       /* read input character */
       rt_mpc52xx_uart_put_char(ctx, timestamp, psc_read_char(ctx));
       rbytes++;
 
       /* save new errors */
       if (psc_status & (MPC52xx_PSC_SR_OE | MPC52xx_PSC_SR_PE |
                 MPC52xx_PSC_SR_FE | MPC52xx_PSC_SR_RB)) {
           if (psc_status & MPC52xx_PSC_SR_PE)
               ctx->status |= RTSER_LSR_PARITY_ERR;
           if (psc_status & MPC52xx_PSC_SR_FE)
               ctx->status |= RTSER_LSR_FRAMING_ERR;
           if (psc_status & MPC52xx_PSC_SR_RB)
               ctx->status |= RTSER_LSR_BREAK_IND;
 
           /*
            * Overrun is special, since it's reported
            * immediately, and doesn't affect the current
            * character.
            */
           if (psc_status & MPC52xx_PSC_SR_OE) {
               ctx->status |= RTSER_LSR_OVERRUN_ERR;
               rt_mpc52xx_uart_put_char(ctx, timestamp, 0);
               rbytes++;
           }
 
           /* Clear error condition */
           out_8(&ctx->port->psc->command,
                 MPC52xx_PSC_RST_ERR_STAT);
       }
 
       psc_status = in_be16(&ctx->port->psc->mpc52xx_psc_status);
   };
 
   return rbytes;
}
 
static inline int rt_mpc52xx_uart_tx_interrupt(struct rt_mpc52xx_uart_ctx *ctx)
{
   while (psc_raw_tx_rdy(ctx) && (ctx->out_npend > 0)) {
       if (ctx->config.rs485 &&
           (ctx->mcr_status & RTSER_MCR_RTS) == 0) {
           /* switch RTS */
           ctx->mcr_status |= RTSER_MCR_RTS;
           dev_dbg(ctx->port->dev, "Set RTS, mcr_status=%#x\n",
               ctx->mcr_status);
           psc_set_mcr(ctx, ctx->mcr_status);
       }
       if (ctx->config.rs485 ||
           ((ctx->config.event_mask & RTSER_EVENT_TXEMPTY) &&
            (ctx->imr_status & MPC52xx_PSC_IMR_TXEMP) == 0)) {
           /* enable tx-empty interrupt */
           ctx->imr_status |= MPC52xx_PSC_IMR_TXEMP;
           dev_dbg(ctx->port->dev, "Enable TXEMP interrupt, "
               "imr_status=%#x\n", ctx->imr_status);
           out_be16(&ctx->port->psc->mpc52xx_psc_imr,
                ctx->imr_status);
       }
 
       psc_write_char(ctx, ctx->out_buf[ctx->out_head++]);
       ctx->out_head &= OUT_BUFFER_SIZE - 1;
       ctx->out_npend--;
   }
 
   return ctx->out_npend;
}
 
static int rt_mpc52xx_uart_interrupt(rtdm_irq_t *irq_context)
{
   struct rt_mpc52xx_uart_ctx *ctx;
   uint64_t timestamp = rtdm_clock_read();
   int rbytes = 0;
   int events = 0;
   int ret = RTDM_IRQ_NONE;
   int goon = 1;
   int n;
 
   ctx = rtdm_irq_get_arg(irq_context, struct rt_mpc52xx_uart_ctx);
 
   rtdm_lock_get(&ctx->lock);
 
   while (goon) {
       goon = 0;
       if (psc_rx_rdy(ctx)) {
           dev_dbg(ctx->port->dev, "RX interrupt\n");
           n = rt_mpc52xx_uart_rx_interrupt(ctx, &timestamp);
           if (n) {
               rbytes += n;
               events |= RTSER_EVENT_RXPEND;
           }
       }
       if (psc_tx_rdy(ctx))
           goon |= rt_mpc52xx_uart_tx_interrupt(ctx);
 
       if (psc_tx_empty(ctx)) {
           if (ctx->config.rs485 &&
               (ctx->mcr_status & RTSER_MCR_RTS)) {
               /* reset RTS */
               ctx->mcr_status &= ~RTSER_MCR_RTS;
               dev_dbg(ctx->port->dev, "Reset RTS, "
                   "mcr_status=%#x\n", ctx->mcr_status);
               psc_set_mcr(ctx, ctx->mcr_status);
           }
           /* disable tx-empty interrupt */
           ctx->imr_status &= ~MPC52xx_PSC_IMR_TXEMP;
           dev_dbg(ctx->port->dev, "Disable TXEMP interrupt, "
               "imr_status=%#x\n", ctx->imr_status);
           out_be16(&ctx->port->psc->mpc52xx_psc_imr,
                ctx->imr_status);
 
           events |= RTSER_EVENT_TXEMPTY;
           ctx->tx_empty = 1;
       }
 
       if (ctx->config.event_mask &
           (RTSER_EVENT_MODEMHI | RTSER_EVENT_MODEMLO)) {
           u8 status = in_8(&ctx->port->psc->mpc52xx_psc_ipcr);
 
           if (status & MPC52xx_PSC_D_DCD)
               events |= (status & MPC52xx_PSC_DCD) ?
                   RTSER_EVENT_MODEMLO :
                   RTSER_EVENT_MODEMHI;
           if (status & MPC52xx_PSC_D_CTS)
               events |= (status & MPC52xx_PSC_CTS) ?
                   RTSER_EVENT_MODEMLO :
                   RTSER_EVENT_MODEMHI;
           dev_dbg(ctx->port->dev, "Modem line changed, "
               "events=%#x\n", events);
       }
 
       ret = RTDM_IRQ_HANDLED;
   }
 
   if (ctx->in_nwait > 0) {
       if ((ctx->in_nwait <= rbytes) || ctx->status) {
           ctx->in_nwait = 0;
           rtdm_event_signal(&ctx->in_event);
       } else
           ctx->in_nwait -= rbytes;
   }
 
   if (ctx->status)
       events |= RTSER_EVENT_ERRPEND;
 
   if (events & ctx->config.event_mask) {
       int old_events = ctx->ioc_events;
 
       ctx->last_timestamp = timestamp;
       ctx->ioc_events = events;
 
       if (!old_events)
           rtdm_event_signal(&ctx->ioc_event);
   }
 
   if ((ctx->imr_status & MPC52xx_PSC_IMR_TXRDY) &&
       (ctx->out_npend == 0)) {
       psc_stop_tx(ctx);
       rtdm_event_signal(&ctx->out_event);
   }
 
   rtdm_lock_put(&ctx->lock);
 
   return ret;
}
 
 
static int rt_mpc52xx_uart_set_config(struct rt_mpc52xx_uart_ctx *ctx,
                     const struct rtser_config *config,
                     uint64_t **in_history_ptr)
{
   rtdm_lockctx_t lock_ctx;
   int err = 0;
 
   /* make line configuration atomic and IRQ-safe */
   rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
   if (config->config_mask & RTSER_SET_BAUD)
       ctx->config.baud_rate = config->baud_rate;
   if (config->config_mask & RTSER_SET_PARITY)
       ctx->config.parity = config->parity & PARITY_MASK;
   if (config->config_mask & RTSER_SET_DATA_BITS)
       ctx->config.data_bits = config->data_bits & DATA_BITS_MASK;
   if (config->config_mask & RTSER_SET_STOP_BITS)
       ctx->config.stop_bits = config->stop_bits & STOP_BITS_MASK;
   if (config->config_mask & RTSER_SET_HANDSHAKE)
       ctx->config.handshake = config->handshake;
 
   if (config->config_mask & (RTSER_SET_PARITY |
                  RTSER_SET_DATA_BITS | RTSER_SET_STOP_BITS |
                  RTSER_SET_BAUD | RTSER_SET_HANDSHAKE)) {
       struct mpc52xx_psc *psc = ctx->port->psc;
       unsigned char mr1 = 0, mr2 = 0;
       unsigned int divisor;
       u16 prescaler;
 
       switch (ctx->config.data_bits) {
       case RTSER_5_BITS:
           mr1 |= MPC52xx_PSC_MODE_5_BITS;
           break;
       case RTSER_6_BITS:
           mr1 |= MPC52xx_PSC_MODE_6_BITS;
           break;
       case RTSER_7_BITS:
           mr1 |= MPC52xx_PSC_MODE_7_BITS;
           break;
       case RTSER_8_BITS:
       default:
           mr1 |= MPC52xx_PSC_MODE_8_BITS;
           break;
       }
 
       switch (ctx->config.parity) {
       case RTSER_ODD_PARITY:
           mr1 |= MPC52xx_PSC_MODE_PARODD;
           break;
       case RTSER_EVEN_PARITY:
           mr1 |= MPC52xx_PSC_MODE_PAREVEN;
           break;
       case RTSER_NO_PARITY:
       default:
           mr1 |= MPC52xx_PSC_MODE_PARNONE;
           break;
       }
 
       if (ctx->config.stop_bits == RTSER_2_STOPB)
           mr2 |= (ctx->config.data_bits == RTSER_5_BITS) ?
               MPC52xx_PSC_MODE_ONE_STOP_5_BITS :
               MPC52xx_PSC_MODE_TWO_STOP;
       else
           mr2 |= MPC52xx_PSC_MODE_ONE_STOP;
 
       if (ctx->config.handshake == RTSER_RTSCTS_HAND) {
           mr1 |= MPC52xx_PSC_MODE_RXRTS;
           mr2 |= MPC52xx_PSC_MODE_TXCTS;
       } else if (config->config_mask & RTSER_SET_HANDSHAKE) {
           ctx->mcr_status =
               RTSER_MCR_DTR | RTSER_MCR_RTS | RTSER_MCR_OUT2;
           psc_set_mcr(ctx, ctx->mcr_status);
       }
 
       /* Reset the TX & RX */
       out_8(&psc->command, MPC52xx_PSC_RST_RX);
       out_8(&psc->command, MPC52xx_PSC_RST_TX);
 
       /* Send new mode settings */
       out_8(&psc->command, MPC52xx_PSC_SEL_MODE_REG_1);
       out_8(&psc->mode, mr1);
       out_8(&psc->mode, mr2);
 
       /* Set baudrate */
       divisor = (ctx->port->uartclk + 16 * ctx->config.baud_rate) /
           (32 * ctx->config.baud_rate);
       prescaler = 0xdd00;
       out_be16(&psc->mpc52xx_psc_clock_select, prescaler);
       out_8(&psc->ctur, divisor >> 8);
       out_8(&psc->ctlr, divisor & 0xff);
 
       dev_info(ctx->port->dev,
            "mr1=%#x mr2=%#x baud=%d divisor=%d prescaler=%x\n",
            mr1, mr2, ctx->config.baud_rate, divisor, prescaler);
 
       /* Reenable TX & RX */
       out_8(&psc->command, MPC52xx_PSC_TX_ENABLE);
       out_8(&psc->command, MPC52xx_PSC_RX_ENABLE);
 
       /* Enable RX */
       ctx->imr_status |= MPC52xx_PSC_IMR_RXRDY;
       out_be16(&ctx->port->psc->mpc52xx_psc_imr, ctx->imr_status);
 
       ctx->status = 0;
       ctx->ioc_events &= ~RTSER_EVENT_ERRPEND;
 
   }
 
   if (config->config_mask & RTSER_SET_RS485) {
       ctx->config.rs485 = config->rs485;
       if (config->rs485) {
           /* reset RTS */
           ctx->mcr_status &= ~RTSER_MCR_RTS;
           dev_dbg(ctx->port->dev, "Reset RTS, mcr_status=%#x\n",
               ctx->mcr_status);
           psc_set_mcr(ctx, ctx->mcr_status);
       }
   }
 
   rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
   /* Timeout manipulation is not atomic. The user is supposed to take
      care not to use and change timeouts at the same time. */
   if (config->config_mask & RTSER_SET_TIMEOUT_RX)
       ctx->config.rx_timeout = config->rx_timeout;
   if (config->config_mask & RTSER_SET_TIMEOUT_TX)
       ctx->config.tx_timeout = config->tx_timeout;
   if (config->config_mask & RTSER_SET_TIMEOUT_EVENT)
       ctx->config.event_timeout = config->event_timeout;
 
   if (config->config_mask & RTSER_SET_TIMESTAMP_HISTORY) {
       /* change timestamp history atomically */
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
       if (config->timestamp_history & RTSER_RX_TIMESTAMP_HISTORY) {
           if (!ctx->in_history) {
               ctx->in_history = *in_history_ptr;
               *in_history_ptr = NULL;
               if (!ctx->in_history)
                   err = -ENOMEM;
           }
       } else {
           *in_history_ptr = ctx->in_history;
           ctx->in_history = NULL;
       }
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
   }
 
   if (config->config_mask & RTSER_SET_EVENT_MASK) {
       /* change event mask atomically */
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
       ctx->config.event_mask = config->event_mask & EVENT_MASK;
       ctx->ioc_events = 0;
 
       if ((config->event_mask & RTSER_EVENT_RXPEND) &&
           (ctx->in_npend > 0))
           ctx->ioc_events |= RTSER_EVENT_RXPEND;
 
       if ((config->event_mask & RTSER_EVENT_ERRPEND) &&
           ctx->status)
           ctx->ioc_events |= RTSER_EVENT_ERRPEND;
 
       if ((config->event_mask & RTSER_EVENT_TXEMPTY) &&
           !ctx->out_npend && ctx->tx_empty)
           ctx->ioc_events |= RTSER_EVENT_TXEMPTY;
 
       if (config->event_mask &
           (RTSER_EVENT_MODEMHI | RTSER_EVENT_MODEMLO))
           psc_enable_ms(ctx);
       else
           psc_disable_ms(ctx);
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
   }
 
   return err;
}
 
void rt_mpc52xx_uart_cleanup_ctx(struct rt_mpc52xx_uart_ctx *ctx)
{
   rtdm_event_destroy(&ctx->in_event);
   rtdm_event_destroy(&ctx->out_event);
   rtdm_event_destroy(&ctx->ioc_event);
   rtdm_mutex_destroy(&ctx->out_lock);
}
 
static int rt_mpc52xx_uart_open(struct rtdm_fd *fd, int oflags)
{
   struct rt_mpc52xx_uart_ctx *ctx;
   rtdm_lockctx_t lock_ctx;
   uint64_t *dummy;
   int err;
 
   ctx = rtdm_fd_to_private(fd);
   ctx->port = (struct rt_mpc52xx_uart_port *)rtdm_fd_device(fd)->device_data;
 
   /* IPC initialisation - cannot fail with used parameters */
   rtdm_lock_init(&ctx->lock);
   rtdm_event_init(&ctx->in_event, 0);
   rtdm_event_init(&ctx->out_event, 0);
   rtdm_event_init(&ctx->ioc_event, 0);
   rtdm_mutex_init(&ctx->out_lock);
 
   ctx->in_head = 0;
   ctx->in_tail = 0;
   ctx->in_npend = 0;
   ctx->in_nwait = 0;
   ctx->in_lock = 0;
   ctx->in_history = NULL;
 
   ctx->out_head = 0;
   ctx->out_tail = 0;
   ctx->out_npend = 0;
 
   ctx->ioc_events = 0;
   ctx->ioc_event_lock = 0;
   ctx->status = 0;
   ctx->saved_errors = 0;
 
   rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
   psc_disable_ints(ctx);
 
   /* Reset/activate the port, clear and enable interrupts */
   out_8(&ctx->port->psc->command, MPC52xx_PSC_RST_RX);
   out_8(&ctx->port->psc->command, MPC52xx_PSC_RST_TX);
 
   out_be32(&ctx->port->psc->sicr, 0);    /* UART mode DCD ignored */
 
   psc_fifo_init(ctx);
 
   out_8(&ctx->port->psc->command, MPC52xx_PSC_TX_ENABLE);
   out_8(&ctx->port->psc->command, MPC52xx_PSC_RX_ENABLE);
 
   rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
   rt_mpc52xx_uart_set_config(ctx, &default_config, &dummy);
 
   err = rtdm_irq_request(&ctx->irq_handle, ctx->port->irq,
                  rt_mpc52xx_uart_interrupt, 0,
                  rtdm_fd_device(fd)->name, ctx);
   if (err) {
       psc_set_mcr(ctx, 0);
       rt_mpc52xx_uart_cleanup_ctx(ctx);
 
       return err;
   }
 
   return 0;
}
 
static void rt_mpc52xx_uart_close(struct rtdm_fd *fd)
{
   struct rt_mpc52xx_uart_ctx *ctx;
   uint64_t *in_history;
   rtdm_lockctx_t lock_ctx;
 
   ctx = rtdm_fd_to_private(fd);
 
   rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
   /* reset DTR and RTS */
   psc_set_mcr(ctx, 0);
 
   psc_disable_ints(ctx);
 
   in_history = ctx->in_history;
   ctx->in_history = NULL;
 
   rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
   rtdm_irq_free(&ctx->irq_handle);
 
   rt_mpc52xx_uart_cleanup_ctx(ctx);
 
   kfree(in_history);
}
 
static int rt_mpc52xx_uart_ioctl(struct rtdm_fd *fd,
                unsigned int request, void *arg)
{
   rtdm_lockctx_t lock_ctx;
   struct rt_mpc52xx_uart_ctx *ctx;
   int err = 0;
 
   ctx = rtdm_fd_to_private(fd);
 
   switch (request) {
   case RTSER_RTIOC_GET_CONFIG:
       if (rtdm_fd_is_user(fd))
           err = rtdm_safe_copy_to_user(fd, arg,
                            &ctx->config,
                            sizeof(struct
                               rtser_config));
       else
           memcpy(arg, &ctx->config, sizeof(struct rtser_config));
       break;
 
   case RTSER_RTIOC_SET_CONFIG: {
       struct rtser_config *config;
       struct rtser_config config_buf;
       uint64_t *hist_buf = NULL;
 
       config = (struct rtser_config *)arg;
 
       if (rtdm_fd_is_user(fd)) {
           err = rtdm_safe_copy_from_user(fd, &config_buf,
                              arg,
                              sizeof(struct
                                 rtser_config));
           if (err)
               return err;
 
           config = &config_buf;
       }
 
       if ((config->config_mask & RTSER_SET_BAUD) &&
           (config->baud_rate <= 0))
           /* invalid baudrate for this port */
           return -EINVAL;
 
       if (config->config_mask & RTSER_SET_TIMESTAMP_HISTORY) {
           /*
            * Reflect the call to non-RT as we will likely
            * allocate or free the buffer.
            */
           if (rtdm_in_rt_context())
               return -ENOSYS;
 
           if (config->timestamp_history & RTSER_RX_TIMESTAMP_HISTORY)
               hist_buf = kmalloc(IN_BUFFER_SIZE *
                          sizeof(nanosecs_abs_t),
                          GFP_KERNEL);
       }
 
       rt_mpc52xx_uart_set_config(ctx, config, &hist_buf);
 
       if (hist_buf)
           kfree(hist_buf);
 
       break;
   }
 
   case RTSER_RTIOC_GET_STATUS: {
       int status;
 
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
       status = ctx->saved_errors | ctx->status;
       ctx->status = 0;
       ctx->saved_errors = 0;
       ctx->ioc_events &= ~RTSER_EVENT_ERRPEND;
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
       if (rtdm_fd_is_user(fd)) {
           struct rtser_status status_buf;
 
           status_buf.line_status = status;
           status_buf.modem_status = psc_get_msr(ctx);
 
           err = rtdm_safe_copy_to_user(fd, arg,
                            &status_buf,
                            sizeof(struct
                               rtser_status));
       } else {
           ((struct rtser_status *)arg)->line_status = status;
           ((struct rtser_status *)arg)->modem_status =
               psc_get_msr(ctx);
       }
       break;
   }
 
   case RTSER_RTIOC_GET_CONTROL:
       if (rtdm_fd_is_user(fd))
           err = rtdm_safe_copy_to_user(fd, arg,
                            &ctx->mcr_status,
                            sizeof(int));
       else
           *(int *)arg = ctx->mcr_status;
 
       break;
 
   case RTSER_RTIOC_SET_CONTROL: {
       int new_mcr = (long)arg;
 
       if ((new_mcr & RTSER_MCR_RTS) != RTSER_MCR_RTS)
           dev_warn(ctx->port->dev,
                "MCR: Only RTS is supported\n");
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
       ctx->mcr_status = new_mcr & RTSER_MCR_RTS;
       psc_set_mcr(ctx, ctx->mcr_status);
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
       break;
   }
 
   case RTSER_RTIOC_WAIT_EVENT: {
       struct rtser_event ev = { .rxpend_timestamp = 0 };
       rtdm_toseq_t timeout_seq;
 
       if (!rtdm_in_rt_context())
           return -ENOSYS;
 
       /* Only one waiter allowed, stop any further attempts here. */
       if (test_and_set_bit(0, &ctx->ioc_event_lock))
           return -EBUSY;
 
       rtdm_toseq_init(&timeout_seq, ctx->config.event_timeout);
 
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
       while (!ctx->ioc_events) {
           rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
           err = rtdm_event_timedwait(&ctx->ioc_event,
                          ctx->config.event_timeout,
                          &timeout_seq);
           if (err) {
               /* Device has been closed? */
               if (err == -EIDRM)
                   err = -EBADF;
               goto wait_unlock_out;
           }
 
           rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
       }
 
       ev.events = ctx->ioc_events;
       ctx->ioc_events &= ~(RTSER_EVENT_MODEMHI | RTSER_EVENT_MODEMLO);
 
       ev.last_timestamp = ctx->last_timestamp;
       ev.rx_pending = ctx->in_npend;
 
       if (ctx->in_history)
           ev.rxpend_timestamp = ctx->in_history[ctx->in_head];
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
       if (rtdm_fd_is_user(fd))
           err =
               rtdm_safe_copy_to_user(fd, arg, &ev,
                          sizeof(struct
                             rtser_event));
           else
               memcpy(arg, &ev, sizeof(struct rtser_event));
 
         wait_unlock_out:
       /* release the simple event waiter lock */
       clear_bit(0, &ctx->ioc_event_lock);
       break;
   }
 
   case RTSER_RTIOC_BREAK_CTL: {
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
       if ((long)arg & RTSER_BREAK_SET)
           out_8(&ctx->port->psc->command,
                 MPC52xx_PSC_START_BRK);
       else
           out_8(&ctx->port->psc->command,
                 MPC52xx_PSC_STOP_BRK);
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
       break;
   }
 
#ifdef ISREADY
   case RTIOC_PURGE: {
       int fcr = 0;
 
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
       if ((long)arg & RTDM_PURGE_RX_BUFFER) {
           ctx->in_head = 0;
           ctx->in_tail = 0;
           ctx->in_npend = 0;
           ctx->status = 0;
           fcr |= FCR_FIFO | FCR_RESET_RX;
           rt_mpc52xx_uart_reg_in(mode, base, RHR);
       }
       if ((long)arg & RTDM_PURGE_TX_BUFFER) {
           ctx->out_head = 0;
           ctx->out_tail = 0;
           ctx->out_npend = 0;
           fcr |= FCR_FIFO | FCR_RESET_TX;
       }
       if (fcr) {
           rt_mpc52xx_uart_reg_out(mode, base, FCR, fcr);
           rt_mpc52xx_uart_reg_out(mode, base, FCR,
                    FCR_FIFO | ctx->config.fifo_depth);
       }
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
       break;
   }
#endif
 
   default:
       err = -ENOTTY;
   }
 
   return err;
}
 
static ssize_t rt_mpc52xx_uart_read(struct rtdm_fd *fd, void *buf,
                   size_t nbyte)
{
   struct rt_mpc52xx_uart_ctx *ctx;
   rtdm_lockctx_t lock_ctx;
   size_t read = 0;
   int pending;
   int block;
   int subblock;
   int in_pos;
   char *out_pos = (char *)buf;
   rtdm_toseq_t timeout_seq;
   ssize_t ret = -EAGAIN;    /* for non-blocking read */
   int nonblocking;
 
   if (nbyte == 0)
       return 0;
 
   if (rtdm_fd_is_user(fd) && !rtdm_rw_user_ok(fd, buf, nbyte))
       return -EFAULT;
 
   ctx = rtdm_fd_to_private(fd);
 
   rtdm_toseq_init(&timeout_seq, ctx->config.rx_timeout);
 
   /* non-blocking is handled separately here */
   nonblocking = (ctx->config.rx_timeout < 0);
 
   /* only one reader allowed, stop any further attempts here */
   if (test_and_set_bit(0, &ctx->in_lock))
       return -EBUSY;
 
   rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
   while (1) {
       if (ctx->status) {
           if (ctx->status & RTSER_LSR_BREAK_IND)
               ret = -EPIPE;
           else
               ret = -EIO;
           ctx->saved_errors = ctx->status &
               (RTSER_LSR_OVERRUN_ERR | RTSER_LSR_PARITY_ERR |
                RTSER_LSR_FRAMING_ERR | RTSER_SOFT_OVERRUN_ERR);
           ctx->status = 0;
           break;
       }
 
       pending = ctx->in_npend;
 
       if (pending > 0) {
           block = subblock = (pending <= nbyte) ? pending : nbyte;
           in_pos = ctx->in_head;
 
           rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
           /* Do we have to wrap around the buffer end? */
           if (in_pos + subblock > IN_BUFFER_SIZE) {
               /* Treat the block between head and buffer end
                  separately. */
               subblock = IN_BUFFER_SIZE - in_pos;
 
               if (rtdm_fd_is_user(fd)) {
                   if (rtdm_copy_to_user
                       (fd, out_pos,
                        &ctx->in_buf[in_pos],
                        subblock) != 0) {
                       ret = -EFAULT;
                       goto break_unlocked;
                   }
               } else
                   memcpy(out_pos, &ctx->in_buf[in_pos],
                          subblock);
 
               read += subblock;
               out_pos += subblock;
 
               subblock = block - subblock;
               in_pos = 0;
           }
 
           if (rtdm_fd_is_user(fd)) {
               if (rtdm_copy_to_user(fd, out_pos,
                             &ctx->in_buf[in_pos],
                             subblock) != 0) {
                   ret = -EFAULT;
                   goto break_unlocked;
               }
           } else
               memcpy(out_pos, &ctx->in_buf[in_pos], subblock);
 
           read += subblock;
           out_pos += subblock;
           nbyte -= block;
 
           rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
           ctx->in_head =
               (ctx->in_head + block) & (IN_BUFFER_SIZE - 1);
           if ((ctx->in_npend -= block) == 0)
               ctx->ioc_events &= ~RTSER_EVENT_RXPEND;
 
           if (nbyte == 0)
               break; /* All requested bytes read. */
 
           continue;
       }
 
       if (nonblocking)
           /* ret was set to EAGAIN in case of a real
              non-blocking call or contains the error
              returned by rtdm_event_wait[_until] */
           break;
 
       ctx->in_nwait = nbyte;
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
       ret = rtdm_event_timedwait(&ctx->in_event,
                      ctx->config.rx_timeout,
                      &timeout_seq);
       if (ret < 0) {
           if (ret == -EIDRM) {
               /* Device has been closed -
                  return immediately. */
               return -EBADF;
           }
 
           rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
           nonblocking = 1;
           if (ctx->in_npend > 0) {
               /* Final turn: collect pending bytes
                  before exit. */
               continue;
           }
 
           ctx->in_nwait = 0;
           break;
       }
 
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
   }
 
   rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
break_unlocked:
   /* Release the simple reader lock, */
   clear_bit(0, &ctx->in_lock);
 
   if ((read > 0) && ((ret == 0) || (ret == -EAGAIN) ||
              (ret == -ETIMEDOUT) || (ret == -EINTR)))
       ret = read;
 
   return ret;
}
 
static ssize_t rt_mpc52xx_uart_write(struct rtdm_fd *fd,
                    const void *buf,
                    size_t nbyte)
{
   struct rt_mpc52xx_uart_ctx *ctx;
   rtdm_lockctx_t lock_ctx;
   size_t written = 0;
   int free;
   int block;
   int subblock;
   int out_pos;
   char *in_pos = (char *)buf;
   rtdm_toseq_t timeout_seq;
   ssize_t ret;
 
   if (nbyte == 0)
       return 0;
 
   if (rtdm_fd_is_user(fd) && !rtdm_read_user_ok(fd, buf, nbyte))
       return -EFAULT;
 
   ctx = rtdm_fd_to_private(fd);
 
   rtdm_toseq_init(&timeout_seq, ctx->config.rx_timeout);
 
   /* Make write operation atomic. */
   ret = rtdm_mutex_timedlock(&ctx->out_lock, ctx->config.rx_timeout,
                  &timeout_seq);
   if (ret)
       return ret;
 
   while (nbyte > 0) {
       rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
       free = OUT_BUFFER_SIZE - ctx->out_npend;
 
       if (free > 0) {
           block = subblock = (nbyte <= free) ? nbyte : free;
           out_pos = ctx->out_tail;
 
           rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
           /* Do we have to wrap around the buffer end? */
           if (out_pos + subblock > OUT_BUFFER_SIZE) {
               /* Treat the block between head and buffer
                  end separately. */
               subblock = OUT_BUFFER_SIZE - out_pos;
 
               if (rtdm_fd_is_user(fd)) {
                   if (rtdm_copy_from_user
                       (fd,
                        &ctx->out_buf[out_pos],
                        in_pos, subblock) != 0) {
                       ret = -EFAULT;
                       break;
                   }
               } else
                   memcpy(&ctx->out_buf[out_pos], in_pos,
                          subblock);
 
               written += subblock;
               in_pos += subblock;
 
               subblock = block - subblock;
               out_pos = 0;
           }
 
           if (rtdm_fd_is_user(fd)) {
               if (rtdm_copy_from_user
                   (fd, &ctx->out_buf[out_pos],
                    in_pos, subblock) != 0) {
                   ret = -EFAULT;
                   break;
               }
           } else
               memcpy(&ctx->out_buf[out_pos], in_pos, block);
 
           written += subblock;
           in_pos += subblock;
           nbyte -= block;
 
           rtdm_lock_get_irqsave(&ctx->lock, lock_ctx);
 
           ctx->out_tail =
               (ctx->out_tail + block) & (OUT_BUFFER_SIZE - 1);
           ctx->out_npend += block;
 
           /* Mark shift register not empty */
           ctx->ioc_events &= ~RTSER_EVENT_TXEMPTY;
           ctx->tx_empty = 0;
 
           psc_start_tx(ctx);
 
           rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
           continue;
       }
 
       rtdm_lock_put_irqrestore(&ctx->lock, lock_ctx);
 
       ret = rtdm_event_timedwait(&ctx->out_event,
                      ctx->config.tx_timeout,
                      &timeout_seq);
       if (ret < 0) {
           if (ret == -EIDRM) {
               /* Device has been closed -
                  return immediately. */
               return -EBADF;
           }
           if (ret == -EWOULDBLOCK) {
               /* Fix error code for non-blocking mode. */
               ret = -EAGAIN;
           }
           break;
       }
   }
 
   rtdm_mutex_unlock(&ctx->out_lock);
 
   if ((written > 0) && ((ret == 0) || (ret == -EAGAIN) ||
                 (ret == -ETIMEDOUT) || (ret == -EINTR)))
       ret = written;
 
   return ret;
}
 
static struct rtdm_driver mpc52xx_uart_driver = {
   .profile_info        = RTDM_PROFILE_INFO(imx_uart,
                           RTDM_CLASS_SERIAL,
                           RTDM_SUBCLASS_16550A,
                           RTSER_PROFILE_VER),
   .device_count        = MPC52xx_PSC_MAXNUM,
   .device_flags        = RTDM_NAMED_DEVICE | RTDM_EXCLUSIVE,
   .context_size        = sizeof(struct rt_mpc52xx_uart_ctx),
   .ops = {
       .open        = rt_mpc52xx_uart_open,
       .close        = rt_mpc52xx_uart_close,
       .ioctl_rt    = rt_mpc52xx_uart_ioctl,
       .ioctl_nrt    = rt_mpc52xx_uart_ioctl,
       .read_rt    = rt_mpc52xx_uart_read,
       .write_rt    = rt_mpc52xx_uart_write,
   },
};
 
static int rt_mpc52xx_uart_of_probe(struct platform_device *op)
{
   struct rt_mpc52xx_uart_port *port;
   struct rtdm_device *dev;
   struct resource res;
   int ret, idx;
 
   dev_dbg(&op->dev, "mpc52xx_uart_probe(op=%p)\n", op);
 
   /* Check validity & presence */
   for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
       if (rt_mpc52xx_uart_nodes[idx] == op->dev.of_node)
           break;
   if (idx >= MPC52xx_PSC_MAXNUM)
       return -EINVAL;
 
   port = kmalloc(sizeof(*port), GFP_KERNEL);
   if (!port) {
       dev_err(&op->dev, "Could allocate port space\n");
       return -ENOMEM;
   }
   port->dev = &op->dev;
 
   /*
    * Set the uart clock to the input clock of the psc, the different
    * prescalers are taken into account in the set_baudrate() methods
    * of the respective chip
    */
   port->uartclk = mpc5xxx_get_bus_frequency(op->dev.of_node);
   if (port->uartclk == 0) {
       dev_err(&op->dev, "Could not find uart clock frequency\n");
       ret = -EINVAL;
       goto out_kfree_port;
   }
 
   /* Fetch register locations */
   ret = of_address_to_resource(op->dev.of_node, 0, &res);
   if (ret) {
       dev_err(&op->dev, "Could not get resources\n");
       goto out_kfree_port;
   }
   port->num = ((res.start >> 8) & 0xf) / 2;
   if (port->num < 6)
       port->num++;
 
   if (!request_mem_region(res.start, resource_size(&res),
               RT_MPC52XX_UART_DRVNAM)) {
       ret = -EBUSY;
       goto out_kfree_port;
   }
 
   port->psc = ioremap(res.start, resource_size(&res));
   if (!port->psc) {
       dev_err(&op->dev, "Could not map PSC registers\n");
       ret = -ENOMEM;
       goto out_release_mem_region;
   }
   port->fifo = (struct mpc52xx_psc_fifo __iomem *)(port->psc + 1);
 
   port->irq = irq_of_parse_and_map(op->dev.of_node, 0);
   if (port->irq <= 0) {
       dev_err(&op->dev, "Could not get irq\n");
       ret = -ENODEV;
       goto out_iounmap;
   }
 
   dev = kmalloc(sizeof(struct rtdm_device), GFP_KERNEL);
   if (!dev) {
       dev_err(&op->dev, "Could allocate device context\n");
       ret = -ENOMEM;
       goto out_dispose_irq_mapping;
   }
 
   dev->driver = &mpc52xx_uart_driver;
   dev->label = "rtserPSC%d";
   dev->device_data = port;
 
   rt_mpc52xx_uart_init_hw(port);
 
   ret = rtdm_dev_register(dev);
   if (ret)
       goto out_kfree_dev;
 
   dev_set_drvdata(&op->dev, dev);
 
   dev_info(&op->dev, "%s on PSC%d at 0x%p, irq=%d, clk=%i\n",
        dev->name, port->num, port->psc, port->irq,
        port->uartclk);
 
   return 0;
 
out_kfree_dev:
   kfree(dev);
out_dispose_irq_mapping:
   irq_dispose_mapping(port->irq);
out_iounmap:
   iounmap(port->psc);
out_release_mem_region:
   release_mem_region(res.start, resource_size(&res));
out_kfree_port:
   kfree(port);
 
   return ret;
}
 
static int rt_mpc52xx_uart_of_remove(struct platform_device *op)
{
   struct rtdm_device *dev = dev_get_drvdata(&op->dev);
   struct rt_mpc52xx_uart_port *port = dev->device_data;
   struct resource res;
 
   dev_set_drvdata(&op->dev, NULL);
 
   rtdm_dev_unregister(dev);
   irq_dispose_mapping(port->irq);
   iounmap(port->psc);
   if (!of_address_to_resource(op->dev.of_node, 0, &res))
       release_mem_region(res.start, resource_size(&res));
   kfree(port);
   kfree(dev);
 
   return 0;
}
 
static struct of_device_id rt_mpc52xx_uart_of_match[] = {
   { .compatible = "fsl,mpc5200b-psc-uart", },
   { .compatible = "fsl,mpc5200-psc-uart", },
   {},
};
MODULE_DEVICE_TABLE(of, rt_mpc52xx_uart_of_match);
 
static struct platform_driver rt_mpc52xx_uart_of_driver = {
   .probe = rt_mpc52xx_uart_of_probe,
   .remove    =  rt_mpc52xx_uart_of_remove,
   .driver = {
       .name = "rt-mpc52xx-psc-uart",
       .owner = THIS_MODULE,
       .of_match_table = rt_mpc52xx_uart_of_match,
   },
};
 
static void rt_mpc52xx_uart_of_enumerate(void)
{
   struct device_node *np;
   int idx = 0;
 
   /* Assign index to each PSC in device tree line the linux driver does */
   for_each_matching_node(np, rt_mpc52xx_uart_of_match) {
       of_node_get(np);
       rt_mpc52xx_uart_nodes[idx] = np;
       idx++;
   }
}
 
static int __init rt_mpc52xx_uart_init(void)
{
   int ret;
 
   if (!rtdm_available())
       return -ENODEV;
 
   printk(KERN_INFO "RTserial: MPC52xx PSC UART driver\n");
 
   rt_mpc52xx_uart_of_enumerate();
 
   ret = platform_driver_register(&rt_mpc52xx_uart_of_driver);
   if (ret) {
       printk(KERN_ERR
              "%s; Could not register  driver (err=%d)\n",
              __func__, ret);
       return ret;
   }
 
   return 0;
}
 
static void __exit rt_mpc52xx_uart_exit(void)
{
   platform_driver_unregister(&rt_mpc52xx_uart_of_driver);
}
 
module_init(rt_mpc52xx_uart_init);
module_exit(rt_mpc52xx_uart_exit);