2 * PMC-Sierra MSP board specific pci_ops
4 * Copyright 2001 MontaVista Software Inc.
5 * Copyright 2005-2007 PMC-Sierra, Inc
7 * Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
9 * Much of the code is derived from the original DDB5074 port by
10 * Geert Uytterhoeven <geert@sonycom.com>
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
19 #define PCI_COUNTERS 1
21 #include <linux/types.h>
22 #include <linux/pci.h>
23 #include <linux/interrupt.h>
25 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
26 #include <linux/proc_fs.h>
27 #include <linux/seq_file.h>
28 #endif /* CONFIG_PROC_FS && PCI_COUNTERS */
30 #include <linux/kernel.h>
31 #include <linux/init.h>
33 #include <asm/byteorder.h>
34 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
35 #include <asm/mipsmtregs.h>
39 #include <msp_cic_int.h>
42 #include <msp_regops.h>
44 #define PCI_ACCESS_READ 0
45 #define PCI_ACCESS_WRITE 1
47 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
48 static char proc_init
;
49 extern struct proc_dir_entry
*proc_bus_pci_dir
;
50 unsigned int pci_int_count
[32];
52 static void pci_proc_init(void);
54 /*****************************************************************************
56 * FUNCTION: read_msp_pci_counts
57 * _________________________________________________________________________
59 * DESCRIPTION: Prints the count of how many times each PCI
60 * interrupt has asserted. Can be invoked by the
63 * INPUTS: page - part of STDOUT calculation
64 * off - part of STDOUT calculation
65 * count - part of STDOUT calculation
68 * OUTPUTS: start - new start location
69 * eof - end of file pointer
71 * RETURNS: len - STDOUT length
73 ****************************************************************************/
74 static int read_msp_pci_counts(char *page
, char **start
, off_t off
,
75 int count
, int *eof
, void *data
)
79 unsigned int intcount
, total
= 0;
81 for (i
= 0; i
< 32; ++i
) {
82 intcount
= pci_int_count
[i
];
84 len
+= sprintf(page
+ len
, "[%d] = %u\n", i
, intcount
);
89 len
+= sprintf(page
+ len
, "total = %u\n", total
);
103 /*****************************************************************************
105 * FUNCTION: gen_pci_cfg_wr
106 * _________________________________________________________________________
108 * DESCRIPTION: Generates a configuration write cycle for debug purposes.
109 * The IDSEL line asserted and location and data written are
110 * immaterial. Just want to be able to prove that a
111 * configuration write can be correctly generated on the
112 * PCI bus. Intent is that this function by invocable from
113 * the /proc filesystem.
115 * INPUTS: page - part of STDOUT calculation
116 * off - part of STDOUT calculation
117 * count - part of STDOUT calculation
120 * OUTPUTS: start - new start location
121 * eof - end of file pointer
123 * RETURNS: len - STDOUT length
125 ****************************************************************************/
126 static int gen_pci_cfg_wr(char *page
, char **start
, off_t off
,
127 int count
, int *eof
, void *data
)
129 unsigned char where
= 0; /* Write to static Device/Vendor ID */
130 unsigned char bus_num
= 0; /* Bus 0 */
131 unsigned char dev_fn
= 0xF; /* Arbitrary device number */
132 u32 wr_data
= 0xFF00AA00; /* Arbitrary data */
133 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
138 len
+= sprintf(page
+ len
, "PMC MSP PCI: Beginning\n");
140 if (proc_init
== 0) {
145 len
+= sprintf(page
+ len
, "PMC MSP PCI: Before Cfg Wr\n");
148 * Generate PCI Configuration Write Cycle
151 /* Clear cause register bits */
152 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
154 /* Setup address that is to appear on PCI bus */
155 preg
->config_addr
= BPCI_CFGADDR_ENABLE
|
156 (bus_num
<< BPCI_CFGADDR_BUSNUM_SHF
) |
157 (dev_fn
<< BPCI_CFGADDR_FUNCTNUM_SHF
) |
160 value
= cpu_to_le32(wr_data
);
162 /* Launch the PCI configuration write cycle */
163 *PCI_CONFIG_SPACE_REG
= value
;
166 * Check if the PCI configuration cycle (rd or wr) succeeded, by
167 * checking the status bits for errors like master or target abort.
169 intr
= preg
->if_status
;
171 len
+= sprintf(page
+ len
, "PMC MSP PCI: After Cfg Wr\n");
173 /* Handle STDOUT calculations */
174 if (len
<= off
+count
)
186 /*****************************************************************************
188 * FUNCTION: pci_proc_init
189 * _________________________________________________________________________
191 * DESCRIPTION: Create entries in the /proc filesystem for debug access.
199 ****************************************************************************/
200 static void pci_proc_init(void)
202 create_proc_read_entry("pmc_msp_pci_rd_cnt", 0, NULL
,
203 read_msp_pci_counts
, NULL
);
204 create_proc_read_entry("pmc_msp_pci_cfg_wr", 0, NULL
,
205 gen_pci_cfg_wr
, NULL
);
207 #endif /* CONFIG_PROC_FS && PCI_COUNTERS */
209 static DEFINE_SPINLOCK(bpci_lock
);
211 /*****************************************************************************
213 * STRUCT: pci_io_resource
214 * _________________________________________________________________________
216 * DESCRIPTION: Defines the address range that pciauto() will use to
217 * assign to the I/O BARs of PCI devices.
219 * Use the start and end addresses of the MSP7120 PCI Host
220 * Controller I/O space, in the form that they appear on the
221 * PCI bus AFTER MSP7120 has performed address translation.
223 * For I/O accesses, MSP7120 ignores OATRAN and maps I/O
224 * accesses into the bottom 0xFFF region of address space,
225 * so that is the range to put into the pci_io_resource
228 * In MSP4200, the start address was 0x04 instead of the
229 * expected 0x00. Will just assume there was a good reason
232 * NOTES: Linux, by default, will assign I/O space to the lowest
233 * region of address space. Since MSP7120 and Linux,
234 * by default, have no offset in between how they map, the
235 * io_offset element of pci_controller struct should be set
238 * name - String used for a meaningful name.
240 * start - Start address of MSP7120's I/O space, as MSP7120 presents
241 * the address on the PCI bus.
243 * end - End address of MSP7120's I/O space, as MSP7120 presents
244 * the address on the PCI bus.
246 * flags - Attributes indicating the type of resource. In this case,
247 * indicate I/O space.
249 ****************************************************************************/
250 static struct resource pci_io_resource
= {
251 .name
= "pci IO space",
254 .flags
= IORESOURCE_IO
/* I/O space */
257 /*****************************************************************************
259 * STRUCT: pci_mem_resource
260 * _________________________________________________________________________
262 * DESCRIPTION: Defines the address range that pciauto() will use to
263 * assign to the memory BARs of PCI devices.
265 * The .start and .end values are dependent upon how address
266 * translation is performed by the OATRAN regiser.
268 * The values to use for .start and .end are the values
269 * in the form they appear on the PCI bus AFTER MSP7120 has
270 * performed OATRAN address translation.
273 * name - String used for a meaningful name.
275 * start - Start address of MSP7120's memory space, as MSP7120 presents
276 * the address on the PCI bus.
278 * end - End address of MSP7120's memory space, as MSP7120 presents
279 * the address on the PCI bus.
281 * flags - Attributes indicating the type of resource. In this case,
282 * indicate memory space.
284 ****************************************************************************/
285 static struct resource pci_mem_resource
= {
286 .name
= "pci memory space",
287 .start
= MSP_PCI_SPACE_BASE
,
288 .end
= MSP_PCI_SPACE_END
,
289 .flags
= IORESOURCE_MEM
/* memory space */
292 /*****************************************************************************
294 * FUNCTION: bpci_interrupt
295 * _________________________________________________________________________
297 * DESCRIPTION: PCI status interrupt handler. Updates the count of how
298 * many times each status bit has been set, then clears
299 * the status bits. If the appropriate macros are defined,
300 * these counts can be viewed via the /proc filesystem.
302 * INPUTS: irq - unused
308 * RETURNS: PCIBIOS_SUCCESSFUL - success
310 ****************************************************************************/
311 static irqreturn_t
bpci_interrupt(int irq
, void *dev_id
)
313 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
314 unsigned int stat
= preg
->if_status
;
316 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
318 for (i
= 0; i
< 32; ++i
) {
322 #endif /* PROC_FS && PCI_COUNTERS */
324 /* printk("PCI ISR: Status=%08X\n", stat); */
326 /* write to clear all asserted interrupts */
327 preg
->if_status
= stat
;
332 /*****************************************************************************
334 * FUNCTION: msp_pcibios_config_access
335 * _________________________________________________________________________
337 * DESCRIPTION: Performs a PCI configuration access (rd or wr), then
338 * checks that the access succeeded by querying MSP7120's
342 * access_type - kind of PCI configuration cycle to perform
343 * (read or write). Legal values are
344 * PCI_ACCESS_WRITE and PCI_ACCESS_READ.
346 * bus - pointer to the bus number of the device to
347 * be targeted for the configuration cycle.
348 * The only element of the pci_bus structure
349 * used is bus->number. This argument determines
350 * if the configuration access will be Type 0 or
351 * Type 1. Since MSP7120 assumes itself to be the
352 * PCI Host, any non-zero bus->number generates
355 * devfn - this is an 8-bit field. The lower three bits
356 * specify the function number of the device to
357 * be targeted for the configuration cycle, with
358 * all three-bit combinations being legal. The
359 * upper five bits specify the device number,
360 * with legal values being 10 to 31.
362 * where - address within the Configuration Header
365 * data - for write accesses, contains the data to
369 * data - for read accesses, contains the value read.
371 * RETURNS: PCIBIOS_SUCCESSFUL - success
372 * -1 - access failure
374 ****************************************************************************/
375 int msp_pcibios_config_access(unsigned char access_type
,
381 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
382 unsigned char bus_num
= bus
->number
;
383 unsigned char dev_fn
= (unsigned char)devfn
;
387 static char pciirqflag
;
389 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
390 unsigned int vpe_status
;
393 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
394 if (proc_init
== 0) {
398 #endif /* CONFIG_PROC_FS && PCI_COUNTERS */
401 * Just the first time this function invokes, allocate
402 * an interrupt line for PCI host status interrupts. The
403 * allocation assigns an interrupt handler to the interrupt.
405 if (pciirqflag
== 0) {
406 ret
= request_irq(MSP_INT_PCI
,/* Hardcoded internal MSP7120 wiring */
408 IRQF_SHARED
| IRQF_DISABLED
,
416 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
417 local_irq_save(flags
);
420 spin_lock_irqsave(&bpci_lock
, flags
);
424 * Clear PCI cause register bits.
426 * In Polo, the PCI Host had a dedicated DMA called the
427 * Block Copy (not to be confused with the general purpose Block
428 * Copy Engine block). There appear to have been special interrupts
429 * for this Block Copy, called Block Copy 0 Fault (BC0F) and
430 * Block Copy 1 Fault (BC1F). MSP4200 and MSP7120 don't have this
431 * dedicated Block Copy block, so these two interrupts are now
432 * marked reserved. In case the Block Copy is resurrected in a
433 * future design, maintain the code that treats these two interrupts
436 * Write to clear all interrupts in the PCI status register, aside
437 * from BC0F and BC1F.
439 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
441 /* Setup address that is to appear on PCI bus */
442 preg
->config_addr
= BPCI_CFGADDR_ENABLE
|
443 (bus_num
<< BPCI_CFGADDR_BUSNUM_SHF
) |
444 (dev_fn
<< BPCI_CFGADDR_FUNCTNUM_SHF
) |
447 /* IF access is a PCI configuration write */
448 if (access_type
== PCI_ACCESS_WRITE
) {
449 value
= cpu_to_le32(*data
);
450 *PCI_CONFIG_SPACE_REG
= value
;
452 /* ELSE access is a PCI configuration read */
453 value
= le32_to_cpu(*PCI_CONFIG_SPACE_REG
);
458 * Check if the PCI configuration cycle (rd or wr) succeeded, by
459 * checking the status bits for errors like master or target abort.
461 intr
= preg
->if_status
;
463 /* Clear config access */
464 preg
->config_addr
= 0;
466 /* IF error occurred */
467 if (intr
& ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
)) {
468 /* Clear status bits */
469 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
471 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
473 local_irq_restore(flags
);
475 spin_unlock_irqrestore(&bpci_lock
, flags
);
481 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
483 local_irq_restore(flags
);
485 spin_unlock_irqrestore(&bpci_lock
, flags
);
488 return PCIBIOS_SUCCESSFUL
;
491 /*****************************************************************************
493 * FUNCTION: msp_pcibios_read_config_byte
494 * _________________________________________________________________________
496 * DESCRIPTION: Read a byte from PCI configuration address spac
497 * Since the hardware can't address 8 bit chunks
498 * directly, read a 32-bit chunk, then mask off extraneous
501 * INPUTS bus - structure containing attributes for the PCI bus
502 * that the read is destined for.
503 * devfn - device/function combination that the read is
505 * where - register within the Configuration Header space
508 * OUTPUTS val - read data
510 * RETURNS: PCIBIOS_SUCCESSFUL - success
511 * -1 - read access failure
513 ****************************************************************************/
515 msp_pcibios_read_config_byte(struct pci_bus
*bus
,
523 * If the config access did not complete normally (e.g., underwent
524 * master abort) do the PCI compliant thing, which is to supply an
527 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
533 *val
= (data
>> ((where
& 3) << 3)) & 0x0ff;
535 return PCIBIOS_SUCCESSFUL
;
538 /*****************************************************************************
540 * FUNCTION: msp_pcibios_read_config_word
541 * _________________________________________________________________________
543 * DESCRIPTION: Read a word (16 bits) from PCI configuration address space.
544 * Since the hardware can't address 16 bit chunks
545 * directly, read a 32-bit chunk, then mask off extraneous
548 * INPUTS bus - structure containing attributes for the PCI bus
549 * that the read is destined for.
550 * devfn - device/function combination that the read is
552 * where - register within the Configuration Header space
555 * OUTPUTS val - read data
557 * RETURNS: PCIBIOS_SUCCESSFUL - success
558 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
559 * -1 - read access failure
561 ****************************************************************************/
563 msp_pcibios_read_config_word(struct pci_bus
*bus
,
570 /* if (where & 1) */ /* Commented out non-compliant code.
571 * Should allow word access to configuration
572 * registers, with only exception being when
573 * the word access would wrap around into
576 if ((where
& 3) == 3) {
578 return PCIBIOS_BAD_REGISTER_NUMBER
;
582 * If the config access did not complete normally (e.g., underwent
583 * master abort) do the PCI compliant thing, which is to supply an
586 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
592 *val
= (data
>> ((where
& 3) << 3)) & 0x0ffff;
594 return PCIBIOS_SUCCESSFUL
;
597 /*****************************************************************************
599 * FUNCTION: msp_pcibios_read_config_dword
600 * _________________________________________________________________________
602 * DESCRIPTION: Read a double word (32 bits) from PCI configuration
605 * INPUTS bus - structure containing attributes for the PCI bus
606 * that the read is destined for.
607 * devfn - device/function combination that the read is
609 * where - register within the Configuration Header space
612 * OUTPUTS val - read data
614 * RETURNS: PCIBIOS_SUCCESSFUL - success
615 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
616 * -1 - read access failure
618 ****************************************************************************/
620 msp_pcibios_read_config_dword(struct pci_bus
*bus
,
627 /* Address must be dword aligned. */
630 return PCIBIOS_BAD_REGISTER_NUMBER
;
634 * If the config access did not complete normally (e.g., underwent
635 * master abort) do the PCI compliant thing, which is to supply an
638 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
646 return PCIBIOS_SUCCESSFUL
;
649 /*****************************************************************************
651 * FUNCTION: msp_pcibios_write_config_byte
652 * _________________________________________________________________________
654 * DESCRIPTION: Write a byte to PCI configuration address space.
655 * Since the hardware can't address 8 bit chunks
656 * directly, a read-modify-write is performed.
658 * INPUTS bus - structure containing attributes for the PCI bus
659 * that the write is destined for.
660 * devfn - device/function combination that the write is
662 * where - register within the Configuration Header space
664 * val - value to write
668 * RETURNS: PCIBIOS_SUCCESSFUL - success
669 * -1 - write access failure
671 ****************************************************************************/
673 msp_pcibios_write_config_byte(struct pci_bus
*bus
,
680 /* read config space */
681 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
685 /* modify the byte within the dword */
686 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
687 (val
<< ((where
& 3) << 3));
689 /* write back the full dword */
690 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
694 return PCIBIOS_SUCCESSFUL
;
697 /*****************************************************************************
699 * FUNCTION: msp_pcibios_write_config_word
700 * _________________________________________________________________________
702 * DESCRIPTION: Write a word (16-bits) to PCI configuration address space.
703 * Since the hardware can't address 16 bit chunks
704 * directly, a read-modify-write is performed.
706 * INPUTS bus - structure containing attributes for the PCI bus
707 * that the write is destined for.
708 * devfn - device/function combination that the write is
710 * where - register within the Configuration Header space
712 * val - value to write
716 * RETURNS: PCIBIOS_SUCCESSFUL - success
717 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
718 * -1 - write access failure
720 ****************************************************************************/
722 msp_pcibios_write_config_word(struct pci_bus
*bus
,
729 /* Fixed non-compliance: if (where & 1) */
730 if ((where
& 3) == 3)
731 return PCIBIOS_BAD_REGISTER_NUMBER
;
733 /* read config space */
734 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
738 /* modify the word within the dword */
739 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
740 (val
<< ((where
& 3) << 3));
742 /* write back the full dword */
743 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
747 return PCIBIOS_SUCCESSFUL
;
750 /*****************************************************************************
752 * FUNCTION: msp_pcibios_write_config_dword
753 * _________________________________________________________________________
755 * DESCRIPTION: Write a double word (32-bits) to PCI configuration address
758 * INPUTS bus - structure containing attributes for the PCI bus
759 * that the write is destined for.
760 * devfn - device/function combination that the write is
762 * where - register within the Configuration Header space
764 * val - value to write
768 * RETURNS: PCIBIOS_SUCCESSFUL - success
769 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
770 * -1 - write access failure
772 ****************************************************************************/
774 msp_pcibios_write_config_dword(struct pci_bus
*bus
,
779 /* check that address is dword aligned */
781 return PCIBIOS_BAD_REGISTER_NUMBER
;
784 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
788 return PCIBIOS_SUCCESSFUL
;
791 /*****************************************************************************
793 * FUNCTION: msp_pcibios_read_config
794 * _________________________________________________________________________
796 * DESCRIPTION: Interface the PCI configuration read request with
797 * the appropriate function, based on how many bytes
798 * the read request is.
800 * INPUTS bus - structure containing attributes for the PCI bus
801 * that the write is destined for.
802 * devfn - device/function combination that the write is
804 * where - register within the Configuration Header space
806 * size - in units of bytes, should be 1, 2, or 4.
808 * OUTPUTS val - value read, with any extraneous bytes masked
811 * RETURNS: PCIBIOS_SUCCESSFUL - success
814 ****************************************************************************/
816 msp_pcibios_read_config(struct pci_bus
*bus
,
823 if (msp_pcibios_read_config_byte(bus
, devfn
, where
, val
)) {
826 } else if (size
== 2) {
827 if (msp_pcibios_read_config_word(bus
, devfn
, where
, val
)) {
830 } else if (size
== 4) {
831 if (msp_pcibios_read_config_dword(bus
, devfn
, where
, val
)) {
839 return PCIBIOS_SUCCESSFUL
;
842 /*****************************************************************************
844 * FUNCTION: msp_pcibios_write_config
845 * _________________________________________________________________________
847 * DESCRIPTION: Interface the PCI configuration write request with
848 * the appropriate function, based on how many bytes
849 * the read request is.
851 * INPUTS bus - structure containing attributes for the PCI bus
852 * that the write is destined for.
853 * devfn - device/function combination that the write is
855 * where - register within the Configuration Header space
857 * size - in units of bytes, should be 1, 2, or 4.
858 * val - value to write
862 * RETURNS: PCIBIOS_SUCCESSFUL - success
865 ****************************************************************************/
867 msp_pcibios_write_config(struct pci_bus
*bus
,
874 if (msp_pcibios_write_config_byte(bus
, devfn
,
875 where
, (u8
)(0xFF & val
))) {
878 } else if (size
== 2) {
879 if (msp_pcibios_write_config_word(bus
, devfn
,
880 where
, (u16
)(0xFFFF & val
))) {
883 } else if (size
== 4) {
884 if (msp_pcibios_write_config_dword(bus
, devfn
, where
, val
)) {
891 return PCIBIOS_SUCCESSFUL
;
894 /*****************************************************************************
896 * STRUCTURE: msp_pci_ops
897 * _________________________________________________________________________
899 * DESCRIPTION: structure to abstract the hardware specific PCI
900 * configuration accesses.
903 * read - function for Linux to generate PCI Configuration reads.
904 * write - function for Linux to generate PCI Configuration writes.
906 ****************************************************************************/
907 struct pci_ops msp_pci_ops
= {
908 .read
= msp_pcibios_read_config
,
909 .write
= msp_pcibios_write_config
912 /*****************************************************************************
914 * STRUCTURE: msp_pci_controller
915 * _________________________________________________________________________
917 * Describes the attributes of the MSP7120 PCI Host Controller
920 * pci_ops - abstracts the hardware specific PCI configuration
923 * mem_resource - address range pciauto() uses to assign to PCI device
926 * mem_offset - offset between how MSP7120 outbound PCI memory
927 * transaction addresses appear on the PCI bus and how Linux
928 * wants to configure memory BARs of the PCI devices.
929 * MSP7120 does nothing funky, so just set to zero.
931 * io_resource - address range pciauto() uses to assign to PCI device
934 * io_offset - offset between how MSP7120 outbound PCI I/O
935 * transaction addresses appear on the PCI bus and how
936 * Linux defaults to configure I/O BARs of the PCI devices.
937 * MSP7120 maps outbound I/O accesses into the bottom
938 * bottom 4K of PCI address space (and ignores OATRAN).
939 * Since the Linux default is to configure I/O BARs to the
940 * bottom 4K, no special offset is needed. Just set to zero.
942 ****************************************************************************/
943 static struct pci_controller msp_pci_controller
= {
944 .pci_ops
= &msp_pci_ops
,
945 .mem_resource
= &pci_mem_resource
,
947 .io_map_base
= MSP_PCI_IOSPACE_BASE
,
948 .io_resource
= &pci_io_resource
,
952 /*****************************************************************************
954 * FUNCTION: msp_pci_init
955 * _________________________________________________________________________
957 * DESCRIPTION: Initialize the PCI Host Controller and register it with
958 * Linux so Linux can seize control of the PCI bus.
960 ****************************************************************************/
961 void __init
msp_pci_init(void)
963 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
966 /* Extract Device ID */
967 id
= read_reg32(PCI_JTAG_DEVID_REG
, 0xFFFF) >> 12;
969 /* Check if JTAG ID identifies MSP7120 */
970 if (!MSP_HAS_PCI(id
)) {
971 printk(KERN_WARNING
"PCI: No PCI; id reads as %x\n", id
);
976 * Enable flushing of the PCI-SDRAM queue upon a read
977 * of the SDRAM's Memory Configuration Register.
979 *(unsigned long *)QFLUSH_REG_1
= 3;
981 /* Configure PCI Host Controller. */
982 preg
->if_status
= ~0; /* Clear cause register bits */
983 preg
->config_addr
= 0; /* Clear config access */
984 preg
->oatran
= MSP_PCI_OATRAN
; /* PCI outbound addr translation */
985 preg
->if_mask
= 0xF8BF87C0; /* Enable all PCI status interrupts */
987 /* configure so inb(), outb(), and family are functional */
988 set_io_port_base(MSP_PCI_IOSPACE_BASE
);
990 /* Tell Linux the details of the MSP7120 PCI Host Controller */
991 register_pci_controller(&msp_pci_controller
);
996 /* Disable PCI channel */
997 printk(KERN_WARNING
"PCI: no host PCI bus detected\n");