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@linux-m68k.org>
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: show_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: m - synthetic file construction data
68 ****************************************************************************/
69 static int show_msp_pci_counts(struct seq_file
*m
, void *v
)
72 unsigned int intcount
, total
= 0;
74 for (i
= 0; i
< 32; ++i
) {
75 intcount
= pci_int_count
[i
];
77 seq_printf(m
, "[%d] = %u\n", i
, intcount
);
82 seq_printf(m
, "total = %u\n", total
);
86 static int msp_pci_rd_cnt_open(struct inode
*inode
, struct file
*file
)
88 return single_open(file
, show_msp_pci_counts
, NULL
);
91 static const struct file_operations msp_pci_rd_cnt_fops
= {
92 .open
= msp_pci_rd_cnt_open
,
95 .release
= single_release
,
98 /*****************************************************************************
100 * FUNCTION: gen_pci_cfg_wr_show
101 * _________________________________________________________________________
103 * DESCRIPTION: Generates a configuration write cycle for debug purposes.
104 * The IDSEL line asserted and location and data written are
105 * immaterial. Just want to be able to prove that a
106 * configuration write can be correctly generated on the
107 * PCI bus. Intent is that this function by invocable from
108 * the /proc filesystem.
110 * INPUTS: m - synthetic file construction data
113 * RETURNS: 0 or error
115 ****************************************************************************/
116 static int gen_pci_cfg_wr_show(struct seq_file
*m
, void *v
)
118 unsigned char where
= 0; /* Write to static Device/Vendor ID */
119 unsigned char bus_num
= 0; /* Bus 0 */
120 unsigned char dev_fn
= 0xF; /* Arbitrary device number */
121 u32 wr_data
= 0xFF00AA00; /* Arbitrary data */
122 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
126 seq_puts(m
, "PMC MSP PCI: Beginning\n");
128 if (proc_init
== 0) {
133 seq_puts(m
, "PMC MSP PCI: Before Cfg Wr\n");
136 * Generate PCI Configuration Write Cycle
139 /* Clear cause register bits */
140 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
142 /* Setup address that is to appear on PCI bus */
143 preg
->config_addr
= BPCI_CFGADDR_ENABLE
|
144 (bus_num
<< BPCI_CFGADDR_BUSNUM_SHF
) |
145 (dev_fn
<< BPCI_CFGADDR_FUNCTNUM_SHF
) |
148 value
= cpu_to_le32(wr_data
);
150 /* Launch the PCI configuration write cycle */
151 *PCI_CONFIG_SPACE_REG
= value
;
154 * Check if the PCI configuration cycle (rd or wr) succeeded, by
155 * checking the status bits for errors like master or target abort.
157 intr
= preg
->if_status
;
159 seq_puts(m
, "PMC MSP PCI: After Cfg Wr\n");
163 static int gen_pci_cfg_wr_open(struct inode
*inode
, struct file
*file
)
165 return single_open(file
, gen_pci_cfg_wr_show
, NULL
);
168 static const struct file_operations gen_pci_cfg_wr_fops
= {
169 .open
= gen_pci_cfg_wr_open
,
172 .release
= single_release
,
175 /*****************************************************************************
177 * FUNCTION: pci_proc_init
178 * _________________________________________________________________________
180 * DESCRIPTION: Create entries in the /proc filesystem for debug access.
188 ****************************************************************************/
189 static void pci_proc_init(void)
191 proc_create("pmc_msp_pci_rd_cnt", 0, NULL
, &msp_pci_rd_cnt_fops
);
192 proc_create("pmc_msp_pci_cfg_wr", 0, NULL
, &gen_pci_cfg_wr_fops
);
194 #endif /* CONFIG_PROC_FS && PCI_COUNTERS */
196 /*****************************************************************************
198 * STRUCT: pci_io_resource
199 * _________________________________________________________________________
201 * DESCRIPTION: Defines the address range that pciauto() will use to
202 * assign to the I/O BARs of PCI devices.
204 * Use the start and end addresses of the MSP7120 PCI Host
205 * Controller I/O space, in the form that they appear on the
206 * PCI bus AFTER MSP7120 has performed address translation.
208 * For I/O accesses, MSP7120 ignores OATRAN and maps I/O
209 * accesses into the bottom 0xFFF region of address space,
210 * so that is the range to put into the pci_io_resource
213 * In MSP4200, the start address was 0x04 instead of the
214 * expected 0x00. Will just assume there was a good reason
217 * NOTES: Linux, by default, will assign I/O space to the lowest
218 * region of address space. Since MSP7120 and Linux,
219 * by default, have no offset in between how they map, the
220 * io_offset element of pci_controller struct should be set
223 * name - String used for a meaningful name.
225 * start - Start address of MSP7120's I/O space, as MSP7120 presents
226 * the address on the PCI bus.
228 * end - End address of MSP7120's I/O space, as MSP7120 presents
229 * the address on the PCI bus.
231 * flags - Attributes indicating the type of resource. In this case,
232 * indicate I/O space.
234 ****************************************************************************/
235 static struct resource pci_io_resource
= {
236 .name
= "pci IO space",
239 .flags
= IORESOURCE_IO
/* I/O space */
242 /*****************************************************************************
244 * STRUCT: pci_mem_resource
245 * _________________________________________________________________________
247 * DESCRIPTION: Defines the address range that pciauto() will use to
248 * assign to the memory BARs of PCI devices.
250 * The .start and .end values are dependent upon how address
251 * translation is performed by the OATRAN regiser.
253 * The values to use for .start and .end are the values
254 * in the form they appear on the PCI bus AFTER MSP7120 has
255 * performed OATRAN address translation.
258 * name - String used for a meaningful name.
260 * start - Start address of MSP7120's memory space, as MSP7120 presents
261 * the address on the PCI bus.
263 * end - End address of MSP7120's memory space, as MSP7120 presents
264 * the address on the PCI bus.
266 * flags - Attributes indicating the type of resource. In this case,
267 * indicate memory space.
269 ****************************************************************************/
270 static struct resource pci_mem_resource
= {
271 .name
= "pci memory space",
272 .start
= MSP_PCI_SPACE_BASE
,
273 .end
= MSP_PCI_SPACE_END
,
274 .flags
= IORESOURCE_MEM
/* memory space */
277 /*****************************************************************************
279 * FUNCTION: bpci_interrupt
280 * _________________________________________________________________________
282 * DESCRIPTION: PCI status interrupt handler. Updates the count of how
283 * many times each status bit has been set, then clears
284 * the status bits. If the appropriate macros are defined,
285 * these counts can be viewed via the /proc filesystem.
287 * INPUTS: irq - unused
293 * RETURNS: PCIBIOS_SUCCESSFUL - success
295 ****************************************************************************/
296 static irqreturn_t
bpci_interrupt(int irq
, void *dev_id
)
298 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
299 unsigned int stat
= preg
->if_status
;
301 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
303 for (i
= 0; i
< 32; ++i
) {
307 #endif /* PROC_FS && PCI_COUNTERS */
309 /* printk("PCI ISR: Status=%08X\n", stat); */
311 /* write to clear all asserted interrupts */
312 preg
->if_status
= stat
;
317 /*****************************************************************************
319 * FUNCTION: msp_pcibios_config_access
320 * _________________________________________________________________________
322 * DESCRIPTION: Performs a PCI configuration access (rd or wr), then
323 * checks that the access succeeded by querying MSP7120's
327 * access_type - kind of PCI configuration cycle to perform
328 * (read or write). Legal values are
329 * PCI_ACCESS_WRITE and PCI_ACCESS_READ.
331 * bus - pointer to the bus number of the device to
332 * be targeted for the configuration cycle.
333 * The only element of the pci_bus structure
334 * used is bus->number. This argument determines
335 * if the configuration access will be Type 0 or
336 * Type 1. Since MSP7120 assumes itself to be the
337 * PCI Host, any non-zero bus->number generates
340 * devfn - this is an 8-bit field. The lower three bits
341 * specify the function number of the device to
342 * be targeted for the configuration cycle, with
343 * all three-bit combinations being legal. The
344 * upper five bits specify the device number,
345 * with legal values being 10 to 31.
347 * where - address within the Configuration Header
350 * data - for write accesses, contains the data to
354 * data - for read accesses, contains the value read.
356 * RETURNS: PCIBIOS_SUCCESSFUL - success
357 * -1 - access failure
359 ****************************************************************************/
360 int msp_pcibios_config_access(unsigned char access_type
,
366 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
367 unsigned char bus_num
= bus
->number
;
368 unsigned char dev_fn
= (unsigned char)devfn
;
371 static char pciirqflag
;
373 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
374 unsigned int vpe_status
;
377 #if defined(CONFIG_PROC_FS) && defined(PCI_COUNTERS)
378 if (proc_init
== 0) {
382 #endif /* CONFIG_PROC_FS && PCI_COUNTERS */
385 * Just the first time this function invokes, allocate
386 * an interrupt line for PCI host status interrupts. The
387 * allocation assigns an interrupt handler to the interrupt.
389 if (pciirqflag
== 0) {
390 ret
= request_irq(MSP_INT_PCI
,/* Hardcoded internal MSP7120 wiring */
400 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
405 * Clear PCI cause register bits.
407 * In Polo, the PCI Host had a dedicated DMA called the
408 * Block Copy (not to be confused with the general purpose Block
409 * Copy Engine block). There appear to have been special interrupts
410 * for this Block Copy, called Block Copy 0 Fault (BC0F) and
411 * Block Copy 1 Fault (BC1F). MSP4200 and MSP7120 don't have this
412 * dedicated Block Copy block, so these two interrupts are now
413 * marked reserved. In case the Block Copy is resurrected in a
414 * future design, maintain the code that treats these two interrupts
417 * Write to clear all interrupts in the PCI status register, aside
418 * from BC0F and BC1F.
420 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
422 /* Setup address that is to appear on PCI bus */
423 preg
->config_addr
= BPCI_CFGADDR_ENABLE
|
424 (bus_num
<< BPCI_CFGADDR_BUSNUM_SHF
) |
425 (dev_fn
<< BPCI_CFGADDR_FUNCTNUM_SHF
) |
428 /* IF access is a PCI configuration write */
429 if (access_type
== PCI_ACCESS_WRITE
) {
430 value
= cpu_to_le32(*data
);
431 *PCI_CONFIG_SPACE_REG
= value
;
433 /* ELSE access is a PCI configuration read */
434 value
= le32_to_cpu(*PCI_CONFIG_SPACE_REG
);
439 * Check if the PCI configuration cycle (rd or wr) succeeded, by
440 * checking the status bits for errors like master or target abort.
442 intr
= preg
->if_status
;
444 /* Clear config access */
445 preg
->config_addr
= 0;
447 /* IF error occurred */
448 if (intr
& ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
)) {
449 /* Clear status bits */
450 preg
->if_status
= ~(BPCI_IFSTATUS_BC0F
| BPCI_IFSTATUS_BC1F
);
452 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
459 #if defined(CONFIG_PMC_MSP7120_GW) || defined(CONFIG_PMC_MSP7120_EVAL)
463 return PCIBIOS_SUCCESSFUL
;
466 /*****************************************************************************
468 * FUNCTION: msp_pcibios_read_config_byte
469 * _________________________________________________________________________
471 * DESCRIPTION: Read a byte from PCI configuration address spac
472 * Since the hardware can't address 8 bit chunks
473 * directly, read a 32-bit chunk, then mask off extraneous
476 * INPUTS bus - structure containing attributes for the PCI bus
477 * that the read is destined for.
478 * devfn - device/function combination that the read is
480 * where - register within the Configuration Header space
483 * OUTPUTS val - read data
485 * RETURNS: PCIBIOS_SUCCESSFUL - success
486 * -1 - read access failure
488 ****************************************************************************/
490 msp_pcibios_read_config_byte(struct pci_bus
*bus
,
498 * If the config access did not complete normally (e.g., underwent
499 * master abort) do the PCI compliant thing, which is to supply an
502 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
508 *val
= (data
>> ((where
& 3) << 3)) & 0x0ff;
510 return PCIBIOS_SUCCESSFUL
;
513 /*****************************************************************************
515 * FUNCTION: msp_pcibios_read_config_word
516 * _________________________________________________________________________
518 * DESCRIPTION: Read a word (16 bits) from PCI configuration address space.
519 * Since the hardware can't address 16 bit chunks
520 * directly, read a 32-bit chunk, then mask off extraneous
523 * INPUTS bus - structure containing attributes for the PCI bus
524 * that the read is destined for.
525 * devfn - device/function combination that the read is
527 * where - register within the Configuration Header space
530 * OUTPUTS val - read data
532 * RETURNS: PCIBIOS_SUCCESSFUL - success
533 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
534 * -1 - read access failure
536 ****************************************************************************/
538 msp_pcibios_read_config_word(struct pci_bus
*bus
,
545 /* if (where & 1) */ /* Commented out non-compliant code.
546 * Should allow word access to configuration
547 * registers, with only exception being when
548 * the word access would wrap around into
551 if ((where
& 3) == 3) {
553 return PCIBIOS_BAD_REGISTER_NUMBER
;
557 * If the config access did not complete normally (e.g., underwent
558 * master abort) do the PCI compliant thing, which is to supply an
561 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
567 *val
= (data
>> ((where
& 3) << 3)) & 0x0ffff;
569 return PCIBIOS_SUCCESSFUL
;
572 /*****************************************************************************
574 * FUNCTION: msp_pcibios_read_config_dword
575 * _________________________________________________________________________
577 * DESCRIPTION: Read a double word (32 bits) from PCI configuration
580 * INPUTS bus - structure containing attributes for the PCI bus
581 * that the read is destined for.
582 * devfn - device/function combination that the read is
584 * where - register within the Configuration Header space
587 * OUTPUTS val - read data
589 * RETURNS: PCIBIOS_SUCCESSFUL - success
590 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
591 * -1 - read access failure
593 ****************************************************************************/
595 msp_pcibios_read_config_dword(struct pci_bus
*bus
,
602 /* Address must be dword aligned. */
605 return PCIBIOS_BAD_REGISTER_NUMBER
;
609 * If the config access did not complete normally (e.g., underwent
610 * master abort) do the PCI compliant thing, which is to supply an
613 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
621 return PCIBIOS_SUCCESSFUL
;
624 /*****************************************************************************
626 * FUNCTION: msp_pcibios_write_config_byte
627 * _________________________________________________________________________
629 * DESCRIPTION: Write a byte to PCI configuration address space.
630 * Since the hardware can't address 8 bit chunks
631 * directly, a read-modify-write is performed.
633 * INPUTS bus - structure containing attributes for the PCI bus
634 * that the write is destined for.
635 * devfn - device/function combination that the write is
637 * where - register within the Configuration Header space
639 * val - value to write
643 * RETURNS: PCIBIOS_SUCCESSFUL - success
644 * -1 - write access failure
646 ****************************************************************************/
648 msp_pcibios_write_config_byte(struct pci_bus
*bus
,
655 /* read config space */
656 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
660 /* modify the byte within the dword */
661 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
662 (val
<< ((where
& 3) << 3));
664 /* write back the full dword */
665 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
669 return PCIBIOS_SUCCESSFUL
;
672 /*****************************************************************************
674 * FUNCTION: msp_pcibios_write_config_word
675 * _________________________________________________________________________
677 * DESCRIPTION: Write a word (16-bits) to PCI configuration address space.
678 * Since the hardware can't address 16 bit chunks
679 * directly, a read-modify-write is performed.
681 * INPUTS bus - structure containing attributes for the PCI bus
682 * that the write is destined for.
683 * devfn - device/function combination that the write is
685 * where - register within the Configuration Header space
687 * val - value to write
691 * RETURNS: PCIBIOS_SUCCESSFUL - success
692 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
693 * -1 - write access failure
695 ****************************************************************************/
697 msp_pcibios_write_config_word(struct pci_bus
*bus
,
704 /* Fixed non-compliance: if (where & 1) */
705 if ((where
& 3) == 3)
706 return PCIBIOS_BAD_REGISTER_NUMBER
;
708 /* read config space */
709 if (msp_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
713 /* modify the word within the dword */
714 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
715 (val
<< ((where
& 3) << 3));
717 /* write back the full dword */
718 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
722 return PCIBIOS_SUCCESSFUL
;
725 /*****************************************************************************
727 * FUNCTION: msp_pcibios_write_config_dword
728 * _________________________________________________________________________
730 * DESCRIPTION: Write a double word (32-bits) to PCI configuration address
733 * INPUTS bus - structure containing attributes for the PCI bus
734 * that the write is destined for.
735 * devfn - device/function combination that the write is
737 * where - register within the Configuration Header space
739 * val - value to write
743 * RETURNS: PCIBIOS_SUCCESSFUL - success
744 * PCIBIOS_BAD_REGISTER_NUMBER - bad register address
745 * -1 - write access failure
747 ****************************************************************************/
749 msp_pcibios_write_config_dword(struct pci_bus
*bus
,
754 /* check that address is dword aligned */
756 return PCIBIOS_BAD_REGISTER_NUMBER
;
759 if (msp_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
,
763 return PCIBIOS_SUCCESSFUL
;
766 /*****************************************************************************
768 * FUNCTION: msp_pcibios_read_config
769 * _________________________________________________________________________
771 * DESCRIPTION: Interface the PCI configuration read request with
772 * the appropriate function, based on how many bytes
773 * the read request is.
775 * INPUTS bus - structure containing attributes for the PCI bus
776 * that the write is destined for.
777 * devfn - device/function combination that the write is
779 * where - register within the Configuration Header space
781 * size - in units of bytes, should be 1, 2, or 4.
783 * OUTPUTS val - value read, with any extraneous bytes masked
786 * RETURNS: PCIBIOS_SUCCESSFUL - success
789 ****************************************************************************/
791 msp_pcibios_read_config(struct pci_bus
*bus
,
798 if (msp_pcibios_read_config_byte(bus
, devfn
, where
, val
)) {
801 } else if (size
== 2) {
802 if (msp_pcibios_read_config_word(bus
, devfn
, where
, val
)) {
805 } else if (size
== 4) {
806 if (msp_pcibios_read_config_dword(bus
, devfn
, where
, val
)) {
814 return PCIBIOS_SUCCESSFUL
;
817 /*****************************************************************************
819 * FUNCTION: msp_pcibios_write_config
820 * _________________________________________________________________________
822 * DESCRIPTION: Interface the PCI configuration write request with
823 * the appropriate function, based on how many bytes
824 * the read request is.
826 * INPUTS bus - structure containing attributes for the PCI bus
827 * that the write is destined for.
828 * devfn - device/function combination that the write is
830 * where - register within the Configuration Header space
832 * size - in units of bytes, should be 1, 2, or 4.
833 * val - value to write
837 * RETURNS: PCIBIOS_SUCCESSFUL - success
840 ****************************************************************************/
842 msp_pcibios_write_config(struct pci_bus
*bus
,
849 if (msp_pcibios_write_config_byte(bus
, devfn
,
850 where
, (u8
)(0xFF & val
))) {
853 } else if (size
== 2) {
854 if (msp_pcibios_write_config_word(bus
, devfn
,
855 where
, (u16
)(0xFFFF & val
))) {
858 } else if (size
== 4) {
859 if (msp_pcibios_write_config_dword(bus
, devfn
, where
, val
)) {
866 return PCIBIOS_SUCCESSFUL
;
869 /*****************************************************************************
871 * STRUCTURE: msp_pci_ops
872 * _________________________________________________________________________
874 * DESCRIPTION: structure to abstract the hardware specific PCI
875 * configuration accesses.
878 * read - function for Linux to generate PCI Configuration reads.
879 * write - function for Linux to generate PCI Configuration writes.
881 ****************************************************************************/
882 struct pci_ops msp_pci_ops
= {
883 .read
= msp_pcibios_read_config
,
884 .write
= msp_pcibios_write_config
887 /*****************************************************************************
889 * STRUCTURE: msp_pci_controller
890 * _________________________________________________________________________
892 * Describes the attributes of the MSP7120 PCI Host Controller
895 * pci_ops - abstracts the hardware specific PCI configuration
898 * mem_resource - address range pciauto() uses to assign to PCI device
901 * mem_offset - offset between how MSP7120 outbound PCI memory
902 * transaction addresses appear on the PCI bus and how Linux
903 * wants to configure memory BARs of the PCI devices.
904 * MSP7120 does nothing funky, so just set to zero.
906 * io_resource - address range pciauto() uses to assign to PCI device
909 * io_offset - offset between how MSP7120 outbound PCI I/O
910 * transaction addresses appear on the PCI bus and how
911 * Linux defaults to configure I/O BARs of the PCI devices.
912 * MSP7120 maps outbound I/O accesses into the bottom
913 * bottom 4K of PCI address space (and ignores OATRAN).
914 * Since the Linux default is to configure I/O BARs to the
915 * bottom 4K, no special offset is needed. Just set to zero.
917 ****************************************************************************/
918 static struct pci_controller msp_pci_controller
= {
919 .pci_ops
= &msp_pci_ops
,
920 .mem_resource
= &pci_mem_resource
,
922 .io_map_base
= MSP_PCI_IOSPACE_BASE
,
923 .io_resource
= &pci_io_resource
,
927 /*****************************************************************************
929 * FUNCTION: msp_pci_init
930 * _________________________________________________________________________
932 * DESCRIPTION: Initialize the PCI Host Controller and register it with
933 * Linux so Linux can seize control of the PCI bus.
935 ****************************************************************************/
936 void __init
msp_pci_init(void)
938 struct msp_pci_regs
*preg
= (void *)PCI_BASE_REG
;
941 /* Extract Device ID */
942 id
= read_reg32(PCI_JTAG_DEVID_REG
, 0xFFFF) >> 12;
944 /* Check if JTAG ID identifies MSP7120 */
945 if (!MSP_HAS_PCI(id
)) {
946 printk(KERN_WARNING
"PCI: No PCI; id reads as %x\n", id
);
951 * Enable flushing of the PCI-SDRAM queue upon a read
952 * of the SDRAM's Memory Configuration Register.
954 *(unsigned long *)QFLUSH_REG_1
= 3;
956 /* Configure PCI Host Controller. */
957 preg
->if_status
= ~0; /* Clear cause register bits */
958 preg
->config_addr
= 0; /* Clear config access */
959 preg
->oatran
= MSP_PCI_OATRAN
; /* PCI outbound addr translation */
960 preg
->if_mask
= 0xF8BF87C0; /* Enable all PCI status interrupts */
962 /* configure so inb(), outb(), and family are functional */
963 set_io_port_base(MSP_PCI_IOSPACE_BASE
);
965 /* Tell Linux the details of the MSP7120 PCI Host Controller */
966 register_pci_controller(&msp_pci_controller
);
971 /* Disable PCI channel */
972 printk(KERN_WARNING
"PCI: no host PCI bus detected\n");