@@ -234,44 +234,44 @@ void __init config_atari(void)
234
234
* Determine hardware present
235
235
*/
236
236
237
- printk ("Atari hardware found: " );
237
+ pr_info ("Atari hardware found:" );
238
238
if (MACH_IS_MEDUSA ) {
239
239
/* There's no Atari video hardware on the Medusa, but all the
240
240
* addresses below generate a DTACK so no bus error occurs! */
241
241
} else if (hwreg_present (f030_xreg )) {
242
242
ATARIHW_SET (VIDEL_SHIFTER );
243
- printk ( "VIDEL " );
243
+ pr_cont ( " VIDEL " );
244
244
/* This is a temporary hack: If there is Falcon video
245
245
* hardware, we assume that the ST-DMA serves SCSI instead of
246
246
* ACSI. In the future, there should be a better method for
247
247
* this...
248
248
*/
249
249
ATARIHW_SET (ST_SCSI );
250
- printk ( " STDMA-SCSI " );
250
+ pr_cont ( " STDMA-SCSI" );
251
251
} else if (hwreg_present (tt_palette )) {
252
252
ATARIHW_SET (TT_SHIFTER );
253
- printk ( "TT_SHIFTER " );
253
+ pr_cont ( " TT_SHIFTER " );
254
254
} else if (hwreg_present (& shifter .bas_hi )) {
255
255
if (hwreg_present (& shifter .bas_lo ) &&
256
256
(shifter .bas_lo = 0x0aau , shifter .bas_lo == 0x0aau )) {
257
257
ATARIHW_SET (EXTD_SHIFTER );
258
- printk ( "EXTD_SHIFTER " );
258
+ pr_cont ( " EXTD_SHIFTER " );
259
259
} else {
260
260
ATARIHW_SET (STND_SHIFTER );
261
- printk ( "STND_SHIFTER " );
261
+ pr_cont ( " STND_SHIFTER " );
262
262
}
263
263
}
264
264
if (hwreg_present (& st_mfp .par_dt_reg )) {
265
265
ATARIHW_SET (ST_MFP );
266
- printk ( "ST_MFP " );
266
+ pr_cont ( " ST_MFP " );
267
267
}
268
268
if (hwreg_present (& tt_mfp .par_dt_reg )) {
269
269
ATARIHW_SET (TT_MFP );
270
- printk ( "TT_MFP " );
270
+ pr_cont ( " TT_MFP " );
271
271
}
272
272
if (hwreg_present (& tt_scsi_dma .dma_addr_hi )) {
273
273
ATARIHW_SET (SCSI_DMA );
274
- printk ( "TT_SCSI_DMA " );
274
+ pr_cont ( " TT_SCSI_DMA " );
275
275
}
276
276
/*
277
277
* The ST-DMA address registers aren't readable
@@ -284,27 +284,27 @@ void __init config_atari(void)
284
284
(st_dma .dma_vhi = 0xaa ) && (st_dma .dma_hi = 0x55 ) &&
285
285
st_dma .dma_vhi == 0xaa && st_dma .dma_hi == 0x55 )) {
286
286
ATARIHW_SET (EXTD_DMA );
287
- printk ( "EXTD_DMA " );
287
+ pr_cont ( " EXTD_DMA " );
288
288
}
289
289
if (hwreg_present (& tt_scsi .scsi_data )) {
290
290
ATARIHW_SET (TT_SCSI );
291
- printk ( "TT_SCSI " );
291
+ pr_cont ( " TT_SCSI " );
292
292
}
293
293
if (hwreg_present (& sound_ym .rd_data_reg_sel )) {
294
294
ATARIHW_SET (YM_2149 );
295
- printk ( "YM2149 " );
295
+ pr_cont ( " YM2149 " );
296
296
}
297
297
if (!MACH_IS_MEDUSA && hwreg_present (& tt_dmasnd .ctrl )) {
298
298
ATARIHW_SET (PCM_8BIT );
299
- printk ( "PCM " );
299
+ pr_cont ( " PCM " );
300
300
}
301
301
if (hwreg_present (& falcon_codec .unused5 )) {
302
302
ATARIHW_SET (CODEC );
303
- printk ( "CODEC " );
303
+ pr_cont ( " CODEC " );
304
304
}
305
305
if (hwreg_present (& dsp56k_host_interface .icr )) {
306
306
ATARIHW_SET (DSP56K );
307
- printk ( "DSP56K " );
307
+ pr_cont ( " DSP56K " );
308
308
}
309
309
if (hwreg_present (& tt_scc_dma .dma_ctrl ) &&
310
310
#if 0
@@ -316,33 +316,33 @@ void __init config_atari(void)
316
316
#endif
317
317
) {
318
318
ATARIHW_SET (SCC_DMA );
319
- printk ( "SCC_DMA " );
319
+ pr_cont ( " SCC_DMA " );
320
320
}
321
321
if (scc_test (& atari_scc .cha_a_ctrl )) {
322
322
ATARIHW_SET (SCC );
323
- printk ( "SCC " );
323
+ pr_cont ( " SCC " );
324
324
}
325
325
if (scc_test (& st_escc .cha_b_ctrl )) {
326
326
ATARIHW_SET (ST_ESCC );
327
- printk ( "ST_ESCC " );
327
+ pr_cont ( " ST_ESCC " );
328
328
}
329
329
if (hwreg_present (& tt_scu .sys_mask )) {
330
330
ATARIHW_SET (SCU );
331
331
/* Assume a VME bus if there's a SCU */
332
332
ATARIHW_SET (VME );
333
- printk ( " VME SCU " );
333
+ pr_cont ( " VME SCU" );
334
334
}
335
335
if (hwreg_present ((void * )(0xffff9210 ))) {
336
336
ATARIHW_SET (ANALOG_JOY );
337
- printk ( "ANALOG_JOY " );
337
+ pr_cont ( " ANALOG_JOY " );
338
338
}
339
339
if (hwreg_present (blitter .halftone )) {
340
340
ATARIHW_SET (BLITTER );
341
- printk ( "BLITTER " );
341
+ pr_cont ( " BLITTER " );
342
342
}
343
343
if (hwreg_present ((void * )0xfff00039 )) {
344
344
ATARIHW_SET (IDE );
345
- printk ( "IDE " );
345
+ pr_cont ( " IDE " );
346
346
}
347
347
#if 1 /* This maybe wrong */
348
348
if (!MACH_IS_MEDUSA && hwreg_present (& tt_microwire .data ) &&
@@ -355,31 +355,31 @@ void __init config_atari(void)
355
355
ATARIHW_SET (MICROWIRE );
356
356
while (tt_microwire .mask != 0x7ff )
357
357
;
358
- printk ( "MICROWIRE " );
358
+ pr_cont ( " MICROWIRE " );
359
359
}
360
360
#endif
361
361
if (hwreg_present (& tt_rtc .regsel )) {
362
362
ATARIHW_SET (TT_CLK );
363
- printk ( "TT_CLK " );
363
+ pr_cont ( " TT_CLK " );
364
364
mach_hwclk = atari_tt_hwclk ;
365
365
mach_set_clock_mmss = atari_tt_set_clock_mmss ;
366
366
}
367
367
if (hwreg_present (& mste_rtc .sec_ones )) {
368
368
ATARIHW_SET (MSTE_CLK );
369
- printk ( "MSTE_CLK " );
369
+ pr_cont ( " MSTE_CLK " );
370
370
mach_hwclk = atari_mste_hwclk ;
371
371
mach_set_clock_mmss = atari_mste_set_clock_mmss ;
372
372
}
373
373
if (!MACH_IS_MEDUSA && hwreg_present (& dma_wd .fdc_speed ) &&
374
374
hwreg_write (& dma_wd .fdc_speed , 0 )) {
375
375
ATARIHW_SET (FDCSPEED );
376
- printk ( "FDC_SPEED " );
376
+ pr_cont ( " FDC_SPEED " );
377
377
}
378
378
if (!ATARIHW_PRESENT (ST_SCSI )) {
379
379
ATARIHW_SET (ACSI );
380
- printk ( "ACSI " );
380
+ pr_cont ( " ACSI " );
381
381
}
382
- printk ("\n" );
382
+ pr_cont ("\n" );
383
383
384
384
if (CPU_IS_040_OR_060 )
385
385
/* Now it seems to be safe to turn of the tt0 transparent
0 commit comments