68360serial.c 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979
  1. /*
  2. * UART driver for 68360 CPM SCC or SMC
  3. * Copyright (c) 2000 D. Jeff Dionne <jeff@uclinux.org>,
  4. * Copyright (c) 2000 Michael Leslie <mleslie@lineo.ca>
  5. * Copyright (c) 1997 Dan Malek <dmalek@jlc.net>
  6. *
  7. * I used the serial.c driver as the framework for this driver.
  8. * Give credit to those guys.
  9. * The original code was written for the MBX860 board. I tried to make
  10. * it generic, but there may be some assumptions in the structures that
  11. * have to be fixed later.
  12. * To save porting time, I did not bother to change any object names
  13. * that are not accessed outside of this file.
  14. * It still needs lots of work........When it was easy, I included code
  15. * to support the SCCs, but this has never been tested, nor is it complete.
  16. * Only the SCCs support modem control, so that is not complete either.
  17. *
  18. * This module exports the following rs232 io functions:
  19. *
  20. * int rs_360_init(void);
  21. */
  22. #include <linux/module.h>
  23. #include <linux/errno.h>
  24. #include <linux/signal.h>
  25. #include <linux/sched.h>
  26. #include <linux/timer.h>
  27. #include <linux/interrupt.h>
  28. #include <linux/tty.h>
  29. #include <linux/tty_flip.h>
  30. #include <linux/serial.h>
  31. #include <linux/serialP.h>
  32. #include <linux/major.h>
  33. #include <linux/string.h>
  34. #include <linux/fcntl.h>
  35. #include <linux/ptrace.h>
  36. #include <linux/mm.h>
  37. #include <linux/init.h>
  38. #include <linux/delay.h>
  39. #include <asm/irq.h>
  40. #include <asm/m68360.h>
  41. #include <asm/commproc.h>
  42. #ifdef CONFIG_KGDB
  43. extern void breakpoint(void);
  44. extern void set_debug_traps(void);
  45. extern int kgdb_output_string (const char* s, unsigned int count);
  46. #endif
  47. /* #ifdef CONFIG_SERIAL_CONSOLE */ /* This seems to be a post 2.0 thing - mles */
  48. #include <linux/console.h>
  49. #include <linux/jiffies.h>
  50. /* this defines the index into rs_table for the port to use
  51. */
  52. #ifndef CONFIG_SERIAL_CONSOLE_PORT
  53. #define CONFIG_SERIAL_CONSOLE_PORT 1 /* ie SMC2 - note USE_SMC2 must be defined */
  54. #endif
  55. /* #endif */
  56. #if 0
  57. /* SCC2 for console
  58. */
  59. #undef CONFIG_SERIAL_CONSOLE_PORT
  60. #define CONFIG_SERIAL_CONSOLE_PORT 2
  61. #endif
  62. #define TX_WAKEUP ASYNC_SHARE_IRQ
  63. static char *serial_name = "CPM UART driver";
  64. static char *serial_version = "0.03";
  65. static struct tty_driver *serial_driver;
  66. int serial_console_setup(struct console *co, char *options);
  67. /*
  68. * Serial driver configuration section. Here are the various options:
  69. */
  70. #define SERIAL_PARANOIA_CHECK
  71. #define CONFIG_SERIAL_NOPAUSE_IO
  72. #define SERIAL_DO_RESTART
  73. /* Set of debugging defines */
  74. #undef SERIAL_DEBUG_INTR
  75. #undef SERIAL_DEBUG_OPEN
  76. #undef SERIAL_DEBUG_FLOW
  77. #undef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
  78. #define _INLINE_ inline
  79. #define DBG_CNT(s)
  80. /* We overload some of the items in the data structure to meet our
  81. * needs. For example, the port address is the CPM parameter ram
  82. * offset for the SCC or SMC. The maximum number of ports is 4 SCCs and
  83. * 2 SMCs. The "hub6" field is used to indicate the channel number, with
  84. * a flag indicating SCC or SMC, and the number is used as an index into
  85. * the CPM parameter area for this device.
  86. * The "type" field is currently set to 0, for PORT_UNKNOWN. It is
  87. * not currently used. I should probably use it to indicate the port
  88. * type of SMC or SCC.
  89. * The SMCs do not support any modem control signals.
  90. */
  91. #define smc_scc_num hub6
  92. #define NUM_IS_SCC ((int)0x00010000)
  93. #define PORT_NUM(P) ((P) & 0x0000ffff)
  94. #if defined (CONFIG_UCQUICC)
  95. volatile extern void *_periph_base;
  96. /* sipex transceiver
  97. * mode bits for are on pins
  98. *
  99. * SCC2 d16..19
  100. * SCC3 d20..23
  101. * SCC4 d24..27
  102. */
  103. #define SIPEX_MODE(n,m) ((m & 0x0f)<<(16+4*(n-1)))
  104. static uint sipex_mode_bits = 0x00000000;
  105. #endif
  106. /* There is no `serial_state' defined back here in 2.0.
  107. * Try to get by with serial_struct
  108. */
  109. /* #define serial_state serial_struct */
  110. /* 2.4 -> 2.0 portability problem: async_icount in 2.4 has a few
  111. * extras: */
  112. #if 0
  113. struct async_icount_24 {
  114. __u32 cts, dsr, rng, dcd, tx, rx;
  115. __u32 frame, parity, overrun, brk;
  116. __u32 buf_overrun;
  117. } icount;
  118. #endif
  119. #if 0
  120. struct serial_state {
  121. int magic;
  122. int baud_base;
  123. unsigned long port;
  124. int irq;
  125. int flags;
  126. int hub6;
  127. int type;
  128. int line;
  129. int revision; /* Chip revision (950) */
  130. int xmit_fifo_size;
  131. int custom_divisor;
  132. int count;
  133. u8 *iomem_base;
  134. u16 iomem_reg_shift;
  135. unsigned short close_delay;
  136. unsigned short closing_wait; /* time to wait before closing */
  137. struct async_icount_24 icount;
  138. int io_type;
  139. struct async_struct *info;
  140. };
  141. #endif
  142. #define SSTATE_MAGIC 0x5302
  143. /* SMC2 is sometimes used for low performance TDM interfaces. Define
  144. * this as 1 if you want SMC2 as a serial port UART managed by this driver.
  145. * Define this as 0 if you wish to use SMC2 for something else.
  146. */
  147. #define USE_SMC2 1
  148. #if 0
  149. /* Define SCC to ttySx mapping. */
  150. #define SCC_NUM_BASE (USE_SMC2 + 1) /* SCC base tty "number" */
  151. /* Define which SCC is the first one to use for a serial port. These
  152. * are 0-based numbers, i.e. this assumes the first SCC (SCC1) is used
  153. * for Ethernet, and the first available SCC for serial UART is SCC2.
  154. * NOTE: IF YOU CHANGE THIS, you have to change the PROFF_xxx and
  155. * interrupt vectors in the table below to match.
  156. */
  157. #define SCC_IDX_BASE 1 /* table index */
  158. #endif
  159. /* Processors other than the 860 only get SMCs configured by default.
  160. * Either they don't have SCCs or they are allocated somewhere else.
  161. * Of course, there are now 860s without some SCCs, so we will need to
  162. * address that someday.
  163. * The Embedded Planet Multimedia I/O cards use TDM interfaces to the
  164. * stereo codec parts, and we use SMC2 to help support that.
  165. */
  166. static struct serial_state rs_table[] = {
  167. /* type line PORT IRQ FLAGS smc_scc_num (F.K.A. hub6) */
  168. { 0, 0, PRSLOT_SMC1, CPMVEC_SMC1, 0, 0 } /* SMC1 ttyS0 */
  169. #if USE_SMC2
  170. ,{ 0, 0, PRSLOT_SMC2, CPMVEC_SMC2, 0, 1 } /* SMC2 ttyS1 */
  171. #endif
  172. #if defined(CONFIG_SERIAL_68360_SCC)
  173. ,{ 0, 0, PRSLOT_SCC2, CPMVEC_SCC2, 0, (NUM_IS_SCC | 1) } /* SCC2 ttyS2 */
  174. ,{ 0, 0, PRSLOT_SCC3, CPMVEC_SCC3, 0, (NUM_IS_SCC | 2) } /* SCC3 ttyS3 */
  175. ,{ 0, 0, PRSLOT_SCC4, CPMVEC_SCC4, 0, (NUM_IS_SCC | 3) } /* SCC4 ttyS4 */
  176. #endif
  177. };
  178. #define NR_PORTS (sizeof(rs_table)/sizeof(struct serial_state))
  179. /* The number of buffer descriptors and their sizes.
  180. */
  181. #define RX_NUM_FIFO 4
  182. #define RX_BUF_SIZE 32
  183. #define TX_NUM_FIFO 4
  184. #define TX_BUF_SIZE 32
  185. #define CONSOLE_NUM_FIFO 2
  186. #define CONSOLE_BUF_SIZE 4
  187. char *console_fifos[CONSOLE_NUM_FIFO * CONSOLE_BUF_SIZE];
  188. /* The async_struct in serial.h does not really give us what we
  189. * need, so define our own here.
  190. */
  191. typedef struct serial_info {
  192. int magic;
  193. int flags;
  194. struct serial_state *state;
  195. /* struct serial_struct *state; */
  196. /* struct async_struct *state; */
  197. struct tty_struct *tty;
  198. int read_status_mask;
  199. int ignore_status_mask;
  200. int timeout;
  201. int line;
  202. int x_char; /* xon/xoff character */
  203. int close_delay;
  204. unsigned short closing_wait;
  205. unsigned short closing_wait2;
  206. unsigned long event;
  207. unsigned long last_active;
  208. int blocked_open; /* # of blocked opens */
  209. struct work_struct tqueue;
  210. struct work_struct tqueue_hangup;
  211. wait_queue_head_t open_wait;
  212. wait_queue_head_t close_wait;
  213. /* CPM Buffer Descriptor pointers.
  214. */
  215. QUICC_BD *rx_bd_base;
  216. QUICC_BD *rx_cur;
  217. QUICC_BD *tx_bd_base;
  218. QUICC_BD *tx_cur;
  219. } ser_info_t;
  220. /* since kmalloc_init() does not get called until much after this initialization: */
  221. static ser_info_t quicc_ser_info[NR_PORTS];
  222. static char rx_buf_pool[NR_PORTS * RX_NUM_FIFO * RX_BUF_SIZE];
  223. static char tx_buf_pool[NR_PORTS * TX_NUM_FIFO * TX_BUF_SIZE];
  224. static void change_speed(ser_info_t *info);
  225. static void rs_360_wait_until_sent(struct tty_struct *tty, int timeout);
  226. static inline int serial_paranoia_check(ser_info_t *info,
  227. char *name, const char *routine)
  228. {
  229. #ifdef SERIAL_PARANOIA_CHECK
  230. static const char *badmagic =
  231. "Warning: bad magic number for serial struct (%s) in %s\n";
  232. static const char *badinfo =
  233. "Warning: null async_struct for (%s) in %s\n";
  234. if (!info) {
  235. printk(badinfo, name, routine);
  236. return 1;
  237. }
  238. if (info->magic != SERIAL_MAGIC) {
  239. printk(badmagic, name, routine);
  240. return 1;
  241. }
  242. #endif
  243. return 0;
  244. }
  245. /*
  246. * This is used to figure out the divisor speeds and the timeouts,
  247. * indexed by the termio value. The generic CPM functions are responsible
  248. * for setting and assigning baud rate generators for us.
  249. */
  250. static int baud_table[] = {
  251. 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800,
  252. 9600, 19200, 38400, 57600, 115200, 230400, 460800, 0 };
  253. /* This sucks. There is a better way: */
  254. #if defined(CONFIG_CONSOLE_9600)
  255. #define CONSOLE_BAUDRATE 9600
  256. #elif defined(CONFIG_CONSOLE_19200)
  257. #define CONSOLE_BAUDRATE 19200
  258. #elif defined(CONFIG_CONSOLE_115200)
  259. #define CONSOLE_BAUDRATE 115200
  260. #else
  261. #warning "console baud rate undefined"
  262. #define CONSOLE_BAUDRATE 9600
  263. #endif
  264. /*
  265. * ------------------------------------------------------------
  266. * rs_stop() and rs_start()
  267. *
  268. * This routines are called before setting or resetting tty->stopped.
  269. * They enable or disable transmitter interrupts, as necessary.
  270. * ------------------------------------------------------------
  271. */
  272. static void rs_360_stop(struct tty_struct *tty)
  273. {
  274. ser_info_t *info = (ser_info_t *)tty->driver_data;
  275. int idx;
  276. unsigned long flags;
  277. volatile struct scc_regs *sccp;
  278. volatile struct smc_regs *smcp;
  279. if (serial_paranoia_check(info, tty->name, "rs_stop"))
  280. return;
  281. local_irq_save(flags);
  282. idx = PORT_NUM(info->state->smc_scc_num);
  283. if (info->state->smc_scc_num & NUM_IS_SCC) {
  284. sccp = &pquicc->scc_regs[idx];
  285. sccp->scc_sccm &= ~UART_SCCM_TX;
  286. } else {
  287. /* smcp = &cpmp->cp_smc[idx]; */
  288. smcp = &pquicc->smc_regs[idx];
  289. smcp->smc_smcm &= ~SMCM_TX;
  290. }
  291. local_irq_restore(flags);
  292. }
  293. static void rs_360_start(struct tty_struct *tty)
  294. {
  295. ser_info_t *info = (ser_info_t *)tty->driver_data;
  296. int idx;
  297. unsigned long flags;
  298. volatile struct scc_regs *sccp;
  299. volatile struct smc_regs *smcp;
  300. if (serial_paranoia_check(info, tty->name, "rs_stop"))
  301. return;
  302. local_irq_save(flags);
  303. idx = PORT_NUM(info->state->smc_scc_num);
  304. if (info->state->smc_scc_num & NUM_IS_SCC) {
  305. sccp = &pquicc->scc_regs[idx];
  306. sccp->scc_sccm |= UART_SCCM_TX;
  307. } else {
  308. smcp = &pquicc->smc_regs[idx];
  309. smcp->smc_smcm |= SMCM_TX;
  310. }
  311. local_irq_restore(flags);
  312. }
  313. /*
  314. * ----------------------------------------------------------------------
  315. *
  316. * Here starts the interrupt handling routines. All of the following
  317. * subroutines are declared as inline and are folded into
  318. * rs_interrupt(). They were separated out for readability's sake.
  319. *
  320. * Note: rs_interrupt() is a "fast" interrupt, which means that it
  321. * runs with interrupts turned off. People who may want to modify
  322. * rs_interrupt() should try to keep the interrupt handler as fast as
  323. * possible. After you are done making modifications, it is not a bad
  324. * idea to do:
  325. *
  326. * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
  327. *
  328. * and look at the resulting assemble code in serial.s.
  329. *
  330. * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
  331. * -----------------------------------------------------------------------
  332. */
  333. static _INLINE_ void receive_chars(ser_info_t *info)
  334. {
  335. struct tty_struct *tty = info->port.tty;
  336. unsigned char ch, flag, *cp;
  337. /*int ignored = 0;*/
  338. int i;
  339. ushort status;
  340. struct async_icount *icount;
  341. /* struct async_icount_24 *icount; */
  342. volatile QUICC_BD *bdp;
  343. icount = &info->state->icount;
  344. /* Just loop through the closed BDs and copy the characters into
  345. * the buffer.
  346. */
  347. bdp = info->rx_cur;
  348. for (;;) {
  349. if (bdp->status & BD_SC_EMPTY) /* If this one is empty */
  350. break; /* we are all done */
  351. /* The read status mask tell us what we should do with
  352. * incoming characters, especially if errors occur.
  353. * One special case is the use of BD_SC_EMPTY. If
  354. * this is not set, we are supposed to be ignoring
  355. * inputs. In this case, just mark the buffer empty and
  356. * continue.
  357. */
  358. if (!(info->read_status_mask & BD_SC_EMPTY)) {
  359. bdp->status |= BD_SC_EMPTY;
  360. bdp->status &=
  361. ~(BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV);
  362. if (bdp->status & BD_SC_WRAP)
  363. bdp = info->rx_bd_base;
  364. else
  365. bdp++;
  366. continue;
  367. }
  368. /* Get the number of characters and the buffer pointer.
  369. */
  370. i = bdp->length;
  371. /* cp = (unsigned char *)__va(bdp->buf); */
  372. cp = (char *)bdp->buf;
  373. status = bdp->status;
  374. while (i-- > 0) {
  375. ch = *cp++;
  376. icount->rx++;
  377. #ifdef SERIAL_DEBUG_INTR
  378. printk("DR%02x:%02x...", ch, status);
  379. #endif
  380. flag = TTY_NORMAL;
  381. if (status & (BD_SC_BR | BD_SC_FR |
  382. BD_SC_PR | BD_SC_OV)) {
  383. /*
  384. * For statistics only
  385. */
  386. if (status & BD_SC_BR)
  387. icount->brk++;
  388. else if (status & BD_SC_PR)
  389. icount->parity++;
  390. else if (status & BD_SC_FR)
  391. icount->frame++;
  392. if (status & BD_SC_OV)
  393. icount->overrun++;
  394. /*
  395. * Now check to see if character should be
  396. * ignored, and mask off conditions which
  397. * should be ignored.
  398. if (status & info->ignore_status_mask) {
  399. if (++ignored > 100)
  400. break;
  401. continue;
  402. }
  403. */
  404. status &= info->read_status_mask;
  405. if (status & (BD_SC_BR)) {
  406. #ifdef SERIAL_DEBUG_INTR
  407. printk("handling break....");
  408. #endif
  409. *tty->flip.flag_buf_ptr = TTY_BREAK;
  410. if (info->flags & ASYNC_SAK)
  411. do_SAK(tty);
  412. } else if (status & BD_SC_PR)
  413. flag = TTY_PARITY;
  414. else if (status & BD_SC_FR)
  415. flag = TTY_FRAME;
  416. }
  417. tty_insert_flip_char(tty, ch, flag);
  418. if (status & BD_SC_OV)
  419. /*
  420. * Overrun is special, since it's
  421. * reported immediately, and doesn't
  422. * affect the current character
  423. */
  424. tty_insert_flip_char(tty, 0, TTY_OVERRUN);
  425. }
  426. /* This BD is ready to be used again. Clear status.
  427. * Get next BD.
  428. */
  429. bdp->status |= BD_SC_EMPTY;
  430. bdp->status &= ~(BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV);
  431. if (bdp->status & BD_SC_WRAP)
  432. bdp = info->rx_bd_base;
  433. else
  434. bdp++;
  435. }
  436. info->rx_cur = (QUICC_BD *)bdp;
  437. tty_schedule_flip(tty);
  438. }
  439. static _INLINE_ void receive_break(ser_info_t *info)
  440. {
  441. struct tty_struct *tty = info->port.tty;
  442. info->state->icount.brk++;
  443. /* Check to see if there is room in the tty buffer for
  444. * the break. If not, we exit now, losing the break. FIXME
  445. */
  446. tty_insert_flip_char(tty, 0, TTY_BREAK);
  447. tty_schedule_flip(tty);
  448. }
  449. static _INLINE_ void transmit_chars(ser_info_t *info)
  450. {
  451. if ((info->flags & TX_WAKEUP) ||
  452. (info->port.tty->flags & (1 << TTY_DO_WRITE_WAKEUP))) {
  453. schedule_work(&info->tqueue);
  454. }
  455. #ifdef SERIAL_DEBUG_INTR
  456. printk("THRE...");
  457. #endif
  458. }
  459. #ifdef notdef
  460. /* I need to do this for the SCCs, so it is left as a reminder.
  461. */
  462. static _INLINE_ void check_modem_status(struct async_struct *info)
  463. {
  464. int status;
  465. /* struct async_icount *icount; */
  466. struct async_icount_24 *icount;
  467. status = serial_in(info, UART_MSR);
  468. if (status & UART_MSR_ANY_DELTA) {
  469. icount = &info->state->icount;
  470. /* update input line counters */
  471. if (status & UART_MSR_TERI)
  472. icount->rng++;
  473. if (status & UART_MSR_DDSR)
  474. icount->dsr++;
  475. if (status & UART_MSR_DDCD) {
  476. icount->dcd++;
  477. #ifdef CONFIG_HARD_PPS
  478. if ((info->flags & ASYNC_HARDPPS_CD) &&
  479. (status & UART_MSR_DCD))
  480. hardpps();
  481. #endif
  482. }
  483. if (status & UART_MSR_DCTS)
  484. icount->cts++;
  485. wake_up_interruptible(&info->delta_msr_wait);
  486. }
  487. if ((info->flags & ASYNC_CHECK_CD) && (status & UART_MSR_DDCD)) {
  488. #if (defined(SERIAL_DEBUG_OPEN) || defined(SERIAL_DEBUG_INTR))
  489. printk("ttys%d CD now %s...", info->line,
  490. (status & UART_MSR_DCD) ? "on" : "off");
  491. #endif
  492. if (status & UART_MSR_DCD)
  493. wake_up_interruptible(&info->open_wait);
  494. else {
  495. #ifdef SERIAL_DEBUG_OPEN
  496. printk("scheduling hangup...");
  497. #endif
  498. queue_task(&info->tqueue_hangup,
  499. &tq_scheduler);
  500. }
  501. }
  502. if (info->flags & ASYNC_CTS_FLOW) {
  503. if (info->port.tty->hw_stopped) {
  504. if (status & UART_MSR_CTS) {
  505. #if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
  506. printk("CTS tx start...");
  507. #endif
  508. info->port.tty->hw_stopped = 0;
  509. info->IER |= UART_IER_THRI;
  510. serial_out(info, UART_IER, info->IER);
  511. rs_sched_event(info, RS_EVENT_WRITE_WAKEUP);
  512. return;
  513. }
  514. } else {
  515. if (!(status & UART_MSR_CTS)) {
  516. #if (defined(SERIAL_DEBUG_INTR) || defined(SERIAL_DEBUG_FLOW))
  517. printk("CTS tx stop...");
  518. #endif
  519. info->port.tty->hw_stopped = 1;
  520. info->IER &= ~UART_IER_THRI;
  521. serial_out(info, UART_IER, info->IER);
  522. }
  523. }
  524. }
  525. }
  526. #endif
  527. /*
  528. * This is the serial driver's interrupt routine for a single port
  529. */
  530. /* static void rs_360_interrupt(void *dev_id) */ /* until and if we start servicing irqs here */
  531. static void rs_360_interrupt(int vec, void *dev_id)
  532. {
  533. u_char events;
  534. int idx;
  535. ser_info_t *info;
  536. volatile struct smc_regs *smcp;
  537. volatile struct scc_regs *sccp;
  538. info = dev_id;
  539. idx = PORT_NUM(info->state->smc_scc_num);
  540. if (info->state->smc_scc_num & NUM_IS_SCC) {
  541. sccp = &pquicc->scc_regs[idx];
  542. events = sccp->scc_scce;
  543. if (events & SCCM_RX)
  544. receive_chars(info);
  545. if (events & SCCM_TX)
  546. transmit_chars(info);
  547. sccp->scc_scce = events;
  548. } else {
  549. smcp = &pquicc->smc_regs[idx];
  550. events = smcp->smc_smce;
  551. if (events & SMCM_BRKE)
  552. receive_break(info);
  553. if (events & SMCM_RX)
  554. receive_chars(info);
  555. if (events & SMCM_TX)
  556. transmit_chars(info);
  557. smcp->smc_smce = events;
  558. }
  559. #ifdef SERIAL_DEBUG_INTR
  560. printk("rs_interrupt_single(%d, %x)...",
  561. info->state->smc_scc_num, events);
  562. #endif
  563. #ifdef modem_control
  564. check_modem_status(info);
  565. #endif
  566. info->last_active = jiffies;
  567. #ifdef SERIAL_DEBUG_INTR
  568. printk("end.\n");
  569. #endif
  570. }
  571. /*
  572. * -------------------------------------------------------------------
  573. * Here ends the serial interrupt routines.
  574. * -------------------------------------------------------------------
  575. */
  576. static void do_softint(void *private_)
  577. {
  578. ser_info_t *info = (ser_info_t *) private_;
  579. struct tty_struct *tty;
  580. tty = info->port.tty;
  581. if (!tty)
  582. return;
  583. if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event))
  584. tty_wakeup(tty);
  585. }
  586. /*
  587. * This routine is called from the scheduler tqueue when the interrupt
  588. * routine has signalled that a hangup has occurred. The path of
  589. * hangup processing is:
  590. *
  591. * serial interrupt routine -> (scheduler tqueue) ->
  592. * do_serial_hangup() -> tty->hangup() -> rs_hangup()
  593. *
  594. */
  595. static void do_serial_hangup(void *private_)
  596. {
  597. struct async_struct *info = (struct async_struct *) private_;
  598. struct tty_struct *tty;
  599. tty = info->port.tty;
  600. if (!tty)
  601. return;
  602. tty_hangup(tty);
  603. }
  604. static int startup(ser_info_t *info)
  605. {
  606. unsigned long flags;
  607. int retval=0;
  608. int idx;
  609. /*struct serial_state *state = info->state;*/
  610. volatile struct smc_regs *smcp;
  611. volatile struct scc_regs *sccp;
  612. volatile struct smc_uart_pram *up;
  613. volatile struct uart_pram *scup;
  614. local_irq_save(flags);
  615. if (info->flags & ASYNC_INITIALIZED) {
  616. goto errout;
  617. }
  618. #ifdef maybe
  619. if (!state->port || !state->type) {
  620. if (info->port.tty)
  621. set_bit(TTY_IO_ERROR, &info->port.tty->flags);
  622. goto errout;
  623. }
  624. #endif
  625. #ifdef SERIAL_DEBUG_OPEN
  626. printk("starting up ttys%d (irq %d)...", info->line, state->irq);
  627. #endif
  628. #ifdef modem_control
  629. info->MCR = 0;
  630. if (info->port.tty->termios->c_cflag & CBAUD)
  631. info->MCR = UART_MCR_DTR | UART_MCR_RTS;
  632. #endif
  633. if (info->port.tty)
  634. clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
  635. /*
  636. * and set the speed of the serial port
  637. */
  638. change_speed(info);
  639. idx = PORT_NUM(info->state->smc_scc_num);
  640. if (info->state->smc_scc_num & NUM_IS_SCC) {
  641. sccp = &pquicc->scc_regs[idx];
  642. scup = &pquicc->pram[info->state->port].scc.pscc.u;
  643. scup->mrblr = RX_BUF_SIZE;
  644. scup->max_idl = RX_BUF_SIZE;
  645. sccp->scc_sccm |= (UART_SCCM_TX | UART_SCCM_RX);
  646. sccp->scc_gsmr.w.low |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
  647. } else {
  648. smcp = &pquicc->smc_regs[idx];
  649. /* Enable interrupts and I/O.
  650. */
  651. smcp->smc_smcm |= (SMCM_RX | SMCM_TX);
  652. smcp->smc_smcmr |= (SMCMR_REN | SMCMR_TEN);
  653. /* We can tune the buffer length and idle characters
  654. * to take advantage of the entire incoming buffer size.
  655. * If mrblr is something other than 1, maxidl has to be
  656. * non-zero or we never get an interrupt. The maxidl
  657. * is the number of character times we wait after reception
  658. * of the last character before we decide no more characters
  659. * are coming.
  660. */
  661. /* up = (smc_uart_t *)&pquicc->cp_dparam[state->port]; */
  662. /* holy unionized structures, Batman: */
  663. up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
  664. up->mrblr = RX_BUF_SIZE;
  665. up->max_idl = RX_BUF_SIZE;
  666. up->brkcr = 1; /* number of break chars */
  667. }
  668. info->flags |= ASYNC_INITIALIZED;
  669. local_irq_restore(flags);
  670. return 0;
  671. errout:
  672. local_irq_restore(flags);
  673. return retval;
  674. }
  675. /*
  676. * This routine will shutdown a serial port; interrupts are disabled, and
  677. * DTR is dropped if the hangup on close termio flag is on.
  678. */
  679. static void shutdown(ser_info_t *info)
  680. {
  681. unsigned long flags;
  682. struct serial_state *state;
  683. int idx;
  684. volatile struct smc_regs *smcp;
  685. volatile struct scc_regs *sccp;
  686. if (!(info->flags & ASYNC_INITIALIZED))
  687. return;
  688. state = info->state;
  689. #ifdef SERIAL_DEBUG_OPEN
  690. printk("Shutting down serial port %d (irq %d)....", info->line,
  691. state->irq);
  692. #endif
  693. local_irq_save(flags);
  694. idx = PORT_NUM(state->smc_scc_num);
  695. if (state->smc_scc_num & NUM_IS_SCC) {
  696. sccp = &pquicc->scc_regs[idx];
  697. sccp->scc_gsmr.w.low &= ~(SCC_GSMRL_ENR | SCC_GSMRL_ENT);
  698. #ifdef CONFIG_SERIAL_CONSOLE
  699. /* We can't disable the transmitter if this is the
  700. * system console.
  701. */
  702. if ((state - rs_table) != CONFIG_SERIAL_CONSOLE_PORT)
  703. #endif
  704. sccp->scc_sccm &= ~(UART_SCCM_TX | UART_SCCM_RX);
  705. } else {
  706. smcp = &pquicc->smc_regs[idx];
  707. /* Disable interrupts and I/O.
  708. */
  709. smcp->smc_smcm &= ~(SMCM_RX | SMCM_TX);
  710. #ifdef CONFIG_SERIAL_CONSOLE
  711. /* We can't disable the transmitter if this is the
  712. * system console.
  713. */
  714. if ((state - rs_table) != CONFIG_SERIAL_CONSOLE_PORT)
  715. #endif
  716. smcp->smc_smcmr &= ~(SMCMR_REN | SMCMR_TEN);
  717. }
  718. if (info->port.tty)
  719. set_bit(TTY_IO_ERROR, &info->port.tty->flags);
  720. info->flags &= ~ASYNC_INITIALIZED;
  721. local_irq_restore(flags);
  722. }
  723. /*
  724. * This routine is called to set the UART divisor registers to match
  725. * the specified baud rate for a serial port.
  726. */
  727. static void change_speed(ser_info_t *info)
  728. {
  729. int baud_rate;
  730. unsigned cflag, cval, scval, prev_mode;
  731. int i, bits, sbits, idx;
  732. unsigned long flags;
  733. struct serial_state *state;
  734. volatile struct smc_regs *smcp;
  735. volatile struct scc_regs *sccp;
  736. if (!info->port.tty || !info->port.tty->termios)
  737. return;
  738. cflag = info->port.tty->termios->c_cflag;
  739. state = info->state;
  740. /* Character length programmed into the mode register is the
  741. * sum of: 1 start bit, number of data bits, 0 or 1 parity bit,
  742. * 1 or 2 stop bits, minus 1.
  743. * The value 'bits' counts this for us.
  744. */
  745. cval = 0;
  746. scval = 0;
  747. /* byte size and parity */
  748. switch (cflag & CSIZE) {
  749. case CS5: bits = 5; break;
  750. case CS6: bits = 6; break;
  751. case CS7: bits = 7; break;
  752. case CS8: bits = 8; break;
  753. /* Never happens, but GCC is too dumb to figure it out */
  754. default: bits = 8; break;
  755. }
  756. sbits = bits - 5;
  757. if (cflag & CSTOPB) {
  758. cval |= SMCMR_SL; /* Two stops */
  759. scval |= SCU_PMSR_SL;
  760. bits++;
  761. }
  762. if (cflag & PARENB) {
  763. cval |= SMCMR_PEN;
  764. scval |= SCU_PMSR_PEN;
  765. bits++;
  766. }
  767. if (!(cflag & PARODD)) {
  768. cval |= SMCMR_PM_EVEN;
  769. scval |= (SCU_PMSR_REVP | SCU_PMSR_TEVP);
  770. }
  771. /* Determine divisor based on baud rate */
  772. i = cflag & CBAUD;
  773. if (i >= (sizeof(baud_table)/sizeof(int)))
  774. baud_rate = 9600;
  775. else
  776. baud_rate = baud_table[i];
  777. info->timeout = (TX_BUF_SIZE*HZ*bits);
  778. info->timeout += HZ/50; /* Add .02 seconds of slop */
  779. #ifdef modem_control
  780. /* CTS flow control flag and modem status interrupts */
  781. info->IER &= ~UART_IER_MSI;
  782. if (info->flags & ASYNC_HARDPPS_CD)
  783. info->IER |= UART_IER_MSI;
  784. if (cflag & CRTSCTS) {
  785. info->flags |= ASYNC_CTS_FLOW;
  786. info->IER |= UART_IER_MSI;
  787. } else
  788. info->flags &= ~ASYNC_CTS_FLOW;
  789. if (cflag & CLOCAL)
  790. info->flags &= ~ASYNC_CHECK_CD;
  791. else {
  792. info->flags |= ASYNC_CHECK_CD;
  793. info->IER |= UART_IER_MSI;
  794. }
  795. serial_out(info, UART_IER, info->IER);
  796. #endif
  797. /*
  798. * Set up parity check flag
  799. */
  800. info->read_status_mask = (BD_SC_EMPTY | BD_SC_OV);
  801. if (I_INPCK(info->port.tty))
  802. info->read_status_mask |= BD_SC_FR | BD_SC_PR;
  803. if (I_BRKINT(info->port.tty) || I_PARMRK(info->port.tty))
  804. info->read_status_mask |= BD_SC_BR;
  805. /*
  806. * Characters to ignore
  807. */
  808. info->ignore_status_mask = 0;
  809. if (I_IGNPAR(info->port.tty))
  810. info->ignore_status_mask |= BD_SC_PR | BD_SC_FR;
  811. if (I_IGNBRK(info->port.tty)) {
  812. info->ignore_status_mask |= BD_SC_BR;
  813. /*
  814. * If we're ignore parity and break indicators, ignore
  815. * overruns too. (For real raw support).
  816. */
  817. if (I_IGNPAR(info->port.tty))
  818. info->ignore_status_mask |= BD_SC_OV;
  819. }
  820. /*
  821. * !!! ignore all characters if CREAD is not set
  822. */
  823. if ((cflag & CREAD) == 0)
  824. info->read_status_mask &= ~BD_SC_EMPTY;
  825. local_irq_save(flags);
  826. /* Start bit has not been added (so don't, because we would just
  827. * subtract it later), and we need to add one for the number of
  828. * stops bits (there is always at least one).
  829. */
  830. bits++;
  831. idx = PORT_NUM(state->smc_scc_num);
  832. if (state->smc_scc_num & NUM_IS_SCC) {
  833. sccp = &pquicc->scc_regs[idx];
  834. sccp->scc_psmr = (sbits << 12) | scval;
  835. } else {
  836. smcp = &pquicc->smc_regs[idx];
  837. /* Set the mode register. We want to keep a copy of the
  838. * enables, because we want to put them back if they were
  839. * present.
  840. */
  841. prev_mode = smcp->smc_smcmr;
  842. smcp->smc_smcmr = smcr_mk_clen(bits) | cval | SMCMR_SM_UART;
  843. smcp->smc_smcmr |= (prev_mode & (SMCMR_REN | SMCMR_TEN));
  844. }
  845. m360_cpm_setbrg((state - rs_table), baud_rate);
  846. local_irq_restore(flags);
  847. }
  848. static void rs_360_put_char(struct tty_struct *tty, unsigned char ch)
  849. {
  850. ser_info_t *info = (ser_info_t *)tty->driver_data;
  851. volatile QUICC_BD *bdp;
  852. if (serial_paranoia_check(info, tty->name, "rs_put_char"))
  853. return 0;
  854. if (!tty)
  855. return 0;
  856. bdp = info->tx_cur;
  857. while (bdp->status & BD_SC_READY);
  858. /* *((char *)__va(bdp->buf)) = ch; */
  859. *((char *)bdp->buf) = ch;
  860. bdp->length = 1;
  861. bdp->status |= BD_SC_READY;
  862. /* Get next BD.
  863. */
  864. if (bdp->status & BD_SC_WRAP)
  865. bdp = info->tx_bd_base;
  866. else
  867. bdp++;
  868. info->tx_cur = (QUICC_BD *)bdp;
  869. return 1;
  870. }
  871. static int rs_360_write(struct tty_struct * tty,
  872. const unsigned char *buf, int count)
  873. {
  874. int c, ret = 0;
  875. ser_info_t *info = (ser_info_t *)tty->driver_data;
  876. volatile QUICC_BD *bdp;
  877. #ifdef CONFIG_KGDB
  878. /* Try to let stub handle output. Returns true if it did. */
  879. if (kgdb_output_string(buf, count))
  880. return ret;
  881. #endif
  882. if (serial_paranoia_check(info, tty->name, "rs_write"))
  883. return 0;
  884. if (!tty)
  885. return 0;
  886. bdp = info->tx_cur;
  887. while (1) {
  888. c = min(count, TX_BUF_SIZE);
  889. if (c <= 0)
  890. break;
  891. if (bdp->status & BD_SC_READY) {
  892. info->flags |= TX_WAKEUP;
  893. break;
  894. }
  895. /* memcpy(__va(bdp->buf), buf, c); */
  896. memcpy((void *)bdp->buf, buf, c);
  897. bdp->length = c;
  898. bdp->status |= BD_SC_READY;
  899. buf += c;
  900. count -= c;
  901. ret += c;
  902. /* Get next BD.
  903. */
  904. if (bdp->status & BD_SC_WRAP)
  905. bdp = info->tx_bd_base;
  906. else
  907. bdp++;
  908. info->tx_cur = (QUICC_BD *)bdp;
  909. }
  910. return ret;
  911. }
  912. static int rs_360_write_room(struct tty_struct *tty)
  913. {
  914. ser_info_t *info = (ser_info_t *)tty->driver_data;
  915. int ret;
  916. if (serial_paranoia_check(info, tty->name, "rs_write_room"))
  917. return 0;
  918. if ((info->tx_cur->status & BD_SC_READY) == 0) {
  919. info->flags &= ~TX_WAKEUP;
  920. ret = TX_BUF_SIZE;
  921. }
  922. else {
  923. info->flags |= TX_WAKEUP;
  924. ret = 0;
  925. }
  926. return ret;
  927. }
  928. /* I could track this with transmit counters....maybe later.
  929. */
  930. static int rs_360_chars_in_buffer(struct tty_struct *tty)
  931. {
  932. ser_info_t *info = (ser_info_t *)tty->driver_data;
  933. if (serial_paranoia_check(info, tty->name, "rs_chars_in_buffer"))
  934. return 0;
  935. return 0;
  936. }
  937. static void rs_360_flush_buffer(struct tty_struct *tty)
  938. {
  939. ser_info_t *info = (ser_info_t *)tty->driver_data;
  940. if (serial_paranoia_check(info, tty->name, "rs_flush_buffer"))
  941. return;
  942. /* There is nothing to "flush", whatever we gave the CPM
  943. * is on its way out.
  944. */
  945. tty_wakeup(tty);
  946. info->flags &= ~TX_WAKEUP;
  947. }
  948. /*
  949. * This function is used to send a high-priority XON/XOFF character to
  950. * the device
  951. */
  952. static void rs_360_send_xchar(struct tty_struct *tty, char ch)
  953. {
  954. volatile QUICC_BD *bdp;
  955. ser_info_t *info = (ser_info_t *)tty->driver_data;
  956. if (serial_paranoia_check(info, tty->name, "rs_send_char"))
  957. return;
  958. bdp = info->tx_cur;
  959. while (bdp->status & BD_SC_READY);
  960. /* *((char *)__va(bdp->buf)) = ch; */
  961. *((char *)bdp->buf) = ch;
  962. bdp->length = 1;
  963. bdp->status |= BD_SC_READY;
  964. /* Get next BD.
  965. */
  966. if (bdp->status & BD_SC_WRAP)
  967. bdp = info->tx_bd_base;
  968. else
  969. bdp++;
  970. info->tx_cur = (QUICC_BD *)bdp;
  971. }
  972. /*
  973. * ------------------------------------------------------------
  974. * rs_throttle()
  975. *
  976. * This routine is called by the upper-layer tty layer to signal that
  977. * incoming characters should be throttled.
  978. * ------------------------------------------------------------
  979. */
  980. static void rs_360_throttle(struct tty_struct * tty)
  981. {
  982. ser_info_t *info = (ser_info_t *)tty->driver_data;
  983. #ifdef SERIAL_DEBUG_THROTTLE
  984. char buf[64];
  985. printk("throttle %s: %d....\n", _tty_name(tty, buf),
  986. tty->ldisc.chars_in_buffer(tty));
  987. #endif
  988. if (serial_paranoia_check(info, tty->name, "rs_throttle"))
  989. return;
  990. if (I_IXOFF(tty))
  991. rs_360_send_xchar(tty, STOP_CHAR(tty));
  992. #ifdef modem_control
  993. if (tty->termios->c_cflag & CRTSCTS)
  994. info->MCR &= ~UART_MCR_RTS;
  995. local_irq_disable();
  996. serial_out(info, UART_MCR, info->MCR);
  997. local_irq_enable();
  998. #endif
  999. }
  1000. static void rs_360_unthrottle(struct tty_struct * tty)
  1001. {
  1002. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1003. #ifdef SERIAL_DEBUG_THROTTLE
  1004. char buf[64];
  1005. printk("unthrottle %s: %d....\n", _tty_name(tty, buf),
  1006. tty->ldisc.chars_in_buffer(tty));
  1007. #endif
  1008. if (serial_paranoia_check(info, tty->name, "rs_unthrottle"))
  1009. return;
  1010. if (I_IXOFF(tty)) {
  1011. if (info->x_char)
  1012. info->x_char = 0;
  1013. else
  1014. rs_360_send_xchar(tty, START_CHAR(tty));
  1015. }
  1016. #ifdef modem_control
  1017. if (tty->termios->c_cflag & CRTSCTS)
  1018. info->MCR |= UART_MCR_RTS;
  1019. local_irq_disable();
  1020. serial_out(info, UART_MCR, info->MCR);
  1021. local_irq_enable();
  1022. #endif
  1023. }
  1024. /*
  1025. * ------------------------------------------------------------
  1026. * rs_ioctl() and friends
  1027. * ------------------------------------------------------------
  1028. */
  1029. #ifdef maybe
  1030. /*
  1031. * get_lsr_info - get line status register info
  1032. *
  1033. * Purpose: Let user call ioctl() to get info when the UART physically
  1034. * is emptied. On bus types like RS485, the transmitter must
  1035. * release the bus after transmitting. This must be done when
  1036. * the transmit shift register is empty, not be done when the
  1037. * transmit holding register is empty. This functionality
  1038. * allows an RS485 driver to be written in user space.
  1039. */
  1040. static int get_lsr_info(struct async_struct * info, unsigned int *value)
  1041. {
  1042. unsigned char status;
  1043. unsigned int result;
  1044. local_irq_disable();
  1045. status = serial_in(info, UART_LSR);
  1046. local_irq_enable();
  1047. result = ((status & UART_LSR_TEMT) ? TIOCSER_TEMT : 0);
  1048. return put_user(result,value);
  1049. }
  1050. #endif
  1051. static int rs_360_tiocmget(struct tty_struct *tty, struct file *file)
  1052. {
  1053. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1054. unsigned int result = 0;
  1055. #ifdef modem_control
  1056. unsigned char control, status;
  1057. if (serial_paranoia_check(info, tty->name, __func__))
  1058. return -ENODEV;
  1059. if (tty->flags & (1 << TTY_IO_ERROR))
  1060. return -EIO;
  1061. control = info->MCR;
  1062. local_irq_disable();
  1063. status = serial_in(info, UART_MSR);
  1064. local_irq_enable();
  1065. result = ((control & UART_MCR_RTS) ? TIOCM_RTS : 0)
  1066. | ((control & UART_MCR_DTR) ? TIOCM_DTR : 0)
  1067. #ifdef TIOCM_OUT1
  1068. | ((control & UART_MCR_OUT1) ? TIOCM_OUT1 : 0)
  1069. | ((control & UART_MCR_OUT2) ? TIOCM_OUT2 : 0)
  1070. #endif
  1071. | ((status & UART_MSR_DCD) ? TIOCM_CAR : 0)
  1072. | ((status & UART_MSR_RI) ? TIOCM_RNG : 0)
  1073. | ((status & UART_MSR_DSR) ? TIOCM_DSR : 0)
  1074. | ((status & UART_MSR_CTS) ? TIOCM_CTS : 0);
  1075. #endif
  1076. return result;
  1077. }
  1078. static int rs_360_tiocmset(struct tty_struct *tty, struct file *file,
  1079. unsigned int set, unsigned int clear)
  1080. {
  1081. #ifdef modem_control
  1082. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1083. unsigned int arg;
  1084. if (serial_paranoia_check(info, tty->name, __func__))
  1085. return -ENODEV;
  1086. if (tty->flags & (1 << TTY_IO_ERROR))
  1087. return -EIO;
  1088. /* FIXME: locking on info->mcr */
  1089. if (set & TIOCM_RTS)
  1090. info->mcr |= UART_MCR_RTS;
  1091. if (set & TIOCM_DTR)
  1092. info->mcr |= UART_MCR_DTR;
  1093. if (clear & TIOCM_RTS)
  1094. info->MCR &= ~UART_MCR_RTS;
  1095. if (clear & TIOCM_DTR)
  1096. info->MCR &= ~UART_MCR_DTR;
  1097. #ifdef TIOCM_OUT1
  1098. if (set & TIOCM_OUT1)
  1099. info->MCR |= UART_MCR_OUT1;
  1100. if (set & TIOCM_OUT2)
  1101. info->MCR |= UART_MCR_OUT2;
  1102. if (clear & TIOCM_OUT1)
  1103. info->MCR &= ~UART_MCR_OUT1;
  1104. if (clear & TIOCM_OUT2)
  1105. info->MCR &= ~UART_MCR_OUT2;
  1106. #endif
  1107. local_irq_disable();
  1108. serial_out(info, UART_MCR, info->MCR);
  1109. local_irq_enable();
  1110. #endif
  1111. return 0;
  1112. }
  1113. /* Sending a break is a two step process on the SMC/SCC. It is accomplished
  1114. * by sending a STOP TRANSMIT command followed by a RESTART TRANSMIT
  1115. * command. We take advantage of the begin/end functions to make this
  1116. * happen.
  1117. */
  1118. static ushort smc_chan_map[] = {
  1119. CPM_CR_CH_SMC1,
  1120. CPM_CR_CH_SMC2
  1121. };
  1122. static ushort scc_chan_map[] = {
  1123. CPM_CR_CH_SCC1,
  1124. CPM_CR_CH_SCC2,
  1125. CPM_CR_CH_SCC3,
  1126. CPM_CR_CH_SCC4
  1127. };
  1128. static void begin_break(ser_info_t *info)
  1129. {
  1130. volatile QUICC *cp;
  1131. ushort chan;
  1132. int idx;
  1133. cp = pquicc;
  1134. idx = PORT_NUM(info->state->smc_scc_num);
  1135. if (info->state->smc_scc_num & NUM_IS_SCC)
  1136. chan = scc_chan_map[idx];
  1137. else
  1138. chan = smc_chan_map[idx];
  1139. cp->cp_cr = mk_cr_cmd(chan, CPM_CR_STOP_TX) | CPM_CR_FLG;
  1140. while (cp->cp_cr & CPM_CR_FLG);
  1141. }
  1142. static void end_break(ser_info_t *info)
  1143. {
  1144. volatile QUICC *cp;
  1145. ushort chan;
  1146. int idx;
  1147. cp = pquicc;
  1148. idx = PORT_NUM(info->state->smc_scc_num);
  1149. if (info->state->smc_scc_num & NUM_IS_SCC)
  1150. chan = scc_chan_map[idx];
  1151. else
  1152. chan = smc_chan_map[idx];
  1153. cp->cp_cr = mk_cr_cmd(chan, CPM_CR_RESTART_TX) | CPM_CR_FLG;
  1154. while (cp->cp_cr & CPM_CR_FLG);
  1155. }
  1156. /*
  1157. * This routine sends a break character out the serial port.
  1158. */
  1159. static void send_break(ser_info_t *info, unsigned int duration)
  1160. {
  1161. #ifdef SERIAL_DEBUG_SEND_BREAK
  1162. printk("rs_send_break(%d) jiff=%lu...", duration, jiffies);
  1163. #endif
  1164. begin_break(info);
  1165. msleep_interruptible(duration);
  1166. end_break(info);
  1167. #ifdef SERIAL_DEBUG_SEND_BREAK
  1168. printk("done jiffies=%lu\n", jiffies);
  1169. #endif
  1170. }
  1171. static int rs_360_ioctl(struct tty_struct *tty, struct file * file,
  1172. unsigned int cmd, unsigned long arg)
  1173. {
  1174. int error;
  1175. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1176. int retval;
  1177. struct async_icount cnow;
  1178. /* struct async_icount_24 cnow;*/ /* kernel counter temps */
  1179. struct serial_icounter_struct *p_cuser; /* user space */
  1180. if (serial_paranoia_check(info, tty->name, "rs_ioctl"))
  1181. return -ENODEV;
  1182. if ((cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
  1183. if (tty->flags & (1 << TTY_IO_ERROR))
  1184. return -EIO;
  1185. }
  1186. switch (cmd) {
  1187. case TCSBRK: /* SVID version: non-zero arg --> no break */
  1188. retval = tty_check_change(tty);
  1189. if (retval)
  1190. return retval;
  1191. tty_wait_until_sent(tty, 0);
  1192. if (signal_pending(current))
  1193. return -EINTR;
  1194. if (!arg) {
  1195. send_break(info, 250); /* 1/4 second */
  1196. if (signal_pending(current))
  1197. return -EINTR;
  1198. }
  1199. return 0;
  1200. case TCSBRKP: /* support for POSIX tcsendbreak() */
  1201. retval = tty_check_change(tty);
  1202. if (retval)
  1203. return retval;
  1204. tty_wait_until_sent(tty, 0);
  1205. if (signal_pending(current))
  1206. return -EINTR;
  1207. send_break(info, arg ? arg*100 : 250);
  1208. if (signal_pending(current))
  1209. return -EINTR;
  1210. return 0;
  1211. case TIOCSBRK:
  1212. retval = tty_check_change(tty);
  1213. if (retval)
  1214. return retval;
  1215. tty_wait_until_sent(tty, 0);
  1216. begin_break(info);
  1217. return 0;
  1218. case TIOCCBRK:
  1219. retval = tty_check_change(tty);
  1220. if (retval)
  1221. return retval;
  1222. end_break(info);
  1223. return 0;
  1224. #ifdef maybe
  1225. case TIOCSERGETLSR: /* Get line status register */
  1226. return get_lsr_info(info, (unsigned int *) arg);
  1227. #endif
  1228. /*
  1229. * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
  1230. * - mask passed in arg for lines of interest
  1231. * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
  1232. * Caller should use TIOCGICOUNT to see which one it was
  1233. */
  1234. case TIOCMIWAIT:
  1235. #ifdef modem_control
  1236. local_irq_disable();
  1237. /* note the counters on entry */
  1238. cprev = info->state->icount;
  1239. local_irq_enable();
  1240. while (1) {
  1241. interruptible_sleep_on(&info->delta_msr_wait);
  1242. /* see if a signal did it */
  1243. if (signal_pending(current))
  1244. return -ERESTARTSYS;
  1245. local_irq_disable();
  1246. cnow = info->state->icount; /* atomic copy */
  1247. local_irq_enable();
  1248. if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
  1249. cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
  1250. return -EIO; /* no change => error */
  1251. if ( ((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
  1252. ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
  1253. ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) ||
  1254. ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
  1255. return 0;
  1256. }
  1257. cprev = cnow;
  1258. }
  1259. /* NOTREACHED */
  1260. #else
  1261. return 0;
  1262. #endif
  1263. /*
  1264. * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
  1265. * Return: write counters to the user passed counter struct
  1266. * NB: both 1->0 and 0->1 transitions are counted except for
  1267. * RI where only 0->1 is counted.
  1268. */
  1269. case TIOCGICOUNT:
  1270. local_irq_disable();
  1271. cnow = info->state->icount;
  1272. local_irq_enable();
  1273. p_cuser = (struct serial_icounter_struct *) arg;
  1274. /* error = put_user(cnow.cts, &p_cuser->cts); */
  1275. /* if (error) return error; */
  1276. /* error = put_user(cnow.dsr, &p_cuser->dsr); */
  1277. /* if (error) return error; */
  1278. /* error = put_user(cnow.rng, &p_cuser->rng); */
  1279. /* if (error) return error; */
  1280. /* error = put_user(cnow.dcd, &p_cuser->dcd); */
  1281. /* if (error) return error; */
  1282. put_user(cnow.cts, &p_cuser->cts);
  1283. put_user(cnow.dsr, &p_cuser->dsr);
  1284. put_user(cnow.rng, &p_cuser->rng);
  1285. put_user(cnow.dcd, &p_cuser->dcd);
  1286. return 0;
  1287. default:
  1288. return -ENOIOCTLCMD;
  1289. }
  1290. return 0;
  1291. }
  1292. /* FIX UP modem control here someday......
  1293. */
  1294. static void rs_360_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
  1295. {
  1296. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1297. change_speed(info);
  1298. #ifdef modem_control
  1299. /* Handle transition to B0 status */
  1300. if ((old_termios->c_cflag & CBAUD) &&
  1301. !(tty->termios->c_cflag & CBAUD)) {
  1302. info->MCR &= ~(UART_MCR_DTR|UART_MCR_RTS);
  1303. local_irq_disable();
  1304. serial_out(info, UART_MCR, info->MCR);
  1305. local_irq_enable();
  1306. }
  1307. /* Handle transition away from B0 status */
  1308. if (!(old_termios->c_cflag & CBAUD) &&
  1309. (tty->termios->c_cflag & CBAUD)) {
  1310. info->MCR |= UART_MCR_DTR;
  1311. if (!tty->hw_stopped ||
  1312. !(tty->termios->c_cflag & CRTSCTS)) {
  1313. info->MCR |= UART_MCR_RTS;
  1314. }
  1315. local_irq_disable();
  1316. serial_out(info, UART_MCR, info->MCR);
  1317. local_irq_enable();
  1318. }
  1319. /* Handle turning off CRTSCTS */
  1320. if ((old_termios->c_cflag & CRTSCTS) &&
  1321. !(tty->termios->c_cflag & CRTSCTS)) {
  1322. tty->hw_stopped = 0;
  1323. rs_360_start(tty);
  1324. }
  1325. #endif
  1326. #if 0
  1327. /*
  1328. * No need to wake up processes in open wait, since they
  1329. * sample the CLOCAL flag once, and don't recheck it.
  1330. * XXX It's not clear whether the current behavior is correct
  1331. * or not. Hence, this may change.....
  1332. */
  1333. if (!(old_termios->c_cflag & CLOCAL) &&
  1334. (tty->termios->c_cflag & CLOCAL))
  1335. wake_up_interruptible(&info->open_wait);
  1336. #endif
  1337. }
  1338. /*
  1339. * ------------------------------------------------------------
  1340. * rs_close()
  1341. *
  1342. * This routine is called when the serial port gets closed. First, we
  1343. * wait for the last remaining data to be sent. Then, we unlink its
  1344. * async structure from the interrupt chain if necessary, and we free
  1345. * that IRQ if nothing is left in the chain.
  1346. * ------------------------------------------------------------
  1347. */
  1348. static void rs_360_close(struct tty_struct *tty, struct file * filp)
  1349. {
  1350. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1351. /* struct async_state *state; */
  1352. struct serial_state *state;
  1353. unsigned long flags;
  1354. int idx;
  1355. volatile struct smc_regs *smcp;
  1356. volatile struct scc_regs *sccp;
  1357. if (!info || serial_paranoia_check(info, tty->name, "rs_close"))
  1358. return;
  1359. state = info->state;
  1360. local_irq_save(flags);
  1361. if (tty_hung_up_p(filp)) {
  1362. DBG_CNT("before DEC-hung");
  1363. local_irq_restore(flags);
  1364. return;
  1365. }
  1366. #ifdef SERIAL_DEBUG_OPEN
  1367. printk("rs_close ttys%d, count = %d\n", info->line, state->count);
  1368. #endif
  1369. if ((tty->count == 1) && (state->count != 1)) {
  1370. /*
  1371. * Uh, oh. tty->count is 1, which means that the tty
  1372. * structure will be freed. state->count should always
  1373. * be one in these conditions. If it's greater than
  1374. * one, we've got real problems, since it means the
  1375. * serial port won't be shutdown.
  1376. */
  1377. printk("rs_close: bad serial port count; tty->count is 1, "
  1378. "state->count is %d\n", state->count);
  1379. state->count = 1;
  1380. }
  1381. if (--state->count < 0) {
  1382. printk("rs_close: bad serial port count for ttys%d: %d\n",
  1383. info->line, state->count);
  1384. state->count = 0;
  1385. }
  1386. if (state->count) {
  1387. DBG_CNT("before DEC-2");
  1388. local_irq_restore(flags);
  1389. return;
  1390. }
  1391. info->flags |= ASYNC_CLOSING;
  1392. /*
  1393. * Now we wait for the transmit buffer to clear; and we notify
  1394. * the line discipline to only process XON/XOFF characters.
  1395. */
  1396. tty->closing = 1;
  1397. if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
  1398. tty_wait_until_sent(tty, info->closing_wait);
  1399. /*
  1400. * At this point we stop accepting input. To do this, we
  1401. * disable the receive line status interrupts, and tell the
  1402. * interrupt driver to stop checking the data ready bit in the
  1403. * line status register.
  1404. */
  1405. info->read_status_mask &= ~BD_SC_EMPTY;
  1406. if (info->flags & ASYNC_INITIALIZED) {
  1407. idx = PORT_NUM(info->state->smc_scc_num);
  1408. if (info->state->smc_scc_num & NUM_IS_SCC) {
  1409. sccp = &pquicc->scc_regs[idx];
  1410. sccp->scc_sccm &= ~UART_SCCM_RX;
  1411. sccp->scc_gsmr.w.low &= ~SCC_GSMRL_ENR;
  1412. } else {
  1413. smcp = &pquicc->smc_regs[idx];
  1414. smcp->smc_smcm &= ~SMCM_RX;
  1415. smcp->smc_smcmr &= ~SMCMR_REN;
  1416. }
  1417. /*
  1418. * Before we drop DTR, make sure the UART transmitter
  1419. * has completely drained; this is especially
  1420. * important if there is a transmit FIFO!
  1421. */
  1422. rs_360_wait_until_sent(tty, info->timeout);
  1423. }
  1424. shutdown(info);
  1425. rs_360_flush_buffer(tty);
  1426. tty_ldisc_flush(tty);
  1427. tty->closing = 0;
  1428. info->event = 0;
  1429. info->port.tty = NULL;
  1430. if (info->blocked_open) {
  1431. if (info->close_delay) {
  1432. msleep_interruptible(jiffies_to_msecs(info->close_delay));
  1433. }
  1434. wake_up_interruptible(&info->open_wait);
  1435. }
  1436. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
  1437. wake_up_interruptible(&info->close_wait);
  1438. local_irq_restore(flags);
  1439. }
  1440. /*
  1441. * rs_wait_until_sent() --- wait until the transmitter is empty
  1442. */
  1443. static void rs_360_wait_until_sent(struct tty_struct *tty, int timeout)
  1444. {
  1445. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1446. unsigned long orig_jiffies, char_time;
  1447. /*int lsr;*/
  1448. volatile QUICC_BD *bdp;
  1449. if (serial_paranoia_check(info, tty->name, "rs_wait_until_sent"))
  1450. return;
  1451. #ifdef maybe
  1452. if (info->state->type == PORT_UNKNOWN)
  1453. return;
  1454. #endif
  1455. orig_jiffies = jiffies;
  1456. /*
  1457. * Set the check interval to be 1/5 of the estimated time to
  1458. * send a single character, and make it at least 1. The check
  1459. * interval should also be less than the timeout.
  1460. *
  1461. * Note: we have to use pretty tight timings here to satisfy
  1462. * the NIST-PCTS.
  1463. */
  1464. char_time = 1;
  1465. if (timeout)
  1466. char_time = min(char_time, (unsigned long)timeout);
  1467. #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
  1468. printk("In rs_wait_until_sent(%d) check=%lu...", timeout, char_time);
  1469. printk("jiff=%lu...", jiffies);
  1470. #endif
  1471. lock_kernel();
  1472. /* We go through the loop at least once because we can't tell
  1473. * exactly when the last character exits the shifter. There can
  1474. * be at least two characters waiting to be sent after the buffers
  1475. * are empty.
  1476. */
  1477. do {
  1478. #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
  1479. printk("lsr = %d (jiff=%lu)...", lsr, jiffies);
  1480. #endif
  1481. /* current->counter = 0; make us low-priority */
  1482. msleep_interruptible(jiffies_to_msecs(char_time));
  1483. if (signal_pending(current))
  1484. break;
  1485. if (timeout && (time_after(jiffies, orig_jiffies + timeout)))
  1486. break;
  1487. /* The 'tx_cur' is really the next buffer to send. We
  1488. * have to back up to the previous BD and wait for it
  1489. * to go. This isn't perfect, because all this indicates
  1490. * is the buffer is available. There are still characters
  1491. * in the CPM FIFO.
  1492. */
  1493. bdp = info->tx_cur;
  1494. if (bdp == info->tx_bd_base)
  1495. bdp += (TX_NUM_FIFO-1);
  1496. else
  1497. bdp--;
  1498. } while (bdp->status & BD_SC_READY);
  1499. current->state = TASK_RUNNING;
  1500. unlock_kernel();
  1501. #ifdef SERIAL_DEBUG_RS_WAIT_UNTIL_SENT
  1502. printk("lsr = %d (jiff=%lu)...done\n", lsr, jiffies);
  1503. #endif
  1504. }
  1505. /*
  1506. * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
  1507. */
  1508. static void rs_360_hangup(struct tty_struct *tty)
  1509. {
  1510. ser_info_t *info = (ser_info_t *)tty->driver_data;
  1511. struct serial_state *state = info->state;
  1512. if (serial_paranoia_check(info, tty->name, "rs_hangup"))
  1513. return;
  1514. state = info->state;
  1515. rs_360_flush_buffer(tty);
  1516. shutdown(info);
  1517. info->event = 0;
  1518. state->count = 0;
  1519. info->flags &= ~ASYNC_NORMAL_ACTIVE;
  1520. info->port.tty = NULL;
  1521. wake_up_interruptible(&info->open_wait);
  1522. }
  1523. /*
  1524. * ------------------------------------------------------------
  1525. * rs_open() and friends
  1526. * ------------------------------------------------------------
  1527. */
  1528. static int block_til_ready(struct tty_struct *tty, struct file * filp,
  1529. ser_info_t *info)
  1530. {
  1531. #ifdef DO_THIS_LATER
  1532. DECLARE_WAITQUEUE(wait, current);
  1533. #endif
  1534. struct serial_state *state = info->state;
  1535. int retval;
  1536. int do_clocal = 0;
  1537. /*
  1538. * If the device is in the middle of being closed, then block
  1539. * until it's done, and then try again.
  1540. */
  1541. if (tty_hung_up_p(filp) ||
  1542. (info->flags & ASYNC_CLOSING)) {
  1543. if (info->flags & ASYNC_CLOSING)
  1544. interruptible_sleep_on(&info->close_wait);
  1545. #ifdef SERIAL_DO_RESTART
  1546. if (info->flags & ASYNC_HUP_NOTIFY)
  1547. return -EAGAIN;
  1548. else
  1549. return -ERESTARTSYS;
  1550. #else
  1551. return -EAGAIN;
  1552. #endif
  1553. }
  1554. /*
  1555. * If non-blocking mode is set, or the port is not enabled,
  1556. * then make the check up front and then exit.
  1557. * If this is an SMC port, we don't have modem control to wait
  1558. * for, so just get out here.
  1559. */
  1560. if ((filp->f_flags & O_NONBLOCK) ||
  1561. (tty->flags & (1 << TTY_IO_ERROR)) ||
  1562. !(info->state->smc_scc_num & NUM_IS_SCC)) {
  1563. info->flags |= ASYNC_NORMAL_ACTIVE;
  1564. return 0;
  1565. }
  1566. if (tty->termios->c_cflag & CLOCAL)
  1567. do_clocal = 1;
  1568. /*
  1569. * Block waiting for the carrier detect and the line to become
  1570. * free (i.e., not in use by the callout). While we are in
  1571. * this loop, state->count is dropped by one, so that
  1572. * rs_close() knows when to free things. We restore it upon
  1573. * exit, either normal or abnormal.
  1574. */
  1575. retval = 0;
  1576. #ifdef DO_THIS_LATER
  1577. add_wait_queue(&info->open_wait, &wait);
  1578. #ifdef SERIAL_DEBUG_OPEN
  1579. printk("block_til_ready before block: ttys%d, count = %d\n",
  1580. state->line, state->count);
  1581. #endif
  1582. local_irq_disable();
  1583. if (!tty_hung_up_p(filp))
  1584. state->count--;
  1585. local_irq_enable();
  1586. info->blocked_open++;
  1587. while (1) {
  1588. local_irq_disable();
  1589. if (tty->termios->c_cflag & CBAUD)
  1590. serial_out(info, UART_MCR,
  1591. serial_inp(info, UART_MCR) |
  1592. (UART_MCR_DTR | UART_MCR_RTS));
  1593. local_irq_enable();
  1594. set_current_state(TASK_INTERRUPTIBLE);
  1595. if (tty_hung_up_p(filp) ||
  1596. !(info->flags & ASYNC_INITIALIZED)) {
  1597. #ifdef SERIAL_DO_RESTART
  1598. if (info->flags & ASYNC_HUP_NOTIFY)
  1599. retval = -EAGAIN;
  1600. else
  1601. retval = -ERESTARTSYS;
  1602. #else
  1603. retval = -EAGAIN;
  1604. #endif
  1605. break;
  1606. }
  1607. if (!(info->flags & ASYNC_CLOSING) &&
  1608. (do_clocal || (serial_in(info, UART_MSR) &
  1609. UART_MSR_DCD)))
  1610. break;
  1611. if (signal_pending(current)) {
  1612. retval = -ERESTARTSYS;
  1613. break;
  1614. }
  1615. #ifdef SERIAL_DEBUG_OPEN
  1616. printk("block_til_ready blocking: ttys%d, count = %d\n",
  1617. info->line, state->count);
  1618. #endif
  1619. schedule();
  1620. }
  1621. current->state = TASK_RUNNING;
  1622. remove_wait_queue(&info->open_wait, &wait);
  1623. if (!tty_hung_up_p(filp))
  1624. state->count++;
  1625. info->blocked_open--;
  1626. #ifdef SERIAL_DEBUG_OPEN
  1627. printk("block_til_ready after blocking: ttys%d, count = %d\n",
  1628. info->line, state->count);
  1629. #endif
  1630. #endif /* DO_THIS_LATER */
  1631. if (retval)
  1632. return retval;
  1633. info->flags |= ASYNC_NORMAL_ACTIVE;
  1634. return 0;
  1635. }
  1636. static int get_async_struct(int line, ser_info_t **ret_info)
  1637. {
  1638. struct serial_state *sstate;
  1639. sstate = rs_table + line;
  1640. if (sstate->info) {
  1641. sstate->count++;
  1642. *ret_info = (ser_info_t *)sstate->info;
  1643. return 0;
  1644. }
  1645. else {
  1646. return -ENOMEM;
  1647. }
  1648. }
  1649. /*
  1650. * This routine is called whenever a serial port is opened. It
  1651. * enables interrupts for a serial port, linking in its async structure into
  1652. * the IRQ chain. It also performs the serial-specific
  1653. * initialization for the tty structure.
  1654. */
  1655. static int rs_360_open(struct tty_struct *tty, struct file * filp)
  1656. {
  1657. ser_info_t *info;
  1658. int retval, line;
  1659. line = tty->index;
  1660. if ((line < 0) || (line >= NR_PORTS))
  1661. return -ENODEV;
  1662. retval = get_async_struct(line, &info);
  1663. if (retval)
  1664. return retval;
  1665. if (serial_paranoia_check(info, tty->name, "rs_open"))
  1666. return -ENODEV;
  1667. #ifdef SERIAL_DEBUG_OPEN
  1668. printk("rs_open %s, count = %d\n", tty->name, info->state->count);
  1669. #endif
  1670. tty->driver_data = info;
  1671. info->port.tty = tty;
  1672. /*
  1673. * Start up serial port
  1674. */
  1675. retval = startup(info);
  1676. if (retval)
  1677. return retval;
  1678. retval = block_til_ready(tty, filp, info);
  1679. if (retval) {
  1680. #ifdef SERIAL_DEBUG_OPEN
  1681. printk("rs_open returning after block_til_ready with %d\n",
  1682. retval);
  1683. #endif
  1684. return retval;
  1685. }
  1686. #ifdef SERIAL_DEBUG_OPEN
  1687. printk("rs_open %s successful...", tty->name);
  1688. #endif
  1689. return 0;
  1690. }
  1691. /*
  1692. * /proc fs routines....
  1693. */
  1694. static inline int line_info(char *buf, struct serial_state *state)
  1695. {
  1696. #ifdef notdef
  1697. struct async_struct *info = state->info, scr_info;
  1698. char stat_buf[30], control, status;
  1699. #endif
  1700. int ret;
  1701. ret = sprintf(buf, "%d: uart:%s port:%X irq:%d",
  1702. state->line,
  1703. (state->smc_scc_num & NUM_IS_SCC) ? "SCC" : "SMC",
  1704. (unsigned int)(state->port), state->irq);
  1705. if (!state->port || (state->type == PORT_UNKNOWN)) {
  1706. ret += sprintf(buf+ret, "\n");
  1707. return ret;
  1708. }
  1709. #ifdef notdef
  1710. /*
  1711. * Figure out the current RS-232 lines
  1712. */
  1713. if (!info) {
  1714. info = &scr_info; /* This is just for serial_{in,out} */
  1715. info->magic = SERIAL_MAGIC;
  1716. info->port = state->port;
  1717. info->flags = state->flags;
  1718. info->quot = 0;
  1719. info->port.tty = NULL;
  1720. }
  1721. local_irq_disable();
  1722. status = serial_in(info, UART_MSR);
  1723. control = info ? info->MCR : serial_in(info, UART_MCR);
  1724. local_irq_enable();
  1725. stat_buf[0] = 0;
  1726. stat_buf[1] = 0;
  1727. if (control & UART_MCR_RTS)
  1728. strcat(stat_buf, "|RTS");
  1729. if (status & UART_MSR_CTS)
  1730. strcat(stat_buf, "|CTS");
  1731. if (control & UART_MCR_DTR)
  1732. strcat(stat_buf, "|DTR");
  1733. if (status & UART_MSR_DSR)
  1734. strcat(stat_buf, "|DSR");
  1735. if (status & UART_MSR_DCD)
  1736. strcat(stat_buf, "|CD");
  1737. if (status & UART_MSR_RI)
  1738. strcat(stat_buf, "|RI");
  1739. if (info->quot) {
  1740. ret += sprintf(buf+ret, " baud:%d",
  1741. state->baud_base / info->quot);
  1742. }
  1743. ret += sprintf(buf+ret, " tx:%d rx:%d",
  1744. state->icount.tx, state->icount.rx);
  1745. if (state->icount.frame)
  1746. ret += sprintf(buf+ret, " fe:%d", state->icount.frame);
  1747. if (state->icount.parity)
  1748. ret += sprintf(buf+ret, " pe:%d", state->icount.parity);
  1749. if (state->icount.brk)
  1750. ret += sprintf(buf+ret, " brk:%d", state->icount.brk);
  1751. if (state->icount.overrun)
  1752. ret += sprintf(buf+ret, " oe:%d", state->icount.overrun);
  1753. /*
  1754. * Last thing is the RS-232 status lines
  1755. */
  1756. ret += sprintf(buf+ret, " %s\n", stat_buf+1);
  1757. #endif
  1758. return ret;
  1759. }
  1760. int rs_360_read_proc(char *page, char **start, off_t off, int count,
  1761. int *eof, void *data)
  1762. {
  1763. int i, len = 0;
  1764. off_t begin = 0;
  1765. len += sprintf(page, "serinfo:1.0 driver:%s\n", serial_version);
  1766. for (i = 0; i < NR_PORTS && len < 4000; i++) {
  1767. len += line_info(page + len, &rs_table[i]);
  1768. if (len+begin > off+count)
  1769. goto done;
  1770. if (len+begin < off) {
  1771. begin += len;
  1772. len = 0;
  1773. }
  1774. }
  1775. *eof = 1;
  1776. done:
  1777. if (off >= len+begin)
  1778. return 0;
  1779. *start = page + (begin-off);
  1780. return ((count < begin+len-off) ? count : begin+len-off);
  1781. }
  1782. /*
  1783. * ---------------------------------------------------------------------
  1784. * rs_init() and friends
  1785. *
  1786. * rs_init() is called at boot-time to initialize the serial driver.
  1787. * ---------------------------------------------------------------------
  1788. */
  1789. /*
  1790. * This routine prints out the appropriate serial driver version
  1791. * number, and identifies which options were configured into this
  1792. * driver.
  1793. */
  1794. static _INLINE_ void show_serial_version(void)
  1795. {
  1796. printk(KERN_INFO "%s version %s\n", serial_name, serial_version);
  1797. }
  1798. /*
  1799. * The serial console driver used during boot. Note that these names
  1800. * clash with those found in "serial.c", so we currently can't support
  1801. * the 16xxx uarts and these at the same time. I will fix this to become
  1802. * an indirect function call from tty_io.c (or something).
  1803. */
  1804. #ifdef CONFIG_SERIAL_CONSOLE
  1805. /*
  1806. * Print a string to the serial port trying not to disturb any possible
  1807. * real use of the port...
  1808. */
  1809. static void my_console_write(int idx, const char *s,
  1810. unsigned count)
  1811. {
  1812. struct serial_state *ser;
  1813. ser_info_t *info;
  1814. unsigned i;
  1815. QUICC_BD *bdp, *bdbase;
  1816. volatile struct smc_uart_pram *up;
  1817. volatile u_char *cp;
  1818. ser = rs_table + idx;
  1819. /* If the port has been initialized for general use, we have
  1820. * to use the buffer descriptors allocated there. Otherwise,
  1821. * we simply use the single buffer allocated.
  1822. */
  1823. if ((info = (ser_info_t *)ser->info) != NULL) {
  1824. bdp = info->tx_cur;
  1825. bdbase = info->tx_bd_base;
  1826. }
  1827. else {
  1828. /* Pointer to UART in parameter ram.
  1829. */
  1830. /* up = (smc_uart_t *)&cpmp->cp_dparam[ser->port]; */
  1831. up = &pquicc->pram[ser->port].scc.pothers.idma_smc.psmc.u;
  1832. /* Get the address of the host memory buffer.
  1833. */
  1834. bdp = bdbase = (QUICC_BD *)((uint)pquicc + (uint)up->tbase);
  1835. }
  1836. /*
  1837. * We need to gracefully shut down the transmitter, disable
  1838. * interrupts, then send our bytes out.
  1839. */
  1840. /*
  1841. * Now, do each character. This is not as bad as it looks
  1842. * since this is a holding FIFO and not a transmitting FIFO.
  1843. * We could add the complexity of filling the entire transmit
  1844. * buffer, but we would just wait longer between accesses......
  1845. */
  1846. for (i = 0; i < count; i++, s++) {
  1847. /* Wait for transmitter fifo to empty.
  1848. * Ready indicates output is ready, and xmt is doing
  1849. * that, not that it is ready for us to send.
  1850. */
  1851. while (bdp->status & BD_SC_READY);
  1852. /* Send the character out.
  1853. */
  1854. cp = bdp->buf;
  1855. *cp = *s;
  1856. bdp->length = 1;
  1857. bdp->status |= BD_SC_READY;
  1858. if (bdp->status & BD_SC_WRAP)
  1859. bdp = bdbase;
  1860. else
  1861. bdp++;
  1862. /* if a LF, also do CR... */
  1863. if (*s == 10) {
  1864. while (bdp->status & BD_SC_READY);
  1865. /* cp = __va(bdp->buf); */
  1866. cp = bdp->buf;
  1867. *cp = 13;
  1868. bdp->length = 1;
  1869. bdp->status |= BD_SC_READY;
  1870. if (bdp->status & BD_SC_WRAP) {
  1871. bdp = bdbase;
  1872. }
  1873. else {
  1874. bdp++;
  1875. }
  1876. }
  1877. }
  1878. /*
  1879. * Finally, Wait for transmitter & holding register to empty
  1880. * and restore the IER
  1881. */
  1882. while (bdp->status & BD_SC_READY);
  1883. if (info)
  1884. info->tx_cur = (QUICC_BD *)bdp;
  1885. }
  1886. static void serial_console_write(struct console *c, const char *s,
  1887. unsigned count)
  1888. {
  1889. #ifdef CONFIG_KGDB
  1890. /* Try to let stub handle output. Returns true if it did. */
  1891. if (kgdb_output_string(s, count))
  1892. return;
  1893. #endif
  1894. my_console_write(c->index, s, count);
  1895. }
  1896. /*void console_print_68360(const char *p)
  1897. {
  1898. const char *cp = p;
  1899. int i;
  1900. for (i=0;cp[i]!=0;i++);
  1901. serial_console_write (p, i);
  1902. //Comment this if you want to have a strict interrupt-driven output
  1903. //rs_fair_output();
  1904. return;
  1905. }*/
  1906. #ifdef CONFIG_XMON
  1907. int
  1908. xmon_360_write(const char *s, unsigned count)
  1909. {
  1910. my_console_write(0, s, count);
  1911. return(count);
  1912. }
  1913. #endif
  1914. #ifdef CONFIG_KGDB
  1915. void
  1916. putDebugChar(char ch)
  1917. {
  1918. my_console_write(0, &ch, 1);
  1919. }
  1920. #endif
  1921. /*
  1922. * Receive character from the serial port. This only works well
  1923. * before the port is initialized for real use.
  1924. */
  1925. static int my_console_wait_key(int idx, int xmon, char *obuf)
  1926. {
  1927. struct serial_state *ser;
  1928. u_char c, *cp;
  1929. ser_info_t *info;
  1930. QUICC_BD *bdp;
  1931. volatile struct smc_uart_pram *up;
  1932. int i;
  1933. ser = rs_table + idx;
  1934. /* Get the address of the host memory buffer.
  1935. * If the port has been initialized for general use, we must
  1936. * use information from the port structure.
  1937. */
  1938. if ((info = (ser_info_t *)ser->info))
  1939. bdp = info->rx_cur;
  1940. else
  1941. /* bdp = (QUICC_BD *)&cpmp->cp_dpmem[up->smc_rbase]; */
  1942. bdp = (QUICC_BD *)((uint)pquicc + (uint)up->tbase);
  1943. /* Pointer to UART in parameter ram.
  1944. */
  1945. /* up = (smc_uart_t *)&cpmp->cp_dparam[ser->port]; */
  1946. up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
  1947. /*
  1948. * We need to gracefully shut down the receiver, disable
  1949. * interrupts, then read the input.
  1950. * XMON just wants a poll. If no character, return -1, else
  1951. * return the character.
  1952. */
  1953. if (!xmon) {
  1954. while (bdp->status & BD_SC_EMPTY);
  1955. }
  1956. else {
  1957. if (bdp->status & BD_SC_EMPTY)
  1958. return -1;
  1959. }
  1960. cp = (char *)bdp->buf;
  1961. if (obuf) {
  1962. i = c = bdp->length;
  1963. while (i-- > 0)
  1964. *obuf++ = *cp++;
  1965. }
  1966. else {
  1967. c = *cp;
  1968. }
  1969. bdp->status |= BD_SC_EMPTY;
  1970. if (info) {
  1971. if (bdp->status & BD_SC_WRAP) {
  1972. bdp = info->rx_bd_base;
  1973. }
  1974. else {
  1975. bdp++;
  1976. }
  1977. info->rx_cur = (QUICC_BD *)bdp;
  1978. }
  1979. return((int)c);
  1980. }
  1981. static int serial_console_wait_key(struct console *co)
  1982. {
  1983. return(my_console_wait_key(co->index, 0, NULL));
  1984. }
  1985. #ifdef CONFIG_XMON
  1986. int
  1987. xmon_360_read_poll(void)
  1988. {
  1989. return(my_console_wait_key(0, 1, NULL));
  1990. }
  1991. int
  1992. xmon_360_read_char(void)
  1993. {
  1994. return(my_console_wait_key(0, 0, NULL));
  1995. }
  1996. #endif
  1997. #ifdef CONFIG_KGDB
  1998. static char kgdb_buf[RX_BUF_SIZE], *kgdp;
  1999. static int kgdb_chars;
  2000. unsigned char
  2001. getDebugChar(void)
  2002. {
  2003. if (kgdb_chars <= 0) {
  2004. kgdb_chars = my_console_wait_key(0, 0, kgdb_buf);
  2005. kgdp = kgdb_buf;
  2006. }
  2007. kgdb_chars--;
  2008. return(*kgdp++);
  2009. }
  2010. void kgdb_interruptible(int state)
  2011. {
  2012. }
  2013. void kgdb_map_scc(void)
  2014. {
  2015. struct serial_state *ser;
  2016. uint mem_addr;
  2017. volatile QUICC_BD *bdp;
  2018. volatile smc_uart_t *up;
  2019. cpmp = (cpm360_t *)&(((immap_t *)IMAP_ADDR)->im_cpm);
  2020. /* To avoid data cache CPM DMA coherency problems, allocate a
  2021. * buffer in the CPM DPRAM. This will work until the CPM and
  2022. * serial ports are initialized. At that time a memory buffer
  2023. * will be allocated.
  2024. * The port is already initialized from the boot procedure, all
  2025. * we do here is give it a different buffer and make it a FIFO.
  2026. */
  2027. ser = rs_table;
  2028. /* Right now, assume we are using SMCs.
  2029. */
  2030. up = (smc_uart_t *)&cpmp->cp_dparam[ser->port];
  2031. /* Allocate space for an input FIFO, plus a few bytes for output.
  2032. * Allocate bytes to maintain word alignment.
  2033. */
  2034. mem_addr = (uint)(&cpmp->cp_dpmem[0x1000]);
  2035. /* Set the physical address of the host memory buffers in
  2036. * the buffer descriptors.
  2037. */
  2038. bdp = (QUICC_BD *)&cpmp->cp_dpmem[up->smc_rbase];
  2039. bdp->buf = mem_addr;
  2040. bdp = (QUICC_BD *)&cpmp->cp_dpmem[up->smc_tbase];
  2041. bdp->buf = mem_addr+RX_BUF_SIZE;
  2042. up->smc_mrblr = RX_BUF_SIZE; /* receive buffer length */
  2043. up->smc_maxidl = RX_BUF_SIZE;
  2044. }
  2045. #endif
  2046. static struct tty_struct *serial_console_device(struct console *c, int *index)
  2047. {
  2048. *index = c->index;
  2049. return serial_driver;
  2050. }
  2051. struct console sercons = {
  2052. .name = "ttyS",
  2053. .write = serial_console_write,
  2054. .device = serial_console_device,
  2055. .wait_key = serial_console_wait_key,
  2056. .setup = serial_console_setup,
  2057. .flags = CON_PRINTBUFFER,
  2058. .index = CONFIG_SERIAL_CONSOLE_PORT,
  2059. };
  2060. /*
  2061. * Register console.
  2062. */
  2063. long console_360_init(long kmem_start, long kmem_end)
  2064. {
  2065. register_console(&sercons);
  2066. /*register_console (console_print_68360); - 2.0.38 only required a write
  2067. function pointer. */
  2068. return kmem_start;
  2069. }
  2070. #endif
  2071. /* Index in baud rate table of the default console baud rate.
  2072. */
  2073. static int baud_idx;
  2074. static const struct tty_operations rs_360_ops = {
  2075. .owner = THIS_MODULE,
  2076. .open = rs_360_open,
  2077. .close = rs_360_close,
  2078. .write = rs_360_write,
  2079. .put_char = rs_360_put_char,
  2080. .write_room = rs_360_write_room,
  2081. .chars_in_buffer = rs_360_chars_in_buffer,
  2082. .flush_buffer = rs_360_flush_buffer,
  2083. .ioctl = rs_360_ioctl,
  2084. .throttle = rs_360_throttle,
  2085. .unthrottle = rs_360_unthrottle,
  2086. /* .send_xchar = rs_360_send_xchar, */
  2087. .set_termios = rs_360_set_termios,
  2088. .stop = rs_360_stop,
  2089. .start = rs_360_start,
  2090. .hangup = rs_360_hangup,
  2091. /* .wait_until_sent = rs_360_wait_until_sent, */
  2092. /* .read_proc = rs_360_read_proc, */
  2093. .tiocmget = rs_360_tiocmget,
  2094. .tiocmset = rs_360_tiocmset,
  2095. };
  2096. static int __init rs_360_init(void)
  2097. {
  2098. struct serial_state * state;
  2099. ser_info_t *info;
  2100. void *mem_addr;
  2101. uint dp_addr, iobits;
  2102. int i, j, idx;
  2103. ushort chan;
  2104. QUICC_BD *bdp;
  2105. volatile QUICC *cp;
  2106. volatile struct smc_regs *sp;
  2107. volatile struct smc_uart_pram *up;
  2108. volatile struct scc_regs *scp;
  2109. volatile struct uart_pram *sup;
  2110. /* volatile immap_t *immap; */
  2111. serial_driver = alloc_tty_driver(NR_PORTS);
  2112. if (!serial_driver)
  2113. return -1;
  2114. show_serial_version();
  2115. serial_driver->name = "ttyS";
  2116. serial_driver->major = TTY_MAJOR;
  2117. serial_driver->minor_start = 64;
  2118. serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
  2119. serial_driver->subtype = SERIAL_TYPE_NORMAL;
  2120. serial_driver->init_termios = tty_std_termios;
  2121. serial_driver->init_termios.c_cflag =
  2122. baud_idx | CS8 | CREAD | HUPCL | CLOCAL;
  2123. serial_driver->flags = TTY_DRIVER_REAL_RAW;
  2124. tty_set_operations(serial_driver, &rs_360_ops);
  2125. if (tty_register_driver(serial_driver))
  2126. panic("Couldn't register serial driver\n");
  2127. cp = pquicc; /* Get pointer to Communication Processor */
  2128. /* immap = (immap_t *)IMAP_ADDR; */ /* and to internal registers */
  2129. /* Configure SCC2, SCC3, and SCC4 instead of port A parallel I/O.
  2130. */
  2131. /* The "standard" configuration through the 860.
  2132. */
  2133. /* immap->im_ioport.iop_papar |= 0x00fc; */
  2134. /* immap->im_ioport.iop_padir &= ~0x00fc; */
  2135. /* immap->im_ioport.iop_paodr &= ~0x00fc; */
  2136. cp->pio_papar |= 0x00fc;
  2137. cp->pio_padir &= ~0x00fc;
  2138. /* cp->pio_paodr &= ~0x00fc; */
  2139. /* Since we don't yet do modem control, connect the port C pins
  2140. * as general purpose I/O. This will assert CTS and CD for the
  2141. * SCC ports.
  2142. */
  2143. /* FIXME: see 360um p.7-365 and 860um p.34-12
  2144. * I can't make sense of these bits - mleslie*/
  2145. /* immap->im_ioport.iop_pcdir |= 0x03c6; */
  2146. /* immap->im_ioport.iop_pcpar &= ~0x03c6; */
  2147. /* cp->pio_pcdir |= 0x03c6; */
  2148. /* cp->pio_pcpar &= ~0x03c6; */
  2149. /* Connect SCC2 and SCC3 to NMSI. Connect BRG3 to SCC2 and
  2150. * BRG4 to SCC3.
  2151. */
  2152. cp->si_sicr &= ~0x00ffff00;
  2153. cp->si_sicr |= 0x001b1200;
  2154. #ifdef CONFIG_PP04
  2155. /* Frequentis PP04 forced to RS-232 until we know better.
  2156. * Port C 12 and 13 low enables RS-232 on SCC3 and SCC4.
  2157. */
  2158. immap->im_ioport.iop_pcdir |= 0x000c;
  2159. immap->im_ioport.iop_pcpar &= ~0x000c;
  2160. immap->im_ioport.iop_pcdat &= ~0x000c;
  2161. /* This enables the TX driver.
  2162. */
  2163. cp->cp_pbpar &= ~0x6000;
  2164. cp->cp_pbdat &= ~0x6000;
  2165. #endif
  2166. for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) {
  2167. state->magic = SSTATE_MAGIC;
  2168. state->line = i;
  2169. state->type = PORT_UNKNOWN;
  2170. state->custom_divisor = 0;
  2171. state->close_delay = 5*HZ/10;
  2172. state->closing_wait = 30*HZ;
  2173. state->icount.cts = state->icount.dsr =
  2174. state->icount.rng = state->icount.dcd = 0;
  2175. state->icount.rx = state->icount.tx = 0;
  2176. state->icount.frame = state->icount.parity = 0;
  2177. state->icount.overrun = state->icount.brk = 0;
  2178. printk(KERN_INFO "ttyS%d at irq 0x%02x is an %s\n",
  2179. i, (unsigned int)(state->irq),
  2180. (state->smc_scc_num & NUM_IS_SCC) ? "SCC" : "SMC");
  2181. #ifdef CONFIG_SERIAL_CONSOLE
  2182. /* If we just printed the message on the console port, and
  2183. * we are about to initialize it for general use, we have
  2184. * to wait a couple of character times for the CR/NL to
  2185. * make it out of the transmit buffer.
  2186. */
  2187. if (i == CONFIG_SERIAL_CONSOLE_PORT)
  2188. mdelay(8);
  2189. /* idx = PORT_NUM(info->state->smc_scc_num); */
  2190. /* if (info->state->smc_scc_num & NUM_IS_SCC) */
  2191. /* chan = scc_chan_map[idx]; */
  2192. /* else */
  2193. /* chan = smc_chan_map[idx]; */
  2194. /* cp->cp_cr = mk_cr_cmd(chan, CPM_CR_STOP_TX) | CPM_CR_FLG; */
  2195. /* while (cp->cp_cr & CPM_CR_FLG); */
  2196. #endif
  2197. /* info = kmalloc(sizeof(ser_info_t), GFP_KERNEL); */
  2198. info = &quicc_ser_info[i];
  2199. if (info) {
  2200. memset (info, 0, sizeof(ser_info_t));
  2201. info->magic = SERIAL_MAGIC;
  2202. info->line = i;
  2203. info->flags = state->flags;
  2204. INIT_WORK(&info->tqueue, do_softint, info);
  2205. INIT_WORK(&info->tqueue_hangup, do_serial_hangup, info);
  2206. init_waitqueue_head(&info->open_wait);
  2207. init_waitqueue_head(&info->close_wait);
  2208. info->state = state;
  2209. state->info = (struct async_struct *)info;
  2210. /* We need to allocate a transmit and receive buffer
  2211. * descriptors from dual port ram, and a character
  2212. * buffer area from host mem.
  2213. */
  2214. dp_addr = m360_cpm_dpalloc(sizeof(QUICC_BD) * RX_NUM_FIFO);
  2215. /* Allocate space for FIFOs in the host memory.
  2216. * (for now this is from a static array of buffers :(
  2217. */
  2218. /* mem_addr = m360_cpm_hostalloc(RX_NUM_FIFO * RX_BUF_SIZE); */
  2219. /* mem_addr = kmalloc (RX_NUM_FIFO * RX_BUF_SIZE, GFP_BUFFER); */
  2220. mem_addr = &rx_buf_pool[i * RX_NUM_FIFO * RX_BUF_SIZE];
  2221. /* Set the physical address of the host memory
  2222. * buffers in the buffer descriptors, and the
  2223. * virtual address for us to work with.
  2224. */
  2225. bdp = (QUICC_BD *)((uint)pquicc + dp_addr);
  2226. info->rx_cur = info->rx_bd_base = bdp;
  2227. /* initialize rx buffer descriptors */
  2228. for (j=0; j<(RX_NUM_FIFO-1); j++) {
  2229. bdp->buf = &rx_buf_pool[(i * RX_NUM_FIFO + j ) * RX_BUF_SIZE];
  2230. bdp->status = BD_SC_EMPTY | BD_SC_INTRPT;
  2231. mem_addr += RX_BUF_SIZE;
  2232. bdp++;
  2233. }
  2234. bdp->buf = &rx_buf_pool[(i * RX_NUM_FIFO + j ) * RX_BUF_SIZE];
  2235. bdp->status = BD_SC_WRAP | BD_SC_EMPTY | BD_SC_INTRPT;
  2236. idx = PORT_NUM(info->state->smc_scc_num);
  2237. if (info->state->smc_scc_num & NUM_IS_SCC) {
  2238. #if defined (CONFIG_UCQUICC) && 1
  2239. /* set the transceiver mode to RS232 */
  2240. sipex_mode_bits &= ~(uint)SIPEX_MODE(idx,0x0f); /* clear current mode */
  2241. sipex_mode_bits |= (uint)SIPEX_MODE(idx,0x02);
  2242. *(uint *)_periph_base = sipex_mode_bits;
  2243. /* printk ("sipex bits = 0x%08x\n", sipex_mode_bits); */
  2244. #endif
  2245. }
  2246. dp_addr = m360_cpm_dpalloc(sizeof(QUICC_BD) * TX_NUM_FIFO);
  2247. /* Allocate space for FIFOs in the host memory.
  2248. */
  2249. /* mem_addr = m360_cpm_hostalloc(TX_NUM_FIFO * TX_BUF_SIZE); */
  2250. /* mem_addr = kmalloc (TX_NUM_FIFO * TX_BUF_SIZE, GFP_BUFFER); */
  2251. mem_addr = &tx_buf_pool[i * TX_NUM_FIFO * TX_BUF_SIZE];
  2252. /* Set the physical address of the host memory
  2253. * buffers in the buffer descriptors, and the
  2254. * virtual address for us to work with.
  2255. */
  2256. /* bdp = (QUICC_BD *)&cp->cp_dpmem[dp_addr]; */
  2257. bdp = (QUICC_BD *)((uint)pquicc + dp_addr);
  2258. info->tx_cur = info->tx_bd_base = (QUICC_BD *)bdp;
  2259. /* initialize tx buffer descriptors */
  2260. for (j=0; j<(TX_NUM_FIFO-1); j++) {
  2261. bdp->buf = &tx_buf_pool[(i * TX_NUM_FIFO + j ) * TX_BUF_SIZE];
  2262. bdp->status = BD_SC_INTRPT;
  2263. mem_addr += TX_BUF_SIZE;
  2264. bdp++;
  2265. }
  2266. bdp->buf = &tx_buf_pool[(i * TX_NUM_FIFO + j ) * TX_BUF_SIZE];
  2267. bdp->status = (BD_SC_WRAP | BD_SC_INTRPT);
  2268. if (info->state->smc_scc_num & NUM_IS_SCC) {
  2269. scp = &pquicc->scc_regs[idx];
  2270. sup = &pquicc->pram[info->state->port].scc.pscc.u;
  2271. sup->rbase = dp_addr;
  2272. sup->tbase = dp_addr;
  2273. /* Set up the uart parameters in the
  2274. * parameter ram.
  2275. */
  2276. sup->rfcr = SMC_EB;
  2277. sup->tfcr = SMC_EB;
  2278. /* Set this to 1 for now, so we get single
  2279. * character interrupts. Using idle charater
  2280. * time requires some additional tuning.
  2281. */
  2282. sup->mrblr = 1;
  2283. sup->max_idl = 0;
  2284. sup->brkcr = 1;
  2285. sup->parec = 0;
  2286. sup->frmer = 0;
  2287. sup->nosec = 0;
  2288. sup->brkec = 0;
  2289. sup->uaddr1 = 0;
  2290. sup->uaddr2 = 0;
  2291. sup->toseq = 0;
  2292. {
  2293. int i;
  2294. for (i=0;i<8;i++)
  2295. sup->cc[i] = 0x8000;
  2296. }
  2297. sup->rccm = 0xc0ff;
  2298. /* Send the CPM an initialize command.
  2299. */
  2300. chan = scc_chan_map[idx];
  2301. /* execute the INIT RX & TX PARAMS command for this channel. */
  2302. cp->cp_cr = mk_cr_cmd(chan, CPM_CR_INIT_TRX) | CPM_CR_FLG;
  2303. while (cp->cp_cr & CPM_CR_FLG);
  2304. /* Set UART mode, 8 bit, no parity, one stop.
  2305. * Enable receive and transmit.
  2306. */
  2307. scp->scc_gsmr.w.high = 0;
  2308. scp->scc_gsmr.w.low =
  2309. (SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
  2310. /* Disable all interrupts and clear all pending
  2311. * events.
  2312. */
  2313. scp->scc_sccm = 0;
  2314. scp->scc_scce = 0xffff;
  2315. scp->scc_dsr = 0x7e7e;
  2316. scp->scc_psmr = 0x3000;
  2317. /* If the port is the console, enable Rx and Tx.
  2318. */
  2319. #ifdef CONFIG_SERIAL_CONSOLE
  2320. if (i == CONFIG_SERIAL_CONSOLE_PORT)
  2321. scp->scc_gsmr.w.low |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
  2322. #endif
  2323. }
  2324. else {
  2325. /* Configure SMCs Tx/Rx instead of port B
  2326. * parallel I/O.
  2327. */
  2328. up = &pquicc->pram[info->state->port].scc.pothers.idma_smc.psmc.u;
  2329. up->rbase = dp_addr;
  2330. iobits = 0xc0 << (idx * 4);
  2331. cp->pip_pbpar |= iobits;
  2332. cp->pip_pbdir &= ~iobits;
  2333. cp->pip_pbodr &= ~iobits;
  2334. /* Connect the baud rate generator to the
  2335. * SMC based upon index in rs_table. Also
  2336. * make sure it is connected to NMSI.
  2337. */
  2338. cp->si_simode &= ~(0xffff << (idx * 16));
  2339. cp->si_simode |= (i << ((idx * 16) + 12));
  2340. up->tbase = dp_addr;
  2341. /* Set up the uart parameters in the
  2342. * parameter ram.
  2343. */
  2344. up->rfcr = SMC_EB;
  2345. up->tfcr = SMC_EB;
  2346. /* Set this to 1 for now, so we get single
  2347. * character interrupts. Using idle charater
  2348. * time requires some additional tuning.
  2349. */
  2350. up->mrblr = 1;
  2351. up->max_idl = 0;
  2352. up->brkcr = 1;
  2353. /* Send the CPM an initialize command.
  2354. */
  2355. chan = smc_chan_map[idx];
  2356. cp->cp_cr = mk_cr_cmd(chan,
  2357. CPM_CR_INIT_TRX) | CPM_CR_FLG;
  2358. #ifdef CONFIG_SERIAL_CONSOLE
  2359. if (i == CONFIG_SERIAL_CONSOLE_PORT)
  2360. printk("");
  2361. #endif
  2362. while (cp->cp_cr & CPM_CR_FLG);
  2363. /* Set UART mode, 8 bit, no parity, one stop.
  2364. * Enable receive and transmit.
  2365. */
  2366. sp = &cp->smc_regs[idx];
  2367. sp->smc_smcmr = smcr_mk_clen(9) | SMCMR_SM_UART;
  2368. /* Disable all interrupts and clear all pending
  2369. * events.
  2370. */
  2371. sp->smc_smcm = 0;
  2372. sp->smc_smce = 0xff;
  2373. /* If the port is the console, enable Rx and Tx.
  2374. */
  2375. #ifdef CONFIG_SERIAL_CONSOLE
  2376. if (i == CONFIG_SERIAL_CONSOLE_PORT)
  2377. sp->smc_smcmr |= SMCMR_REN | SMCMR_TEN;
  2378. #endif
  2379. }
  2380. /* Install interrupt handler.
  2381. */
  2382. /* cpm_install_handler(IRQ_MACHSPEC | state->irq, rs_360_interrupt, info); */
  2383. /*request_irq(IRQ_MACHSPEC | state->irq, rs_360_interrupt, */
  2384. request_irq(state->irq, rs_360_interrupt,
  2385. IRQ_FLG_LOCK, "ttyS", (void *)info);
  2386. /* Set up the baud rate generator.
  2387. */
  2388. m360_cpm_setbrg(i, baud_table[baud_idx]);
  2389. }
  2390. }
  2391. return 0;
  2392. }
  2393. module_init(rs_360_init);
  2394. /* This must always be called before the rs_360_init() function, otherwise
  2395. * it blows away the port control information.
  2396. */
  2397. //static int __init serial_console_setup( struct console *co, char *options)
  2398. int serial_console_setup( struct console *co, char *options)
  2399. {
  2400. struct serial_state *ser;
  2401. uint mem_addr, dp_addr, bidx, idx, iobits;
  2402. ushort chan;
  2403. QUICC_BD *bdp;
  2404. volatile QUICC *cp;
  2405. volatile struct smc_regs *sp;
  2406. volatile struct scc_regs *scp;
  2407. volatile struct smc_uart_pram *up;
  2408. volatile struct uart_pram *sup;
  2409. /* mleslie TODO:
  2410. * add something to the 68k bootloader to store a desired initial console baud rate */
  2411. /* bd_t *bd; */ /* a board info struct used by EPPC-bug */
  2412. /* bd = (bd_t *)__res; */
  2413. for (bidx = 0; bidx < (sizeof(baud_table) / sizeof(int)); bidx++)
  2414. /* if (bd->bi_baudrate == baud_table[bidx]) */
  2415. if (CONSOLE_BAUDRATE == baud_table[bidx])
  2416. break;
  2417. /* co->cflag = CREAD|CLOCAL|bidx|CS8; */
  2418. baud_idx = bidx;
  2419. ser = rs_table + CONFIG_SERIAL_CONSOLE_PORT;
  2420. cp = pquicc; /* Get pointer to Communication Processor */
  2421. idx = PORT_NUM(ser->smc_scc_num);
  2422. if (ser->smc_scc_num & NUM_IS_SCC) {
  2423. /* TODO: need to set up SCC pin assignment etc. here */
  2424. }
  2425. else {
  2426. iobits = 0xc0 << (idx * 4);
  2427. cp->pip_pbpar |= iobits;
  2428. cp->pip_pbdir &= ~iobits;
  2429. cp->pip_pbodr &= ~iobits;
  2430. /* Connect the baud rate generator to the
  2431. * SMC based upon index in rs_table. Also
  2432. * make sure it is connected to NMSI.
  2433. */
  2434. cp->si_simode &= ~(0xffff << (idx * 16));
  2435. cp->si_simode |= (idx << ((idx * 16) + 12));
  2436. }
  2437. /* When we get here, the CPM has been reset, so we need
  2438. * to configure the port.
  2439. * We need to allocate a transmit and receive buffer descriptor
  2440. * from dual port ram, and a character buffer area from host mem.
  2441. */
  2442. /* Allocate space for two buffer descriptors in the DP ram.
  2443. */
  2444. dp_addr = m360_cpm_dpalloc(sizeof(QUICC_BD) * CONSOLE_NUM_FIFO);
  2445. /* Allocate space for two 2 byte FIFOs in the host memory.
  2446. */
  2447. /* mem_addr = m360_cpm_hostalloc(8); */
  2448. mem_addr = (uint)console_fifos;
  2449. /* Set the physical address of the host memory buffers in
  2450. * the buffer descriptors.
  2451. */
  2452. /* bdp = (QUICC_BD *)&cp->cp_dpmem[dp_addr]; */
  2453. bdp = (QUICC_BD *)((uint)pquicc + dp_addr);
  2454. bdp->buf = (char *)mem_addr;
  2455. (bdp+1)->buf = (char *)(mem_addr+4);
  2456. /* For the receive, set empty and wrap.
  2457. * For transmit, set wrap.
  2458. */
  2459. bdp->status = BD_SC_EMPTY | BD_SC_WRAP;
  2460. (bdp+1)->status = BD_SC_WRAP;
  2461. /* Set up the uart parameters in the parameter ram.
  2462. */
  2463. if (ser->smc_scc_num & NUM_IS_SCC) {
  2464. scp = &cp->scc_regs[idx];
  2465. /* sup = (scc_uart_t *)&cp->cp_dparam[ser->port]; */
  2466. sup = &pquicc->pram[ser->port].scc.pscc.u;
  2467. sup->rbase = dp_addr;
  2468. sup->tbase = dp_addr + sizeof(QUICC_BD);
  2469. /* Set up the uart parameters in the
  2470. * parameter ram.
  2471. */
  2472. sup->rfcr = SMC_EB;
  2473. sup->tfcr = SMC_EB;
  2474. /* Set this to 1 for now, so we get single
  2475. * character interrupts. Using idle charater
  2476. * time requires some additional tuning.
  2477. */
  2478. sup->mrblr = 1;
  2479. sup->max_idl = 0;
  2480. sup->brkcr = 1;
  2481. sup->parec = 0;
  2482. sup->frmer = 0;
  2483. sup->nosec = 0;
  2484. sup->brkec = 0;
  2485. sup->uaddr1 = 0;
  2486. sup->uaddr2 = 0;
  2487. sup->toseq = 0;
  2488. {
  2489. int i;
  2490. for (i=0;i<8;i++)
  2491. sup->cc[i] = 0x8000;
  2492. }
  2493. sup->rccm = 0xc0ff;
  2494. /* Send the CPM an initialize command.
  2495. */
  2496. chan = scc_chan_map[idx];
  2497. cp->cp_cr = mk_cr_cmd(chan, CPM_CR_INIT_TRX) | CPM_CR_FLG;
  2498. while (cp->cp_cr & CPM_CR_FLG);
  2499. /* Set UART mode, 8 bit, no parity, one stop.
  2500. * Enable receive and transmit.
  2501. */
  2502. scp->scc_gsmr.w.high = 0;
  2503. scp->scc_gsmr.w.low =
  2504. (SCC_GSMRL_MODE_UART | SCC_GSMRL_TDCR_16 | SCC_GSMRL_RDCR_16);
  2505. /* Disable all interrupts and clear all pending
  2506. * events.
  2507. */
  2508. scp->scc_sccm = 0;
  2509. scp->scc_scce = 0xffff;
  2510. scp->scc_dsr = 0x7e7e;
  2511. scp->scc_psmr = 0x3000;
  2512. scp->scc_gsmr.w.low |= (SCC_GSMRL_ENR | SCC_GSMRL_ENT);
  2513. }
  2514. else {
  2515. /* up = (smc_uart_t *)&cp->cp_dparam[ser->port]; */
  2516. up = &pquicc->pram[ser->port].scc.pothers.idma_smc.psmc.u;
  2517. up->rbase = dp_addr; /* Base of receive buffer desc. */
  2518. up->tbase = dp_addr+sizeof(QUICC_BD); /* Base of xmt buffer desc. */
  2519. up->rfcr = SMC_EB;
  2520. up->tfcr = SMC_EB;
  2521. /* Set this to 1 for now, so we get single character interrupts.
  2522. */
  2523. up->mrblr = 1; /* receive buffer length */
  2524. up->max_idl = 0; /* wait forever for next char */
  2525. /* Send the CPM an initialize command.
  2526. */
  2527. chan = smc_chan_map[idx];
  2528. cp->cp_cr = mk_cr_cmd(chan, CPM_CR_INIT_TRX) | CPM_CR_FLG;
  2529. while (cp->cp_cr & CPM_CR_FLG);
  2530. /* Set UART mode, 8 bit, no parity, one stop.
  2531. * Enable receive and transmit.
  2532. */
  2533. sp = &cp->smc_regs[idx];
  2534. sp->smc_smcmr = smcr_mk_clen(9) | SMCMR_SM_UART;
  2535. /* And finally, enable Rx and Tx.
  2536. */
  2537. sp->smc_smcmr |= SMCMR_REN | SMCMR_TEN;
  2538. }
  2539. /* Set up the baud rate generator.
  2540. */
  2541. /* m360_cpm_setbrg((ser - rs_table), bd->bi_baudrate); */
  2542. m360_cpm_setbrg((ser - rs_table), CONSOLE_BAUDRATE);
  2543. return 0;
  2544. }
  2545. /*
  2546. * Local variables:
  2547. * c-indent-level: 4
  2548. * c-basic-offset: 4
  2549. * tab-width: 4
  2550. * End:
  2551. */