diff options
Diffstat (limited to 'drivers')
185 files changed, 11497 insertions, 3203 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig index bddf431bbb72..9f5c0da57c90 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig | |||
@@ -70,4 +70,6 @@ source "drivers/sn/Kconfig" | |||
70 | 70 | ||
71 | source "drivers/edac/Kconfig" | 71 | source "drivers/edac/Kconfig" |
72 | 72 | ||
73 | source "drivers/rtc/Kconfig" | ||
74 | |||
73 | endmenu | 75 | endmenu |
diff --git a/drivers/Makefile b/drivers/Makefile index 5c69b86db624..424955274e60 100644 --- a/drivers/Makefile +++ b/drivers/Makefile | |||
@@ -56,6 +56,7 @@ obj-$(CONFIG_USB_GADGET) += usb/gadget/ | |||
56 | obj-$(CONFIG_GAMEPORT) += input/gameport/ | 56 | obj-$(CONFIG_GAMEPORT) += input/gameport/ |
57 | obj-$(CONFIG_INPUT) += input/ | 57 | obj-$(CONFIG_INPUT) += input/ |
58 | obj-$(CONFIG_I2O) += message/ | 58 | obj-$(CONFIG_I2O) += message/ |
59 | obj-$(CONFIG_RTC_LIB) += rtc/ | ||
59 | obj-$(CONFIG_I2C) += i2c/ | 60 | obj-$(CONFIG_I2C) += i2c/ |
60 | obj-$(CONFIG_W1) += w1/ | 61 | obj-$(CONFIG_W1) += w1/ |
61 | obj-$(CONFIG_HWMON) += hwmon/ | 62 | obj-$(CONFIG_HWMON) += hwmon/ |
diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c index 69f4c7ce9a63..cac09e353be8 100644 --- a/drivers/atm/lanai.c +++ b/drivers/atm/lanai.c | |||
@@ -1972,7 +1972,7 @@ static int __devinit lanai_pci_start(struct lanai_dev *lanai) | |||
1972 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1972 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1973 | return -EBUSY; | 1973 | return -EBUSY; |
1974 | } | 1974 | } |
1975 | if (pci_set_consistent_dma_mask(pci, 0xFFFFFFFF) != 0) { | 1975 | if (pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) != 0) { |
1976 | printk(KERN_WARNING DEV_LABEL | 1976 | printk(KERN_WARNING DEV_LABEL |
1977 | "(itf %d): No suitable DMA available.\n", lanai->number); | 1977 | "(itf %d): No suitable DMA available.\n", lanai->number); |
1978 | return -EBUSY; | 1978 | return -EBUSY; |
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index 105a0d61eb1f..dd547af4681a 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c | |||
@@ -47,16 +47,16 @@ static struct kset_uevent_ops memory_uevent_ops = { | |||
47 | .uevent = memory_uevent, | 47 | .uevent = memory_uevent, |
48 | }; | 48 | }; |
49 | 49 | ||
50 | static struct notifier_block *memory_chain; | 50 | static BLOCKING_NOTIFIER_HEAD(memory_chain); |
51 | 51 | ||
52 | int register_memory_notifier(struct notifier_block *nb) | 52 | int register_memory_notifier(struct notifier_block *nb) |
53 | { | 53 | { |
54 | return notifier_chain_register(&memory_chain, nb); | 54 | return blocking_notifier_chain_register(&memory_chain, nb); |
55 | } | 55 | } |
56 | 56 | ||
57 | void unregister_memory_notifier(struct notifier_block *nb) | 57 | void unregister_memory_notifier(struct notifier_block *nb) |
58 | { | 58 | { |
59 | notifier_chain_unregister(&memory_chain, nb); | 59 | blocking_notifier_chain_unregister(&memory_chain, nb); |
60 | } | 60 | } |
61 | 61 | ||
62 | /* | 62 | /* |
@@ -140,7 +140,7 @@ static ssize_t show_mem_state(struct sys_device *dev, char *buf) | |||
140 | 140 | ||
141 | static inline int memory_notify(unsigned long val, void *v) | 141 | static inline int memory_notify(unsigned long val, void *v) |
142 | { | 142 | { |
143 | return notifier_call_chain(&memory_chain, val, v); | 143 | return blocking_notifier_call_chain(&memory_chain, val, v); |
144 | } | 144 | } |
145 | 145 | ||
146 | /* | 146 | /* |
diff --git a/drivers/block/DAC960.c b/drivers/block/DAC960.c index 9bdea2a5cf0e..45bcda544880 100644 --- a/drivers/block/DAC960.c +++ b/drivers/block/DAC960.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include <linux/timer.h> | 41 | #include <linux/timer.h> |
42 | #include <linux/pci.h> | 42 | #include <linux/pci.h> |
43 | #include <linux/init.h> | 43 | #include <linux/init.h> |
44 | #include <linux/jiffies.h> | ||
44 | #include <linux/random.h> | 45 | #include <linux/random.h> |
45 | #include <asm/io.h> | 46 | #include <asm/io.h> |
46 | #include <asm/uaccess.h> | 47 | #include <asm/uaccess.h> |
@@ -311,11 +312,10 @@ static boolean DAC960_CreateAuxiliaryStructures(DAC960_Controller_T *Controller) | |||
311 | CommandsRemaining = CommandAllocationGroupSize; | 312 | CommandsRemaining = CommandAllocationGroupSize; |
312 | CommandGroupByteCount = | 313 | CommandGroupByteCount = |
313 | CommandsRemaining * CommandAllocationLength; | 314 | CommandsRemaining * CommandAllocationLength; |
314 | AllocationPointer = kmalloc(CommandGroupByteCount, GFP_ATOMIC); | 315 | AllocationPointer = kzalloc(CommandGroupByteCount, GFP_ATOMIC); |
315 | if (AllocationPointer == NULL) | 316 | if (AllocationPointer == NULL) |
316 | return DAC960_Failure(Controller, | 317 | return DAC960_Failure(Controller, |
317 | "AUXILIARY STRUCTURE CREATION"); | 318 | "AUXILIARY STRUCTURE CREATION"); |
318 | memset(AllocationPointer, 0, CommandGroupByteCount); | ||
319 | } | 319 | } |
320 | Command = (DAC960_Command_T *) AllocationPointer; | 320 | Command = (DAC960_Command_T *) AllocationPointer; |
321 | AllocationPointer += CommandAllocationLength; | 321 | AllocationPointer += CommandAllocationLength; |
@@ -2709,14 +2709,12 @@ DAC960_DetectController(struct pci_dev *PCI_Device, | |||
2709 | void __iomem *BaseAddress; | 2709 | void __iomem *BaseAddress; |
2710 | int i; | 2710 | int i; |
2711 | 2711 | ||
2712 | Controller = (DAC960_Controller_T *) | 2712 | Controller = kzalloc(sizeof(DAC960_Controller_T), GFP_ATOMIC); |
2713 | kmalloc(sizeof(DAC960_Controller_T), GFP_ATOMIC); | ||
2714 | if (Controller == NULL) { | 2713 | if (Controller == NULL) { |
2715 | DAC960_Error("Unable to allocate Controller structure for " | 2714 | DAC960_Error("Unable to allocate Controller structure for " |
2716 | "Controller at\n", NULL); | 2715 | "Controller at\n", NULL); |
2717 | return NULL; | 2716 | return NULL; |
2718 | } | 2717 | } |
2719 | memset(Controller, 0, sizeof(DAC960_Controller_T)); | ||
2720 | Controller->ControllerNumber = DAC960_ControllerCount; | 2718 | Controller->ControllerNumber = DAC960_ControllerCount; |
2721 | DAC960_Controllers[DAC960_ControllerCount++] = Controller; | 2719 | DAC960_Controllers[DAC960_ControllerCount++] = Controller; |
2722 | Controller->Bus = PCI_Device->bus->number; | 2720 | Controller->Bus = PCI_Device->bus->number; |
@@ -3657,8 +3655,8 @@ static void DAC960_V1_ProcessCompletedCommand(DAC960_Command_T *Command) | |||
3657 | (NewEnquiry->EventLogSequenceNumber != | 3655 | (NewEnquiry->EventLogSequenceNumber != |
3658 | OldEnquiry->EventLogSequenceNumber) || | 3656 | OldEnquiry->EventLogSequenceNumber) || |
3659 | Controller->MonitoringTimerCount == 0 || | 3657 | Controller->MonitoringTimerCount == 0 || |
3660 | (jiffies - Controller->SecondaryMonitoringTime | 3658 | time_after_eq(jiffies, Controller->SecondaryMonitoringTime |
3661 | >= DAC960_SecondaryMonitoringInterval)) | 3659 | + DAC960_SecondaryMonitoringInterval)) |
3662 | { | 3660 | { |
3663 | Controller->V1.NeedLogicalDriveInformation = true; | 3661 | Controller->V1.NeedLogicalDriveInformation = true; |
3664 | Controller->V1.NewEventLogSequenceNumber = | 3662 | Controller->V1.NewEventLogSequenceNumber = |
@@ -5643,8 +5641,8 @@ static void DAC960_MonitoringTimerFunction(unsigned long TimerData) | |||
5643 | unsigned int StatusChangeCounter = | 5641 | unsigned int StatusChangeCounter = |
5644 | Controller->V2.HealthStatusBuffer->StatusChangeCounter; | 5642 | Controller->V2.HealthStatusBuffer->StatusChangeCounter; |
5645 | boolean ForceMonitoringCommand = false; | 5643 | boolean ForceMonitoringCommand = false; |
5646 | if (jiffies - Controller->SecondaryMonitoringTime | 5644 | if (time_after(jiffies, Controller->SecondaryMonitoringTime |
5647 | > DAC960_SecondaryMonitoringInterval) | 5645 | + DAC960_SecondaryMonitoringInterval)) |
5648 | { | 5646 | { |
5649 | int LogicalDriveNumber; | 5647 | int LogicalDriveNumber; |
5650 | for (LogicalDriveNumber = 0; | 5648 | for (LogicalDriveNumber = 0; |
@@ -5672,8 +5670,8 @@ static void DAC960_MonitoringTimerFunction(unsigned long TimerData) | |||
5672 | ControllerInfo->ConsistencyChecksActive + | 5670 | ControllerInfo->ConsistencyChecksActive + |
5673 | ControllerInfo->RebuildsActive + | 5671 | ControllerInfo->RebuildsActive + |
5674 | ControllerInfo->OnlineExpansionsActive == 0 || | 5672 | ControllerInfo->OnlineExpansionsActive == 0 || |
5675 | jiffies - Controller->PrimaryMonitoringTime | 5673 | time_before(jiffies, Controller->PrimaryMonitoringTime |
5676 | < DAC960_MonitoringTimerInterval) && | 5674 | + DAC960_MonitoringTimerInterval)) && |
5677 | !ForceMonitoringCommand) | 5675 | !ForceMonitoringCommand) |
5678 | { | 5676 | { |
5679 | Controller->MonitoringTimer.expires = | 5677 | Controller->MonitoringTimer.expires = |
@@ -5810,8 +5808,8 @@ static void DAC960_Message(DAC960_MessageLevel_T MessageLevel, | |||
5810 | Controller->ProgressBufferLength = Length; | 5808 | Controller->ProgressBufferLength = Length; |
5811 | if (Controller->EphemeralProgressMessage) | 5809 | if (Controller->EphemeralProgressMessage) |
5812 | { | 5810 | { |
5813 | if (jiffies - Controller->LastProgressReportTime | 5811 | if (time_after_eq(jiffies, Controller->LastProgressReportTime |
5814 | >= DAC960_ProgressReportingInterval) | 5812 | + DAC960_ProgressReportingInterval)) |
5815 | { | 5813 | { |
5816 | printk("%sDAC960#%d: %s", DAC960_MessageLevelMap[MessageLevel], | 5814 | printk("%sDAC960#%d: %s", DAC960_MessageLevelMap[MessageLevel], |
5817 | Controller->ControllerNumber, Buffer); | 5815 | Controller->ControllerNumber, Buffer); |
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig index 875ae7699025..ae0949b3394f 100644 --- a/drivers/block/Kconfig +++ b/drivers/block/Kconfig | |||
@@ -383,8 +383,9 @@ config BLK_DEV_RAM | |||
383 | thus say N here. | 383 | thus say N here. |
384 | 384 | ||
385 | config BLK_DEV_RAM_COUNT | 385 | config BLK_DEV_RAM_COUNT |
386 | int "Default number of RAM disks" if BLK_DEV_RAM | 386 | int "Default number of RAM disks" |
387 | default "16" | 387 | default "16" |
388 | depends on BLK_DEV_RAM | ||
388 | help | 389 | help |
389 | The default value is 16 RAM disks. Change this if you know what | 390 | The default value is 16 RAM disks. Change this if you know what |
390 | are doing. If you boot from a filesystem that needs to be extracted | 391 | are doing. If you boot from a filesystem that needs to be extracted |
diff --git a/drivers/block/acsi_slm.c b/drivers/block/acsi_slm.c index a5c1c8e871ec..4cb9c1336287 100644 --- a/drivers/block/acsi_slm.c +++ b/drivers/block/acsi_slm.c | |||
@@ -369,8 +369,6 @@ static ssize_t slm_read( struct file *file, char *buf, size_t count, | |||
369 | int length; | 369 | int length; |
370 | int end; | 370 | int end; |
371 | 371 | ||
372 | if (count < 0) | ||
373 | return( -EINVAL ); | ||
374 | if (!(page = __get_free_page( GFP_KERNEL ))) | 372 | if (!(page = __get_free_page( GFP_KERNEL ))) |
375 | return( -ENOMEM ); | 373 | return( -ENOMEM ); |
376 | 374 | ||
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 71ec9e664383..1b0fd31c57c3 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
@@ -996,13 +996,11 @@ static int cciss_ioctl(struct inode *inode, struct file *filep, | |||
996 | status = -EINVAL; | 996 | status = -EINVAL; |
997 | goto cleanup1; | 997 | goto cleanup1; |
998 | } | 998 | } |
999 | buff = (unsigned char **) kmalloc(MAXSGENTRIES * | 999 | buff = kzalloc(MAXSGENTRIES * sizeof(char *), GFP_KERNEL); |
1000 | sizeof(char *), GFP_KERNEL); | ||
1001 | if (!buff) { | 1000 | if (!buff) { |
1002 | status = -ENOMEM; | 1001 | status = -ENOMEM; |
1003 | goto cleanup1; | 1002 | goto cleanup1; |
1004 | } | 1003 | } |
1005 | memset(buff, 0, MAXSGENTRIES); | ||
1006 | buff_size = (int *) kmalloc(MAXSGENTRIES * sizeof(int), | 1004 | buff_size = (int *) kmalloc(MAXSGENTRIES * sizeof(int), |
1007 | GFP_KERNEL); | 1005 | GFP_KERNEL); |
1008 | if (!buff_size) { | 1006 | if (!buff_size) { |
@@ -2729,9 +2727,9 @@ static void __devinit cciss_interrupt_mode(ctlr_info_t *c, struct pci_dev *pdev, | |||
2729 | return; | 2727 | return; |
2730 | } | 2728 | } |
2731 | } | 2729 | } |
2730 | default_int_mode: | ||
2732 | #endif /* CONFIG_PCI_MSI */ | 2731 | #endif /* CONFIG_PCI_MSI */ |
2733 | /* if we get here we're going to use the default interrupt mode */ | 2732 | /* if we get here we're going to use the default interrupt mode */ |
2734 | default_int_mode: | ||
2735 | c->intr[SIMPLE_MODE_INT] = pdev->irq; | 2733 | c->intr[SIMPLE_MODE_INT] = pdev->irq; |
2736 | return; | 2734 | return; |
2737 | } | 2735 | } |
@@ -2940,13 +2938,12 @@ static void cciss_getgeometry(int cntl_num) | |||
2940 | int block_size; | 2938 | int block_size; |
2941 | int total_size; | 2939 | int total_size; |
2942 | 2940 | ||
2943 | ld_buff = kmalloc(sizeof(ReportLunData_struct), GFP_KERNEL); | 2941 | ld_buff = kzalloc(sizeof(ReportLunData_struct), GFP_KERNEL); |
2944 | if (ld_buff == NULL) | 2942 | if (ld_buff == NULL) |
2945 | { | 2943 | { |
2946 | printk(KERN_ERR "cciss: out of memory\n"); | 2944 | printk(KERN_ERR "cciss: out of memory\n"); |
2947 | return; | 2945 | return; |
2948 | } | 2946 | } |
2949 | memset(ld_buff, 0, sizeof(ReportLunData_struct)); | ||
2950 | size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL); | 2947 | size_buff = kmalloc(sizeof( ReadCapdata_struct), GFP_KERNEL); |
2951 | if (size_buff == NULL) | 2948 | if (size_buff == NULL) |
2952 | { | 2949 | { |
@@ -3060,10 +3057,9 @@ static int alloc_cciss_hba(void) | |||
3060 | for(i=0; i< MAX_CTLR; i++) { | 3057 | for(i=0; i< MAX_CTLR; i++) { |
3061 | if (!hba[i]) { | 3058 | if (!hba[i]) { |
3062 | ctlr_info_t *p; | 3059 | ctlr_info_t *p; |
3063 | p = kmalloc(sizeof(ctlr_info_t), GFP_KERNEL); | 3060 | p = kzalloc(sizeof(ctlr_info_t), GFP_KERNEL); |
3064 | if (!p) | 3061 | if (!p) |
3065 | goto Enomem; | 3062 | goto Enomem; |
3066 | memset(p, 0, sizeof(ctlr_info_t)); | ||
3067 | for (n = 0; n < NWD; n++) | 3063 | for (n = 0; n < NWD; n++) |
3068 | p->gendisk[n] = disk[n]; | 3064 | p->gendisk[n] = disk[n]; |
3069 | hba[i] = p; | 3065 | hba[i] = p; |
diff --git a/drivers/block/cciss_scsi.c b/drivers/block/cciss_scsi.c index 0e66e904bd8c..597c007fe81b 100644 --- a/drivers/block/cciss_scsi.c +++ b/drivers/block/cciss_scsi.c | |||
@@ -1027,12 +1027,11 @@ cciss_update_non_disk_devices(int cntl_num, int hostno) | |||
1027 | int i; | 1027 | int i; |
1028 | 1028 | ||
1029 | c = (ctlr_info_t *) hba[cntl_num]; | 1029 | c = (ctlr_info_t *) hba[cntl_num]; |
1030 | ld_buff = kmalloc(reportlunsize, GFP_KERNEL); | 1030 | ld_buff = kzalloc(reportlunsize, GFP_KERNEL); |
1031 | if (ld_buff == NULL) { | 1031 | if (ld_buff == NULL) { |
1032 | printk(KERN_ERR "cciss: out of memory\n"); | 1032 | printk(KERN_ERR "cciss: out of memory\n"); |
1033 | return; | 1033 | return; |
1034 | } | 1034 | } |
1035 | memset(ld_buff, 0, reportlunsize); | ||
1036 | inq_buff = kmalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); | 1035 | inq_buff = kmalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); |
1037 | if (inq_buff == NULL) { | 1036 | if (inq_buff == NULL) { |
1038 | printk(KERN_ERR "cciss: out of memory\n"); | 1037 | printk(KERN_ERR "cciss: out of memory\n"); |
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c index d3ad9081697e..bedb689b051f 100644 --- a/drivers/block/floppy.c +++ b/drivers/block/floppy.c | |||
@@ -170,6 +170,7 @@ static int print_unex = 1; | |||
170 | #include <linux/mm.h> | 170 | #include <linux/mm.h> |
171 | #include <linux/bio.h> | 171 | #include <linux/bio.h> |
172 | #include <linux/string.h> | 172 | #include <linux/string.h> |
173 | #include <linux/jiffies.h> | ||
173 | #include <linux/fcntl.h> | 174 | #include <linux/fcntl.h> |
174 | #include <linux/delay.h> | 175 | #include <linux/delay.h> |
175 | #include <linux/mc146818rtc.h> /* CMOS defines */ | 176 | #include <linux/mc146818rtc.h> /* CMOS defines */ |
@@ -747,7 +748,7 @@ static int disk_change(int drive) | |||
747 | { | 748 | { |
748 | int fdc = FDC(drive); | 749 | int fdc = FDC(drive); |
749 | #ifdef FLOPPY_SANITY_CHECK | 750 | #ifdef FLOPPY_SANITY_CHECK |
750 | if (jiffies - UDRS->select_date < UDP->select_delay) | 751 | if (time_before(jiffies, UDRS->select_date + UDP->select_delay)) |
751 | DPRINT("WARNING disk change called early\n"); | 752 | DPRINT("WARNING disk change called early\n"); |
752 | if (!(FDCS->dor & (0x10 << UNIT(drive))) || | 753 | if (!(FDCS->dor & (0x10 << UNIT(drive))) || |
753 | (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) { | 754 | (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) { |
@@ -1075,7 +1076,7 @@ static int fd_wait_for_completion(unsigned long delay, timeout_fn function) | |||
1075 | return 1; | 1076 | return 1; |
1076 | } | 1077 | } |
1077 | 1078 | ||
1078 | if ((signed)(jiffies - delay) < 0) { | 1079 | if (time_before(jiffies, delay)) { |
1079 | del_timer(&fd_timer); | 1080 | del_timer(&fd_timer); |
1080 | fd_timer.function = function; | 1081 | fd_timer.function = function; |
1081 | fd_timer.expires = delay; | 1082 | fd_timer.expires = delay; |
@@ -1535,7 +1536,7 @@ static void setup_rw_floppy(void) | |||
1535 | * again just before spinup completion. Beware that | 1536 | * again just before spinup completion. Beware that |
1536 | * after scandrives, we must again wait for selection. | 1537 | * after scandrives, we must again wait for selection. |
1537 | */ | 1538 | */ |
1538 | if ((signed)(ready_date - jiffies) > DP->select_delay) { | 1539 | if (time_after(ready_date, jiffies + DP->select_delay)) { |
1539 | ready_date -= DP->select_delay; | 1540 | ready_date -= DP->select_delay; |
1540 | function = (timeout_fn) floppy_start; | 1541 | function = (timeout_fn) floppy_start; |
1541 | } else | 1542 | } else |
@@ -3823,7 +3824,7 @@ static int check_floppy_change(struct gendisk *disk) | |||
3823 | if (UTESTF(FD_DISK_CHANGED) || UTESTF(FD_VERIFY)) | 3824 | if (UTESTF(FD_DISK_CHANGED) || UTESTF(FD_VERIFY)) |
3824 | return 1; | 3825 | return 1; |
3825 | 3826 | ||
3826 | if (UDP->checkfreq < (int)(jiffies - UDRS->last_checked)) { | 3827 | if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) { |
3827 | if (floppy_grab_irq_and_dma()) { | 3828 | if (floppy_grab_irq_and_dma()) { |
3828 | return 1; | 3829 | return 1; |
3829 | } | 3830 | } |
diff --git a/drivers/block/paride/bpck6.c b/drivers/block/paride/bpck6.c index 08d858ad64db..41a237c5957d 100644 --- a/drivers/block/paride/bpck6.c +++ b/drivers/block/paride/bpck6.c | |||
@@ -224,10 +224,9 @@ static void bpck6_log_adapter( PIA *pi, char * scratch, int verbose ) | |||
224 | 224 | ||
225 | static int bpck6_init_proto(PIA *pi) | 225 | static int bpck6_init_proto(PIA *pi) |
226 | { | 226 | { |
227 | Interface *p = kmalloc(sizeof(Interface), GFP_KERNEL); | 227 | Interface *p = kzalloc(sizeof(Interface), GFP_KERNEL); |
228 | 228 | ||
229 | if (p) { | 229 | if (p) { |
230 | memset(p, 0, sizeof(Interface)); | ||
231 | pi->private = (unsigned long)p; | 230 | pi->private = (unsigned long)p; |
232 | return 0; | 231 | return 0; |
233 | } | 232 | } |
diff --git a/drivers/block/paride/pd.c b/drivers/block/paride/pd.c index 62d2464c12f2..2403721f9db1 100644 --- a/drivers/block/paride/pd.c +++ b/drivers/block/paride/pd.c | |||
@@ -151,6 +151,7 @@ enum {D_PRT, D_PRO, D_UNI, D_MOD, D_GEO, D_SBY, D_DLY, D_SLV}; | |||
151 | #include <linux/cdrom.h> /* for the eject ioctl */ | 151 | #include <linux/cdrom.h> /* for the eject ioctl */ |
152 | #include <linux/blkdev.h> | 152 | #include <linux/blkdev.h> |
153 | #include <linux/blkpg.h> | 153 | #include <linux/blkpg.h> |
154 | #include <linux/kernel.h> | ||
154 | #include <asm/uaccess.h> | 155 | #include <asm/uaccess.h> |
155 | #include <linux/sched.h> | 156 | #include <linux/sched.h> |
156 | #include <linux/workqueue.h> | 157 | #include <linux/workqueue.h> |
@@ -275,7 +276,7 @@ static void pd_print_error(struct pd_unit *disk, char *msg, int status) | |||
275 | int i; | 276 | int i; |
276 | 277 | ||
277 | printk("%s: %s: status = 0x%x =", disk->name, msg, status); | 278 | printk("%s: %s: status = 0x%x =", disk->name, msg, status); |
278 | for (i = 0; i < 18; i++) | 279 | for (i = 0; i < ARRAY_SIZE(pd_errs); i++) |
279 | if (status & (1 << i)) | 280 | if (status & (1 << i)) |
280 | printk(" %s", pd_errs[i]); | 281 | printk(" %s", pd_errs[i]); |
281 | printk("\n"); | 282 | printk("\n"); |
diff --git a/drivers/block/paride/pg.c b/drivers/block/paride/pg.c index 6f5df0fad703..79b868254032 100644 --- a/drivers/block/paride/pg.c +++ b/drivers/block/paride/pg.c | |||
@@ -643,7 +643,8 @@ static ssize_t pg_read(struct file *filp, char __user *buf, size_t count, loff_t | |||
643 | 643 | ||
644 | static int __init pg_init(void) | 644 | static int __init pg_init(void) |
645 | { | 645 | { |
646 | int unit, err = 0; | 646 | int unit; |
647 | int err; | ||
647 | 648 | ||
648 | if (disable){ | 649 | if (disable){ |
649 | err = -1; | 650 | err = -1; |
@@ -657,16 +658,17 @@ static int __init pg_init(void) | |||
657 | goto out; | 658 | goto out; |
658 | } | 659 | } |
659 | 660 | ||
660 | if (register_chrdev(major, name, &pg_fops)) { | 661 | err = register_chrdev(major, name, &pg_fops); |
662 | if (err < 0) { | ||
661 | printk("pg_init: unable to get major number %d\n", major); | 663 | printk("pg_init: unable to get major number %d\n", major); |
662 | for (unit = 0; unit < PG_UNITS; unit++) { | 664 | for (unit = 0; unit < PG_UNITS; unit++) { |
663 | struct pg *dev = &devices[unit]; | 665 | struct pg *dev = &devices[unit]; |
664 | if (dev->present) | 666 | if (dev->present) |
665 | pi_release(dev->pi); | 667 | pi_release(dev->pi); |
666 | } | 668 | } |
667 | err = -1; | ||
668 | goto out; | 669 | goto out; |
669 | } | 670 | } |
671 | major = err; /* In case the user specified `major=0' (dynamic) */ | ||
670 | pg_class = class_create(THIS_MODULE, "pg"); | 672 | pg_class = class_create(THIS_MODULE, "pg"); |
671 | if (IS_ERR(pg_class)) { | 673 | if (IS_ERR(pg_class)) { |
672 | err = PTR_ERR(pg_class); | 674 | err = PTR_ERR(pg_class); |
diff --git a/drivers/block/paride/pt.c b/drivers/block/paride/pt.c index 715ae5dc88fb..d2013d362403 100644 --- a/drivers/block/paride/pt.c +++ b/drivers/block/paride/pt.c | |||
@@ -943,7 +943,8 @@ static ssize_t pt_write(struct file *filp, const char __user *buf, size_t count, | |||
943 | 943 | ||
944 | static int __init pt_init(void) | 944 | static int __init pt_init(void) |
945 | { | 945 | { |
946 | int unit, err = 0; | 946 | int unit; |
947 | int err; | ||
947 | 948 | ||
948 | if (disable) { | 949 | if (disable) { |
949 | err = -1; | 950 | err = -1; |
@@ -955,14 +956,15 @@ static int __init pt_init(void) | |||
955 | goto out; | 956 | goto out; |
956 | } | 957 | } |
957 | 958 | ||
958 | if (register_chrdev(major, name, &pt_fops)) { | 959 | err = register_chrdev(major, name, &pt_fops); |
960 | if (err < 0) { | ||
959 | printk("pt_init: unable to get major number %d\n", major); | 961 | printk("pt_init: unable to get major number %d\n", major); |
960 | for (unit = 0; unit < PT_UNITS; unit++) | 962 | for (unit = 0; unit < PT_UNITS; unit++) |
961 | if (pt[unit].present) | 963 | if (pt[unit].present) |
962 | pi_release(pt[unit].pi); | 964 | pi_release(pt[unit].pi); |
963 | err = -1; | ||
964 | goto out; | 965 | goto out; |
965 | } | 966 | } |
967 | major = err; | ||
966 | pt_class = class_create(THIS_MODULE, "pt"); | 968 | pt_class = class_create(THIS_MODULE, "pt"); |
967 | if (IS_ERR(pt_class)) { | 969 | if (IS_ERR(pt_class)) { |
968 | err = PTR_ERR(pt_class); | 970 | err = PTR_ERR(pt_class); |
diff --git a/drivers/block/umem.c b/drivers/block/umem.c index c16e66b9c7a7..f7d4c65a7b8c 100644 --- a/drivers/block/umem.c +++ b/drivers/block/umem.c | |||
@@ -50,6 +50,7 @@ | |||
50 | #include <linux/timer.h> | 50 | #include <linux/timer.h> |
51 | #include <linux/pci.h> | 51 | #include <linux/pci.h> |
52 | #include <linux/slab.h> | 52 | #include <linux/slab.h> |
53 | #include <linux/dma-mapping.h> | ||
53 | 54 | ||
54 | #include <linux/fcntl.h> /* O_ACCMODE */ | 55 | #include <linux/fcntl.h> /* O_ACCMODE */ |
55 | #include <linux/hdreg.h> /* HDIO_GETGEO */ | 56 | #include <linux/hdreg.h> /* HDIO_GETGEO */ |
@@ -881,8 +882,8 @@ static int __devinit mm_pci_probe(struct pci_dev *dev, const struct pci_device_i | |||
881 | printk(KERN_INFO "Micro Memory(tm) controller #%d found at %02x:%02x (PCI Mem Module (Battery Backup))\n", | 882 | printk(KERN_INFO "Micro Memory(tm) controller #%d found at %02x:%02x (PCI Mem Module (Battery Backup))\n", |
882 | card->card_number, dev->bus->number, dev->devfn); | 883 | card->card_number, dev->bus->number, dev->devfn); |
883 | 884 | ||
884 | if (pci_set_dma_mask(dev, 0xffffffffffffffffLL) && | 885 | if (pci_set_dma_mask(dev, DMA_64BIT_MASK) && |
885 | pci_set_dma_mask(dev, 0xffffffffLL)) { | 886 | pci_set_dma_mask(dev, DMA_32BIT_MASK)) { |
886 | printk(KERN_WARNING "MM%d: NO suitable DMA found\n",num_cards); | 887 | printk(KERN_WARNING "MM%d: NO suitable DMA found\n",num_cards); |
887 | return -ENOMEM; | 888 | return -ENOMEM; |
888 | } | 889 | } |
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 7a85b3a26ff8..889cad07774e 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
@@ -713,7 +713,7 @@ config NVRAM | |||
713 | 713 | ||
714 | config RTC | 714 | config RTC |
715 | tristate "Enhanced Real Time Clock Support" | 715 | tristate "Enhanced Real Time Clock Support" |
716 | depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV | 716 | depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV && !ARM |
717 | ---help--- | 717 | ---help--- |
718 | If you say Y here and create a character special file /dev/rtc with | 718 | If you say Y here and create a character special file /dev/rtc with |
719 | major number 10 and minor number 135 using mknod ("man mknod"), you | 719 | major number 10 and minor number 135 using mknod ("man mknod"), you |
diff --git a/drivers/char/agp/nvidia-agp.c b/drivers/char/agp/nvidia-agp.c index 70b8ed9cd172..4c67135c12d8 100644 --- a/drivers/char/agp/nvidia-agp.c +++ b/drivers/char/agp/nvidia-agp.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/gfp.h> | 11 | #include <linux/gfp.h> |
12 | #include <linux/page-flags.h> | 12 | #include <linux/page-flags.h> |
13 | #include <linux/mm.h> | 13 | #include <linux/mm.h> |
14 | #include <linux/jiffies.h> | ||
14 | #include "agp.h" | 15 | #include "agp.h" |
15 | 16 | ||
16 | /* NVIDIA registers */ | 17 | /* NVIDIA registers */ |
@@ -256,7 +257,7 @@ static void nvidia_tlbflush(struct agp_memory *mem) | |||
256 | do { | 257 | do { |
257 | pci_read_config_dword(nvidia_private.dev_1, | 258 | pci_read_config_dword(nvidia_private.dev_1, |
258 | NVIDIA_1_WBC, &wbc_reg); | 259 | NVIDIA_1_WBC, &wbc_reg); |
259 | if ((signed)(end - jiffies) <= 0) { | 260 | if (time_before_eq(end, jiffies)) { |
260 | printk(KERN_ERR PFX | 261 | printk(KERN_ERR PFX |
261 | "TLB flush took more than 3 seconds.\n"); | 262 | "TLB flush took more than 3 seconds.\n"); |
262 | } | 263 | } |
diff --git a/drivers/char/drm/drm_fops.c b/drivers/char/drm/drm_fops.c index 641f7633878c..b7f7951c4587 100644 --- a/drivers/char/drm/drm_fops.c +++ b/drivers/char/drm/drm_fops.c | |||
@@ -175,7 +175,7 @@ int drm_stub_open(struct inode *inode, struct file *filp) | |||
175 | drm_device_t *dev = NULL; | 175 | drm_device_t *dev = NULL; |
176 | int minor = iminor(inode); | 176 | int minor = iminor(inode); |
177 | int err = -ENODEV; | 177 | int err = -ENODEV; |
178 | struct file_operations *old_fops; | 178 | const struct file_operations *old_fops; |
179 | 179 | ||
180 | DRM_DEBUG("\n"); | 180 | DRM_DEBUG("\n"); |
181 | 181 | ||
diff --git a/drivers/char/drm/i810_dma.c b/drivers/char/drm/i810_dma.c index ae0aa6d7e0bb..c658dde3633b 100644 --- a/drivers/char/drm/i810_dma.c +++ b/drivers/char/drm/i810_dma.c | |||
@@ -126,7 +126,7 @@ static int i810_map_buffer(drm_buf_t * buf, struct file *filp) | |||
126 | drm_device_t *dev = priv->head->dev; | 126 | drm_device_t *dev = priv->head->dev; |
127 | drm_i810_buf_priv_t *buf_priv = buf->dev_private; | 127 | drm_i810_buf_priv_t *buf_priv = buf->dev_private; |
128 | drm_i810_private_t *dev_priv = dev->dev_private; | 128 | drm_i810_private_t *dev_priv = dev->dev_private; |
129 | struct file_operations *old_fops; | 129 | const struct file_operations *old_fops; |
130 | int retcode = 0; | 130 | int retcode = 0; |
131 | 131 | ||
132 | if (buf_priv->currently_mapped == I810_BUF_MAPPED) | 132 | if (buf_priv->currently_mapped == I810_BUF_MAPPED) |
diff --git a/drivers/char/drm/i830_dma.c b/drivers/char/drm/i830_dma.c index 163f2cbfe60d..b0f815d8cea8 100644 --- a/drivers/char/drm/i830_dma.c +++ b/drivers/char/drm/i830_dma.c | |||
@@ -128,7 +128,7 @@ static int i830_map_buffer(drm_buf_t * buf, struct file *filp) | |||
128 | drm_device_t *dev = priv->head->dev; | 128 | drm_device_t *dev = priv->head->dev; |
129 | drm_i830_buf_priv_t *buf_priv = buf->dev_private; | 129 | drm_i830_buf_priv_t *buf_priv = buf->dev_private; |
130 | drm_i830_private_t *dev_priv = dev->dev_private; | 130 | drm_i830_private_t *dev_priv = dev->dev_private; |
131 | struct file_operations *old_fops; | 131 | const struct file_operations *old_fops; |
132 | unsigned long virtual; | 132 | unsigned long virtual; |
133 | int retcode = 0; | 133 | int retcode = 0; |
134 | 134 | ||
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c index b8fb87c6c29f..40eb005b9d77 100644 --- a/drivers/char/ipmi/ipmi_msghandler.c +++ b/drivers/char/ipmi/ipmi_msghandler.c | |||
@@ -3744,7 +3744,7 @@ static int ipmi_init_msghandler(void) | |||
3744 | ipmi_timer.expires = jiffies + IPMI_TIMEOUT_JIFFIES; | 3744 | ipmi_timer.expires = jiffies + IPMI_TIMEOUT_JIFFIES; |
3745 | add_timer(&ipmi_timer); | 3745 | add_timer(&ipmi_timer); |
3746 | 3746 | ||
3747 | notifier_chain_register(&panic_notifier_list, &panic_block); | 3747 | atomic_notifier_chain_register(&panic_notifier_list, &panic_block); |
3748 | 3748 | ||
3749 | initialized = 1; | 3749 | initialized = 1; |
3750 | 3750 | ||
@@ -3764,7 +3764,7 @@ static __exit void cleanup_ipmi(void) | |||
3764 | if (!initialized) | 3764 | if (!initialized) |
3765 | return; | 3765 | return; |
3766 | 3766 | ||
3767 | notifier_chain_unregister(&panic_notifier_list, &panic_block); | 3767 | atomic_notifier_chain_unregister(&panic_notifier_list, &panic_block); |
3768 | 3768 | ||
3769 | /* This can't be called if any interfaces exist, so no worry about | 3769 | /* This can't be called if any interfaces exist, so no worry about |
3770 | shutting down the interfaces. */ | 3770 | shutting down the interfaces. */ |
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index 12f858dc9994..35fbd4d8ed4b 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -237,10 +237,10 @@ struct smi_info | |||
237 | 237 | ||
238 | static int try_smi_init(struct smi_info *smi); | 238 | static int try_smi_init(struct smi_info *smi); |
239 | 239 | ||
240 | static struct notifier_block *xaction_notifier_list; | 240 | static ATOMIC_NOTIFIER_HEAD(xaction_notifier_list); |
241 | static int register_xaction_notifier(struct notifier_block * nb) | 241 | static int register_xaction_notifier(struct notifier_block * nb) |
242 | { | 242 | { |
243 | return notifier_chain_register(&xaction_notifier_list, nb); | 243 | return atomic_notifier_chain_register(&xaction_notifier_list, nb); |
244 | } | 244 | } |
245 | 245 | ||
246 | static void si_restart_short_timer(struct smi_info *smi_info); | 246 | static void si_restart_short_timer(struct smi_info *smi_info); |
@@ -302,7 +302,8 @@ static enum si_sm_result start_next_msg(struct smi_info *smi_info) | |||
302 | do_gettimeofday(&t); | 302 | do_gettimeofday(&t); |
303 | printk("**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec); | 303 | printk("**Start2: %d.%9.9d\n", t.tv_sec, t.tv_usec); |
304 | #endif | 304 | #endif |
305 | err = notifier_call_chain(&xaction_notifier_list, 0, smi_info); | 305 | err = atomic_notifier_call_chain(&xaction_notifier_list, |
306 | 0, smi_info); | ||
306 | if (err & NOTIFY_STOP_MASK) { | 307 | if (err & NOTIFY_STOP_MASK) { |
307 | rv = SI_SM_CALL_WITHOUT_DELAY; | 308 | rv = SI_SM_CALL_WITHOUT_DELAY; |
308 | goto out; | 309 | goto out; |
diff --git a/drivers/char/ipmi/ipmi_watchdog.c b/drivers/char/ipmi/ipmi_watchdog.c index 616539310d9a..7ece9f3c8f70 100644 --- a/drivers/char/ipmi/ipmi_watchdog.c +++ b/drivers/char/ipmi/ipmi_watchdog.c | |||
@@ -1158,7 +1158,8 @@ static int __init ipmi_wdog_init(void) | |||
1158 | } | 1158 | } |
1159 | 1159 | ||
1160 | register_reboot_notifier(&wdog_reboot_notifier); | 1160 | register_reboot_notifier(&wdog_reboot_notifier); |
1161 | notifier_chain_register(&panic_notifier_list, &wdog_panic_notifier); | 1161 | atomic_notifier_chain_register(&panic_notifier_list, |
1162 | &wdog_panic_notifier); | ||
1162 | 1163 | ||
1163 | printk(KERN_INFO PFX "driver initialized\n"); | 1164 | printk(KERN_INFO PFX "driver initialized\n"); |
1164 | 1165 | ||
@@ -1176,7 +1177,8 @@ static __exit void ipmi_unregister_watchdog(void) | |||
1176 | release_nmi(&ipmi_nmi_handler); | 1177 | release_nmi(&ipmi_nmi_handler); |
1177 | #endif | 1178 | #endif |
1178 | 1179 | ||
1179 | notifier_chain_unregister(&panic_notifier_list, &wdog_panic_notifier); | 1180 | atomic_notifier_chain_unregister(&panic_notifier_list, |
1181 | &wdog_panic_notifier); | ||
1180 | unregister_reboot_notifier(&wdog_reboot_notifier); | 1182 | unregister_reboot_notifier(&wdog_reboot_notifier); |
1181 | 1183 | ||
1182 | if (! watchdog_user) | 1184 | if (! watchdog_user) |
diff --git a/drivers/char/mem.c b/drivers/char/mem.c index 5245ba1649ed..66719f9d294c 100644 --- a/drivers/char/mem.c +++ b/drivers/char/mem.c | |||
@@ -899,7 +899,7 @@ static const struct { | |||
899 | unsigned int minor; | 899 | unsigned int minor; |
900 | char *name; | 900 | char *name; |
901 | umode_t mode; | 901 | umode_t mode; |
902 | struct file_operations *fops; | 902 | const struct file_operations *fops; |
903 | } devlist[] = { /* list of minor devices */ | 903 | } devlist[] = { /* list of minor devices */ |
904 | {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops}, | 904 | {1, "mem", S_IRUSR | S_IWUSR | S_IRGRP, &mem_fops}, |
905 | {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops}, | 905 | {2, "kmem", S_IRUSR | S_IWUSR | S_IRGRP, &kmem_fops}, |
diff --git a/drivers/char/misc.c b/drivers/char/misc.c index 3e4c0414a01a..96eb2a709e21 100644 --- a/drivers/char/misc.c +++ b/drivers/char/misc.c | |||
@@ -129,7 +129,7 @@ static int misc_open(struct inode * inode, struct file * file) | |||
129 | int minor = iminor(inode); | 129 | int minor = iminor(inode); |
130 | struct miscdevice *c; | 130 | struct miscdevice *c; |
131 | int err = -ENODEV; | 131 | int err = -ENODEV; |
132 | struct file_operations *old_fops, *new_fops = NULL; | 132 | const struct file_operations *old_fops, *new_fops = NULL; |
133 | 133 | ||
134 | down(&misc_sem); | 134 | down(&misc_sem); |
135 | 135 | ||
diff --git a/drivers/char/mxser.h b/drivers/char/mxser.h index e7fd0b08e0b7..7e188a4d602a 100644 --- a/drivers/char/mxser.h +++ b/drivers/char/mxser.h | |||
@@ -118,7 +118,7 @@ | |||
118 | 118 | ||
119 | // enable CTS interrupt | 119 | // enable CTS interrupt |
120 | #define MOXA_MUST_IER_ECTSI 0x80 | 120 | #define MOXA_MUST_IER_ECTSI 0x80 |
121 | // eanble RTS interrupt | 121 | // enable RTS interrupt |
122 | #define MOXA_MUST_IER_ERTSI 0x40 | 122 | #define MOXA_MUST_IER_ERTSI 0x40 |
123 | // enable Xon/Xoff interrupt | 123 | // enable Xon/Xoff interrupt |
124 | #define MOXA_MUST_IER_XINT 0x20 | 124 | #define MOXA_MUST_IER_XINT 0x20 |
diff --git a/drivers/char/synclink.c b/drivers/char/synclink.c index d68be61f0a49..fee2aca3f6a5 100644 --- a/drivers/char/synclink.c +++ b/drivers/char/synclink.c | |||
@@ -941,17 +941,6 @@ static void* mgsl_get_text_ptr(void) | |||
941 | return mgsl_get_text_ptr; | 941 | return mgsl_get_text_ptr; |
942 | } | 942 | } |
943 | 943 | ||
944 | /* | ||
945 | * tmp_buf is used as a temporary buffer by mgsl_write. We need to | ||
946 | * lock it in case the COPY_FROM_USER blocks while swapping in a page, | ||
947 | * and some other program tries to do a serial write at the same time. | ||
948 | * Since the lock will only come under contention when the system is | ||
949 | * swapping and available memory is low, it makes sense to share one | ||
950 | * buffer across all the serial ioports, since it significantly saves | ||
951 | * memory if large numbers of serial ports are open. | ||
952 | */ | ||
953 | static unsigned char *tmp_buf; | ||
954 | |||
955 | static inline int mgsl_paranoia_check(struct mgsl_struct *info, | 944 | static inline int mgsl_paranoia_check(struct mgsl_struct *info, |
956 | char *name, const char *routine) | 945 | char *name, const char *routine) |
957 | { | 946 | { |
@@ -2150,7 +2139,7 @@ static int mgsl_write(struct tty_struct * tty, | |||
2150 | if (mgsl_paranoia_check(info, tty->name, "mgsl_write")) | 2139 | if (mgsl_paranoia_check(info, tty->name, "mgsl_write")) |
2151 | goto cleanup; | 2140 | goto cleanup; |
2152 | 2141 | ||
2153 | if (!tty || !info->xmit_buf || !tmp_buf) | 2142 | if (!tty || !info->xmit_buf) |
2154 | goto cleanup; | 2143 | goto cleanup; |
2155 | 2144 | ||
2156 | if ( info->params.mode == MGSL_MODE_HDLC || | 2145 | if ( info->params.mode == MGSL_MODE_HDLC || |
@@ -3438,7 +3427,6 @@ static int mgsl_open(struct tty_struct *tty, struct file * filp) | |||
3438 | { | 3427 | { |
3439 | struct mgsl_struct *info; | 3428 | struct mgsl_struct *info; |
3440 | int retval, line; | 3429 | int retval, line; |
3441 | unsigned long page; | ||
3442 | unsigned long flags; | 3430 | unsigned long flags; |
3443 | 3431 | ||
3444 | /* verify range of specified line number */ | 3432 | /* verify range of specified line number */ |
@@ -3472,18 +3460,6 @@ static int mgsl_open(struct tty_struct *tty, struct file * filp) | |||
3472 | goto cleanup; | 3460 | goto cleanup; |
3473 | } | 3461 | } |
3474 | 3462 | ||
3475 | if (!tmp_buf) { | ||
3476 | page = get_zeroed_page(GFP_KERNEL); | ||
3477 | if (!page) { | ||
3478 | retval = -ENOMEM; | ||
3479 | goto cleanup; | ||
3480 | } | ||
3481 | if (tmp_buf) | ||
3482 | free_page(page); | ||
3483 | else | ||
3484 | tmp_buf = (unsigned char *) page; | ||
3485 | } | ||
3486 | |||
3487 | info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; | 3463 | info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0; |
3488 | 3464 | ||
3489 | spin_lock_irqsave(&info->netlock, flags); | 3465 | spin_lock_irqsave(&info->netlock, flags); |
@@ -4502,11 +4478,6 @@ static void synclink_cleanup(void) | |||
4502 | kfree(tmp); | 4478 | kfree(tmp); |
4503 | } | 4479 | } |
4504 | 4480 | ||
4505 | if (tmp_buf) { | ||
4506 | free_page((unsigned long) tmp_buf); | ||
4507 | tmp_buf = NULL; | ||
4508 | } | ||
4509 | |||
4510 | if (pci_registered) | 4481 | if (pci_registered) |
4511 | pci_unregister_driver(&synclink_pci_driver); | 4482 | pci_unregister_driver(&synclink_pci_driver); |
4512 | } | 4483 | } |
@@ -6025,7 +5996,7 @@ static void usc_set_async_mode( struct mgsl_struct *info ) | |||
6025 | * <15..8> ? RxFIFO IRQ Request Level | 5996 | * <15..8> ? RxFIFO IRQ Request Level |
6026 | * | 5997 | * |
6027 | * Note: For async mode the receive FIFO level must be set | 5998 | * Note: For async mode the receive FIFO level must be set |
6028 | * to 0 to aviod the situation where the FIFO contains fewer bytes | 5999 | * to 0 to avoid the situation where the FIFO contains fewer bytes |
6029 | * than the trigger level and no more data is expected. | 6000 | * than the trigger level and no more data is expected. |
6030 | * | 6001 | * |
6031 | * <7> 0 Exited Hunt IA (Interrupt Arm) | 6002 | * <7> 0 Exited Hunt IA (Interrupt Arm) |
diff --git a/drivers/char/synclink_gt.c b/drivers/char/synclink_gt.c index 738ec2f4e563..b4d1f4eea435 100644 --- a/drivers/char/synclink_gt.c +++ b/drivers/char/synclink_gt.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: synclink_gt.c,v 4.22 2006/01/09 20:16:06 paulkf Exp $ | 2 | * $Id: synclink_gt.c,v 4.25 2006/02/06 21:20:33 paulkf Exp $ |
3 | * | 3 | * |
4 | * Device driver for Microgate SyncLink GT serial adapters. | 4 | * Device driver for Microgate SyncLink GT serial adapters. |
5 | * | 5 | * |
@@ -92,7 +92,7 @@ | |||
92 | * module identification | 92 | * module identification |
93 | */ | 93 | */ |
94 | static char *driver_name = "SyncLink GT"; | 94 | static char *driver_name = "SyncLink GT"; |
95 | static char *driver_version = "$Revision: 4.22 $"; | 95 | static char *driver_version = "$Revision: 4.25 $"; |
96 | static char *tty_driver_name = "synclink_gt"; | 96 | static char *tty_driver_name = "synclink_gt"; |
97 | static char *tty_dev_prefix = "ttySLG"; | 97 | static char *tty_dev_prefix = "ttySLG"; |
98 | MODULE_LICENSE("GPL"); | 98 | MODULE_LICENSE("GPL"); |
@@ -188,6 +188,20 @@ static void hdlcdev_exit(struct slgt_info *info); | |||
188 | #define SLGT_REG_SIZE 256 | 188 | #define SLGT_REG_SIZE 256 |
189 | 189 | ||
190 | /* | 190 | /* |
191 | * conditional wait facility | ||
192 | */ | ||
193 | struct cond_wait { | ||
194 | struct cond_wait *next; | ||
195 | wait_queue_head_t q; | ||
196 | wait_queue_t wait; | ||
197 | unsigned int data; | ||
198 | }; | ||
199 | static void init_cond_wait(struct cond_wait *w, unsigned int data); | ||
200 | static void add_cond_wait(struct cond_wait **head, struct cond_wait *w); | ||
201 | static void remove_cond_wait(struct cond_wait **head, struct cond_wait *w); | ||
202 | static void flush_cond_wait(struct cond_wait **head); | ||
203 | |||
204 | /* | ||
191 | * DMA buffer descriptor and access macros | 205 | * DMA buffer descriptor and access macros |
192 | */ | 206 | */ |
193 | struct slgt_desc | 207 | struct slgt_desc |
@@ -269,6 +283,9 @@ struct slgt_info { | |||
269 | struct timer_list tx_timer; | 283 | struct timer_list tx_timer; |
270 | struct timer_list rx_timer; | 284 | struct timer_list rx_timer; |
271 | 285 | ||
286 | unsigned int gpio_present; | ||
287 | struct cond_wait *gpio_wait_q; | ||
288 | |||
272 | spinlock_t lock; /* spinlock for synchronizing with ISR */ | 289 | spinlock_t lock; /* spinlock for synchronizing with ISR */ |
273 | 290 | ||
274 | struct work_struct task; | 291 | struct work_struct task; |
@@ -379,6 +396,11 @@ static MGSL_PARAMS default_params = { | |||
379 | #define MASK_OVERRUN BIT4 | 396 | #define MASK_OVERRUN BIT4 |
380 | 397 | ||
381 | #define GSR 0x00 /* global status */ | 398 | #define GSR 0x00 /* global status */ |
399 | #define JCR 0x04 /* JTAG control */ | ||
400 | #define IODR 0x08 /* GPIO direction */ | ||
401 | #define IOER 0x0c /* GPIO interrupt enable */ | ||
402 | #define IOVR 0x10 /* GPIO value */ | ||
403 | #define IOSR 0x14 /* GPIO interrupt status */ | ||
382 | #define TDR 0x80 /* tx data */ | 404 | #define TDR 0x80 /* tx data */ |
383 | #define RDR 0x80 /* rx data */ | 405 | #define RDR 0x80 /* rx data */ |
384 | #define TCR 0x82 /* tx control */ | 406 | #define TCR 0x82 /* tx control */ |
@@ -503,6 +525,9 @@ static int tiocmset(struct tty_struct *tty, struct file *file, | |||
503 | static void set_break(struct tty_struct *tty, int break_state); | 525 | static void set_break(struct tty_struct *tty, int break_state); |
504 | static int get_interface(struct slgt_info *info, int __user *if_mode); | 526 | static int get_interface(struct slgt_info *info, int __user *if_mode); |
505 | static int set_interface(struct slgt_info *info, int if_mode); | 527 | static int set_interface(struct slgt_info *info, int if_mode); |
528 | static int set_gpio(struct slgt_info *info, struct gpio_desc __user *gpio); | ||
529 | static int get_gpio(struct slgt_info *info, struct gpio_desc __user *gpio); | ||
530 | static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *gpio); | ||
506 | 531 | ||
507 | /* | 532 | /* |
508 | * driver functions | 533 | * driver functions |
@@ -1112,6 +1137,12 @@ static int ioctl(struct tty_struct *tty, struct file *file, | |||
1112 | return get_interface(info, argp); | 1137 | return get_interface(info, argp); |
1113 | case MGSL_IOCSIF: | 1138 | case MGSL_IOCSIF: |
1114 | return set_interface(info,(int)arg); | 1139 | return set_interface(info,(int)arg); |
1140 | case MGSL_IOCSGPIO: | ||
1141 | return set_gpio(info, argp); | ||
1142 | case MGSL_IOCGGPIO: | ||
1143 | return get_gpio(info, argp); | ||
1144 | case MGSL_IOCWAITGPIO: | ||
1145 | return wait_gpio(info, argp); | ||
1115 | case TIOCGICOUNT: | 1146 | case TIOCGICOUNT: |
1116 | spin_lock_irqsave(&info->lock,flags); | 1147 | spin_lock_irqsave(&info->lock,flags); |
1117 | cnow = info->icount; | 1148 | cnow = info->icount; |
@@ -1762,10 +1793,6 @@ static void rx_async(struct slgt_info *info) | |||
1762 | DBGDATA(info, p, count, "rx"); | 1793 | DBGDATA(info, p, count, "rx"); |
1763 | 1794 | ||
1764 | for(i=0 ; i < count; i+=2, p+=2) { | 1795 | for(i=0 ; i < count; i+=2, p+=2) { |
1765 | if (tty && chars) { | ||
1766 | tty_flip_buffer_push(tty); | ||
1767 | chars = 0; | ||
1768 | } | ||
1769 | ch = *p; | 1796 | ch = *p; |
1770 | icount->rx++; | 1797 | icount->rx++; |
1771 | 1798 | ||
@@ -2158,6 +2185,24 @@ static void isr_txeom(struct slgt_info *info, unsigned short status) | |||
2158 | } | 2185 | } |
2159 | } | 2186 | } |
2160 | 2187 | ||
2188 | static void isr_gpio(struct slgt_info *info, unsigned int changed, unsigned int state) | ||
2189 | { | ||
2190 | struct cond_wait *w, *prev; | ||
2191 | |||
2192 | /* wake processes waiting for specific transitions */ | ||
2193 | for (w = info->gpio_wait_q, prev = NULL ; w != NULL ; w = w->next) { | ||
2194 | if (w->data & changed) { | ||
2195 | w->data = state; | ||
2196 | wake_up_interruptible(&w->q); | ||
2197 | if (prev != NULL) | ||
2198 | prev->next = w->next; | ||
2199 | else | ||
2200 | info->gpio_wait_q = w->next; | ||
2201 | } else | ||
2202 | prev = w; | ||
2203 | } | ||
2204 | } | ||
2205 | |||
2161 | /* interrupt service routine | 2206 | /* interrupt service routine |
2162 | * | 2207 | * |
2163 | * irq interrupt number | 2208 | * irq interrupt number |
@@ -2193,6 +2238,22 @@ static irqreturn_t slgt_interrupt(int irq, void *dev_id, struct pt_regs * regs) | |||
2193 | } | 2238 | } |
2194 | } | 2239 | } |
2195 | 2240 | ||
2241 | if (info->gpio_present) { | ||
2242 | unsigned int state; | ||
2243 | unsigned int changed; | ||
2244 | while ((changed = rd_reg32(info, IOSR)) != 0) { | ||
2245 | DBGISR(("%s iosr=%08x\n", info->device_name, changed)); | ||
2246 | /* read latched state of GPIO signals */ | ||
2247 | state = rd_reg32(info, IOVR); | ||
2248 | /* clear pending GPIO interrupt bits */ | ||
2249 | wr_reg32(info, IOSR, changed); | ||
2250 | for (i=0 ; i < info->port_count ; i++) { | ||
2251 | if (info->port_array[i] != NULL) | ||
2252 | isr_gpio(info->port_array[i], changed, state); | ||
2253 | } | ||
2254 | } | ||
2255 | } | ||
2256 | |||
2196 | for(i=0; i < info->port_count ; i++) { | 2257 | for(i=0; i < info->port_count ; i++) { |
2197 | struct slgt_info *port = info->port_array[i]; | 2258 | struct slgt_info *port = info->port_array[i]; |
2198 | 2259 | ||
@@ -2276,6 +2337,8 @@ static void shutdown(struct slgt_info *info) | |||
2276 | set_signals(info); | 2337 | set_signals(info); |
2277 | } | 2338 | } |
2278 | 2339 | ||
2340 | flush_cond_wait(&info->gpio_wait_q); | ||
2341 | |||
2279 | spin_unlock_irqrestore(&info->lock,flags); | 2342 | spin_unlock_irqrestore(&info->lock,flags); |
2280 | 2343 | ||
2281 | if (info->tty) | 2344 | if (info->tty) |
@@ -2650,6 +2713,175 @@ static int set_interface(struct slgt_info *info, int if_mode) | |||
2650 | return 0; | 2713 | return 0; |
2651 | } | 2714 | } |
2652 | 2715 | ||
2716 | /* | ||
2717 | * set general purpose IO pin state and direction | ||
2718 | * | ||
2719 | * user_gpio fields: | ||
2720 | * state each bit indicates a pin state | ||
2721 | * smask set bit indicates pin state to set | ||
2722 | * dir each bit indicates a pin direction (0=input, 1=output) | ||
2723 | * dmask set bit indicates pin direction to set | ||
2724 | */ | ||
2725 | static int set_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio) | ||
2726 | { | ||
2727 | unsigned long flags; | ||
2728 | struct gpio_desc gpio; | ||
2729 | __u32 data; | ||
2730 | |||
2731 | if (!info->gpio_present) | ||
2732 | return -EINVAL; | ||
2733 | if (copy_from_user(&gpio, user_gpio, sizeof(gpio))) | ||
2734 | return -EFAULT; | ||
2735 | DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n", | ||
2736 | info->device_name, gpio.state, gpio.smask, | ||
2737 | gpio.dir, gpio.dmask)); | ||
2738 | |||
2739 | spin_lock_irqsave(&info->lock,flags); | ||
2740 | if (gpio.dmask) { | ||
2741 | data = rd_reg32(info, IODR); | ||
2742 | data |= gpio.dmask & gpio.dir; | ||
2743 | data &= ~(gpio.dmask & ~gpio.dir); | ||
2744 | wr_reg32(info, IODR, data); | ||
2745 | } | ||
2746 | if (gpio.smask) { | ||
2747 | data = rd_reg32(info, IOVR); | ||
2748 | data |= gpio.smask & gpio.state; | ||
2749 | data &= ~(gpio.smask & ~gpio.state); | ||
2750 | wr_reg32(info, IOVR, data); | ||
2751 | } | ||
2752 | spin_unlock_irqrestore(&info->lock,flags); | ||
2753 | |||
2754 | return 0; | ||
2755 | } | ||
2756 | |||
2757 | /* | ||
2758 | * get general purpose IO pin state and direction | ||
2759 | */ | ||
2760 | static int get_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio) | ||
2761 | { | ||
2762 | struct gpio_desc gpio; | ||
2763 | if (!info->gpio_present) | ||
2764 | return -EINVAL; | ||
2765 | gpio.state = rd_reg32(info, IOVR); | ||
2766 | gpio.smask = 0xffffffff; | ||
2767 | gpio.dir = rd_reg32(info, IODR); | ||
2768 | gpio.dmask = 0xffffffff; | ||
2769 | if (copy_to_user(user_gpio, &gpio, sizeof(gpio))) | ||
2770 | return -EFAULT; | ||
2771 | DBGINFO(("%s get_gpio state=%08x dir=%08x\n", | ||
2772 | info->device_name, gpio.state, gpio.dir)); | ||
2773 | return 0; | ||
2774 | } | ||
2775 | |||
2776 | /* | ||
2777 | * conditional wait facility | ||
2778 | */ | ||
2779 | static void init_cond_wait(struct cond_wait *w, unsigned int data) | ||
2780 | { | ||
2781 | init_waitqueue_head(&w->q); | ||
2782 | init_waitqueue_entry(&w->wait, current); | ||
2783 | w->data = data; | ||
2784 | } | ||
2785 | |||
2786 | static void add_cond_wait(struct cond_wait **head, struct cond_wait *w) | ||
2787 | { | ||
2788 | set_current_state(TASK_INTERRUPTIBLE); | ||
2789 | add_wait_queue(&w->q, &w->wait); | ||
2790 | w->next = *head; | ||
2791 | *head = w; | ||
2792 | } | ||
2793 | |||
2794 | static void remove_cond_wait(struct cond_wait **head, struct cond_wait *cw) | ||
2795 | { | ||
2796 | struct cond_wait *w, *prev; | ||
2797 | remove_wait_queue(&cw->q, &cw->wait); | ||
2798 | set_current_state(TASK_RUNNING); | ||
2799 | for (w = *head, prev = NULL ; w != NULL ; prev = w, w = w->next) { | ||
2800 | if (w == cw) { | ||
2801 | if (prev != NULL) | ||
2802 | prev->next = w->next; | ||
2803 | else | ||
2804 | *head = w->next; | ||
2805 | break; | ||
2806 | } | ||
2807 | } | ||
2808 | } | ||
2809 | |||
2810 | static void flush_cond_wait(struct cond_wait **head) | ||
2811 | { | ||
2812 | while (*head != NULL) { | ||
2813 | wake_up_interruptible(&(*head)->q); | ||
2814 | *head = (*head)->next; | ||
2815 | } | ||
2816 | } | ||
2817 | |||
2818 | /* | ||
2819 | * wait for general purpose I/O pin(s) to enter specified state | ||
2820 | * | ||
2821 | * user_gpio fields: | ||
2822 | * state - bit indicates target pin state | ||
2823 | * smask - set bit indicates watched pin | ||
2824 | * | ||
2825 | * The wait ends when at least one watched pin enters the specified | ||
2826 | * state. When 0 (no error) is returned, user_gpio->state is set to the | ||
2827 | * state of all GPIO pins when the wait ends. | ||
2828 | * | ||
2829 | * Note: Each pin may be a dedicated input, dedicated output, or | ||
2830 | * configurable input/output. The number and configuration of pins | ||
2831 | * varies with the specific adapter model. Only input pins (dedicated | ||
2832 | * or configured) can be monitored with this function. | ||
2833 | */ | ||
2834 | static int wait_gpio(struct slgt_info *info, struct gpio_desc __user *user_gpio) | ||
2835 | { | ||
2836 | unsigned long flags; | ||
2837 | int rc = 0; | ||
2838 | struct gpio_desc gpio; | ||
2839 | struct cond_wait wait; | ||
2840 | u32 state; | ||
2841 | |||
2842 | if (!info->gpio_present) | ||
2843 | return -EINVAL; | ||
2844 | if (copy_from_user(&gpio, user_gpio, sizeof(gpio))) | ||
2845 | return -EFAULT; | ||
2846 | DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n", | ||
2847 | info->device_name, gpio.state, gpio.smask)); | ||
2848 | /* ignore output pins identified by set IODR bit */ | ||
2849 | if ((gpio.smask &= ~rd_reg32(info, IODR)) == 0) | ||
2850 | return -EINVAL; | ||
2851 | init_cond_wait(&wait, gpio.smask); | ||
2852 | |||
2853 | spin_lock_irqsave(&info->lock, flags); | ||
2854 | /* enable interrupts for watched pins */ | ||
2855 | wr_reg32(info, IOER, rd_reg32(info, IOER) | gpio.smask); | ||
2856 | /* get current pin states */ | ||
2857 | state = rd_reg32(info, IOVR); | ||
2858 | |||
2859 | if (gpio.smask & ~(state ^ gpio.state)) { | ||
2860 | /* already in target state */ | ||
2861 | gpio.state = state; | ||
2862 | } else { | ||
2863 | /* wait for target state */ | ||
2864 | add_cond_wait(&info->gpio_wait_q, &wait); | ||
2865 | spin_unlock_irqrestore(&info->lock, flags); | ||
2866 | schedule(); | ||
2867 | if (signal_pending(current)) | ||
2868 | rc = -ERESTARTSYS; | ||
2869 | else | ||
2870 | gpio.state = wait.data; | ||
2871 | spin_lock_irqsave(&info->lock, flags); | ||
2872 | remove_cond_wait(&info->gpio_wait_q, &wait); | ||
2873 | } | ||
2874 | |||
2875 | /* disable all GPIO interrupts if no waiting processes */ | ||
2876 | if (info->gpio_wait_q == NULL) | ||
2877 | wr_reg32(info, IOER, 0); | ||
2878 | spin_unlock_irqrestore(&info->lock,flags); | ||
2879 | |||
2880 | if ((rc == 0) && copy_to_user(user_gpio, &gpio, sizeof(gpio))) | ||
2881 | rc = -EFAULT; | ||
2882 | return rc; | ||
2883 | } | ||
2884 | |||
2653 | static int modem_input_wait(struct slgt_info *info,int arg) | 2885 | static int modem_input_wait(struct slgt_info *info,int arg) |
2654 | { | 2886 | { |
2655 | unsigned long flags; | 2887 | unsigned long flags; |
@@ -3166,8 +3398,10 @@ static void device_init(int adapter_num, struct pci_dev *pdev) | |||
3166 | } else { | 3398 | } else { |
3167 | port_array[0]->irq_requested = 1; | 3399 | port_array[0]->irq_requested = 1; |
3168 | adapter_test(port_array[0]); | 3400 | adapter_test(port_array[0]); |
3169 | for (i=1 ; i < port_count ; i++) | 3401 | for (i=1 ; i < port_count ; i++) { |
3170 | port_array[i]->init_error = port_array[0]->init_error; | 3402 | port_array[i]->init_error = port_array[0]->init_error; |
3403 | port_array[i]->gpio_present = port_array[0]->gpio_present; | ||
3404 | } | ||
3171 | } | 3405 | } |
3172 | } | 3406 | } |
3173 | } | 3407 | } |
@@ -4301,7 +4535,7 @@ static int register_test(struct slgt_info *info) | |||
4301 | break; | 4535 | break; |
4302 | } | 4536 | } |
4303 | } | 4537 | } |
4304 | 4538 | info->gpio_present = (rd_reg32(info, JCR) & BIT5) ? 1 : 0; | |
4305 | info->init_error = rc ? 0 : DiagStatus_AddressFailure; | 4539 | info->init_error = rc ? 0 : DiagStatus_AddressFailure; |
4306 | return rc; | 4540 | return rc; |
4307 | } | 4541 | } |
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index aed80e6aec6d..9b6ae7dc8b8a 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
@@ -52,9 +52,8 @@ static void handle_update(void *data); | |||
52 | * changes to devices when the CPU clock speed changes. | 52 | * changes to devices when the CPU clock speed changes. |
53 | * The mutex locks both lists. | 53 | * The mutex locks both lists. |
54 | */ | 54 | */ |
55 | static struct notifier_block *cpufreq_policy_notifier_list; | 55 | static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list); |
56 | static struct notifier_block *cpufreq_transition_notifier_list; | 56 | static BLOCKING_NOTIFIER_HEAD(cpufreq_transition_notifier_list); |
57 | static DECLARE_RWSEM (cpufreq_notifier_rwsem); | ||
58 | 57 | ||
59 | 58 | ||
60 | static LIST_HEAD(cpufreq_governor_list); | 59 | static LIST_HEAD(cpufreq_governor_list); |
@@ -247,8 +246,6 @@ void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state) | |||
247 | dprintk("notification %u of frequency transition to %u kHz\n", | 246 | dprintk("notification %u of frequency transition to %u kHz\n", |
248 | state, freqs->new); | 247 | state, freqs->new); |
249 | 248 | ||
250 | down_read(&cpufreq_notifier_rwsem); | ||
251 | |||
252 | policy = cpufreq_cpu_data[freqs->cpu]; | 249 | policy = cpufreq_cpu_data[freqs->cpu]; |
253 | switch (state) { | 250 | switch (state) { |
254 | 251 | ||
@@ -266,20 +263,19 @@ void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state) | |||
266 | freqs->old = policy->cur; | 263 | freqs->old = policy->cur; |
267 | } | 264 | } |
268 | } | 265 | } |
269 | notifier_call_chain(&cpufreq_transition_notifier_list, | 266 | blocking_notifier_call_chain(&cpufreq_transition_notifier_list, |
270 | CPUFREQ_PRECHANGE, freqs); | 267 | CPUFREQ_PRECHANGE, freqs); |
271 | adjust_jiffies(CPUFREQ_PRECHANGE, freqs); | 268 | adjust_jiffies(CPUFREQ_PRECHANGE, freqs); |
272 | break; | 269 | break; |
273 | 270 | ||
274 | case CPUFREQ_POSTCHANGE: | 271 | case CPUFREQ_POSTCHANGE: |
275 | adjust_jiffies(CPUFREQ_POSTCHANGE, freqs); | 272 | adjust_jiffies(CPUFREQ_POSTCHANGE, freqs); |
276 | notifier_call_chain(&cpufreq_transition_notifier_list, | 273 | blocking_notifier_call_chain(&cpufreq_transition_notifier_list, |
277 | CPUFREQ_POSTCHANGE, freqs); | 274 | CPUFREQ_POSTCHANGE, freqs); |
278 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) | 275 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) |
279 | policy->cur = freqs->new; | 276 | policy->cur = freqs->new; |
280 | break; | 277 | break; |
281 | } | 278 | } |
282 | up_read(&cpufreq_notifier_rwsem); | ||
283 | } | 279 | } |
284 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); | 280 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); |
285 | 281 | ||
@@ -1007,7 +1003,7 @@ static int cpufreq_suspend(struct sys_device * sysdev, pm_message_t pmsg) | |||
1007 | freqs.old = cpu_policy->cur; | 1003 | freqs.old = cpu_policy->cur; |
1008 | freqs.new = cur_freq; | 1004 | freqs.new = cur_freq; |
1009 | 1005 | ||
1010 | notifier_call_chain(&cpufreq_transition_notifier_list, | 1006 | blocking_notifier_call_chain(&cpufreq_transition_notifier_list, |
1011 | CPUFREQ_SUSPENDCHANGE, &freqs); | 1007 | CPUFREQ_SUSPENDCHANGE, &freqs); |
1012 | adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs); | 1008 | adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs); |
1013 | 1009 | ||
@@ -1088,7 +1084,8 @@ static int cpufreq_resume(struct sys_device * sysdev) | |||
1088 | freqs.old = cpu_policy->cur; | 1084 | freqs.old = cpu_policy->cur; |
1089 | freqs.new = cur_freq; | 1085 | freqs.new = cur_freq; |
1090 | 1086 | ||
1091 | notifier_call_chain(&cpufreq_transition_notifier_list, | 1087 | blocking_notifier_call_chain( |
1088 | &cpufreq_transition_notifier_list, | ||
1092 | CPUFREQ_RESUMECHANGE, &freqs); | 1089 | CPUFREQ_RESUMECHANGE, &freqs); |
1093 | adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs); | 1090 | adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs); |
1094 | 1091 | ||
@@ -1125,24 +1122,24 @@ static struct sysdev_driver cpufreq_sysdev_driver = { | |||
1125 | * changes in cpufreq policy. | 1122 | * changes in cpufreq policy. |
1126 | * | 1123 | * |
1127 | * This function may sleep, and has the same return conditions as | 1124 | * This function may sleep, and has the same return conditions as |
1128 | * notifier_chain_register. | 1125 | * blocking_notifier_chain_register. |
1129 | */ | 1126 | */ |
1130 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) | 1127 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) |
1131 | { | 1128 | { |
1132 | int ret; | 1129 | int ret; |
1133 | 1130 | ||
1134 | down_write(&cpufreq_notifier_rwsem); | ||
1135 | switch (list) { | 1131 | switch (list) { |
1136 | case CPUFREQ_TRANSITION_NOTIFIER: | 1132 | case CPUFREQ_TRANSITION_NOTIFIER: |
1137 | ret = notifier_chain_register(&cpufreq_transition_notifier_list, nb); | 1133 | ret = blocking_notifier_chain_register( |
1134 | &cpufreq_transition_notifier_list, nb); | ||
1138 | break; | 1135 | break; |
1139 | case CPUFREQ_POLICY_NOTIFIER: | 1136 | case CPUFREQ_POLICY_NOTIFIER: |
1140 | ret = notifier_chain_register(&cpufreq_policy_notifier_list, nb); | 1137 | ret = blocking_notifier_chain_register( |
1138 | &cpufreq_policy_notifier_list, nb); | ||
1141 | break; | 1139 | break; |
1142 | default: | 1140 | default: |
1143 | ret = -EINVAL; | 1141 | ret = -EINVAL; |
1144 | } | 1142 | } |
1145 | up_write(&cpufreq_notifier_rwsem); | ||
1146 | 1143 | ||
1147 | return ret; | 1144 | return ret; |
1148 | } | 1145 | } |
@@ -1157,24 +1154,24 @@ EXPORT_SYMBOL(cpufreq_register_notifier); | |||
1157 | * Remove a driver from the CPU frequency notifier list. | 1154 | * Remove a driver from the CPU frequency notifier list. |
1158 | * | 1155 | * |
1159 | * This function may sleep, and has the same return conditions as | 1156 | * This function may sleep, and has the same return conditions as |
1160 | * notifier_chain_unregister. | 1157 | * blocking_notifier_chain_unregister. |
1161 | */ | 1158 | */ |
1162 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) | 1159 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) |
1163 | { | 1160 | { |
1164 | int ret; | 1161 | int ret; |
1165 | 1162 | ||
1166 | down_write(&cpufreq_notifier_rwsem); | ||
1167 | switch (list) { | 1163 | switch (list) { |
1168 | case CPUFREQ_TRANSITION_NOTIFIER: | 1164 | case CPUFREQ_TRANSITION_NOTIFIER: |
1169 | ret = notifier_chain_unregister(&cpufreq_transition_notifier_list, nb); | 1165 | ret = blocking_notifier_chain_unregister( |
1166 | &cpufreq_transition_notifier_list, nb); | ||
1170 | break; | 1167 | break; |
1171 | case CPUFREQ_POLICY_NOTIFIER: | 1168 | case CPUFREQ_POLICY_NOTIFIER: |
1172 | ret = notifier_chain_unregister(&cpufreq_policy_notifier_list, nb); | 1169 | ret = blocking_notifier_chain_unregister( |
1170 | &cpufreq_policy_notifier_list, nb); | ||
1173 | break; | 1171 | break; |
1174 | default: | 1172 | default: |
1175 | ret = -EINVAL; | 1173 | ret = -EINVAL; |
1176 | } | 1174 | } |
1177 | up_write(&cpufreq_notifier_rwsem); | ||
1178 | 1175 | ||
1179 | return ret; | 1176 | return ret; |
1180 | } | 1177 | } |
@@ -1346,29 +1343,23 @@ static int __cpufreq_set_policy(struct cpufreq_policy *data, struct cpufreq_poli | |||
1346 | if (ret) | 1343 | if (ret) |
1347 | goto error_out; | 1344 | goto error_out; |
1348 | 1345 | ||
1349 | down_read(&cpufreq_notifier_rwsem); | ||
1350 | |||
1351 | /* adjust if necessary - all reasons */ | 1346 | /* adjust if necessary - all reasons */ |
1352 | notifier_call_chain(&cpufreq_policy_notifier_list, CPUFREQ_ADJUST, | 1347 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1353 | policy); | 1348 | CPUFREQ_ADJUST, policy); |
1354 | 1349 | ||
1355 | /* adjust if necessary - hardware incompatibility*/ | 1350 | /* adjust if necessary - hardware incompatibility*/ |
1356 | notifier_call_chain(&cpufreq_policy_notifier_list, CPUFREQ_INCOMPATIBLE, | 1351 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1357 | policy); | 1352 | CPUFREQ_INCOMPATIBLE, policy); |
1358 | 1353 | ||
1359 | /* verify the cpu speed can be set within this limit, | 1354 | /* verify the cpu speed can be set within this limit, |
1360 | which might be different to the first one */ | 1355 | which might be different to the first one */ |
1361 | ret = cpufreq_driver->verify(policy); | 1356 | ret = cpufreq_driver->verify(policy); |
1362 | if (ret) { | 1357 | if (ret) |
1363 | up_read(&cpufreq_notifier_rwsem); | ||
1364 | goto error_out; | 1358 | goto error_out; |
1365 | } | ||
1366 | 1359 | ||
1367 | /* notification of the new policy */ | 1360 | /* notification of the new policy */ |
1368 | notifier_call_chain(&cpufreq_policy_notifier_list, CPUFREQ_NOTIFY, | 1361 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
1369 | policy); | 1362 | CPUFREQ_NOTIFY, policy); |
1370 | |||
1371 | up_read(&cpufreq_notifier_rwsem); | ||
1372 | 1363 | ||
1373 | data->min = policy->min; | 1364 | data->min = policy->min; |
1374 | data->max = policy->max; | 1365 | data->max = policy->max; |
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index ac38766b2583..037f6bf4543c 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c | |||
@@ -35,12 +35,7 @@ | |||
35 | */ | 35 | */ |
36 | 36 | ||
37 | #define DEF_FREQUENCY_UP_THRESHOLD (80) | 37 | #define DEF_FREQUENCY_UP_THRESHOLD (80) |
38 | #define MIN_FREQUENCY_UP_THRESHOLD (0) | ||
39 | #define MAX_FREQUENCY_UP_THRESHOLD (100) | ||
40 | |||
41 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) | 38 | #define DEF_FREQUENCY_DOWN_THRESHOLD (20) |
42 | #define MIN_FREQUENCY_DOWN_THRESHOLD (0) | ||
43 | #define MAX_FREQUENCY_DOWN_THRESHOLD (100) | ||
44 | 39 | ||
45 | /* | 40 | /* |
46 | * The polling frequency of this governor depends on the capability of | 41 | * The polling frequency of this governor depends on the capability of |
@@ -53,10 +48,14 @@ | |||
53 | * All times here are in uS. | 48 | * All times here are in uS. |
54 | */ | 49 | */ |
55 | static unsigned int def_sampling_rate; | 50 | static unsigned int def_sampling_rate; |
56 | #define MIN_SAMPLING_RATE (def_sampling_rate / 2) | 51 | #define MIN_SAMPLING_RATE_RATIO (2) |
52 | /* for correct statistics, we need at least 10 ticks between each measure */ | ||
53 | #define MIN_STAT_SAMPLING_RATE (MIN_SAMPLING_RATE_RATIO * jiffies_to_usecs(10)) | ||
54 | #define MIN_SAMPLING_RATE (def_sampling_rate / MIN_SAMPLING_RATE_RATIO) | ||
57 | #define MAX_SAMPLING_RATE (500 * def_sampling_rate) | 55 | #define MAX_SAMPLING_RATE (500 * def_sampling_rate) |
58 | #define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (100000) | 56 | #define DEF_SAMPLING_RATE_LATENCY_MULTIPLIER (1000) |
59 | #define DEF_SAMPLING_DOWN_FACTOR (5) | 57 | #define DEF_SAMPLING_DOWN_FACTOR (1) |
58 | #define MAX_SAMPLING_DOWN_FACTOR (10) | ||
60 | #define TRANSITION_LATENCY_LIMIT (10 * 1000) | 59 | #define TRANSITION_LATENCY_LIMIT (10 * 1000) |
61 | 60 | ||
62 | static void do_dbs_timer(void *data); | 61 | static void do_dbs_timer(void *data); |
@@ -66,6 +65,8 @@ struct cpu_dbs_info_s { | |||
66 | unsigned int prev_cpu_idle_up; | 65 | unsigned int prev_cpu_idle_up; |
67 | unsigned int prev_cpu_idle_down; | 66 | unsigned int prev_cpu_idle_down; |
68 | unsigned int enable; | 67 | unsigned int enable; |
68 | unsigned int down_skip; | ||
69 | unsigned int requested_freq; | ||
69 | }; | 70 | }; |
70 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info); | 71 | static DEFINE_PER_CPU(struct cpu_dbs_info_s, cpu_dbs_info); |
71 | 72 | ||
@@ -87,6 +88,8 @@ static struct dbs_tuners dbs_tuners_ins = { | |||
87 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, | 88 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
88 | .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD, | 89 | .down_threshold = DEF_FREQUENCY_DOWN_THRESHOLD, |
89 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, | 90 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, |
91 | .ignore_nice = 0, | ||
92 | .freq_step = 5, | ||
90 | }; | 93 | }; |
91 | 94 | ||
92 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) | 95 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) |
@@ -136,7 +139,7 @@ static ssize_t store_sampling_down_factor(struct cpufreq_policy *unused, | |||
136 | unsigned int input; | 139 | unsigned int input; |
137 | int ret; | 140 | int ret; |
138 | ret = sscanf (buf, "%u", &input); | 141 | ret = sscanf (buf, "%u", &input); |
139 | if (ret != 1 ) | 142 | if (ret != 1 || input > MAX_SAMPLING_DOWN_FACTOR || input < 1) |
140 | return -EINVAL; | 143 | return -EINVAL; |
141 | 144 | ||
142 | mutex_lock(&dbs_mutex); | 145 | mutex_lock(&dbs_mutex); |
@@ -173,8 +176,7 @@ static ssize_t store_up_threshold(struct cpufreq_policy *unused, | |||
173 | ret = sscanf (buf, "%u", &input); | 176 | ret = sscanf (buf, "%u", &input); |
174 | 177 | ||
175 | mutex_lock(&dbs_mutex); | 178 | mutex_lock(&dbs_mutex); |
176 | if (ret != 1 || input > MAX_FREQUENCY_UP_THRESHOLD || | 179 | if (ret != 1 || input > 100 || input < 0 || |
177 | input < MIN_FREQUENCY_UP_THRESHOLD || | ||
178 | input <= dbs_tuners_ins.down_threshold) { | 180 | input <= dbs_tuners_ins.down_threshold) { |
179 | mutex_unlock(&dbs_mutex); | 181 | mutex_unlock(&dbs_mutex); |
180 | return -EINVAL; | 182 | return -EINVAL; |
@@ -194,8 +196,7 @@ static ssize_t store_down_threshold(struct cpufreq_policy *unused, | |||
194 | ret = sscanf (buf, "%u", &input); | 196 | ret = sscanf (buf, "%u", &input); |
195 | 197 | ||
196 | mutex_lock(&dbs_mutex); | 198 | mutex_lock(&dbs_mutex); |
197 | if (ret != 1 || input > MAX_FREQUENCY_DOWN_THRESHOLD || | 199 | if (ret != 1 || input > 100 || input < 0 || |
198 | input < MIN_FREQUENCY_DOWN_THRESHOLD || | ||
199 | input >= dbs_tuners_ins.up_threshold) { | 200 | input >= dbs_tuners_ins.up_threshold) { |
200 | mutex_unlock(&dbs_mutex); | 201 | mutex_unlock(&dbs_mutex); |
201 | return -EINVAL; | 202 | return -EINVAL; |
@@ -297,31 +298,17 @@ static struct attribute_group dbs_attr_group = { | |||
297 | static void dbs_check_cpu(int cpu) | 298 | static void dbs_check_cpu(int cpu) |
298 | { | 299 | { |
299 | unsigned int idle_ticks, up_idle_ticks, down_idle_ticks; | 300 | unsigned int idle_ticks, up_idle_ticks, down_idle_ticks; |
301 | unsigned int tmp_idle_ticks, total_idle_ticks; | ||
300 | unsigned int freq_step; | 302 | unsigned int freq_step; |
301 | unsigned int freq_down_sampling_rate; | 303 | unsigned int freq_down_sampling_rate; |
302 | static int down_skip[NR_CPUS]; | 304 | struct cpu_dbs_info_s *this_dbs_info = &per_cpu(cpu_dbs_info, cpu); |
303 | static int requested_freq[NR_CPUS]; | ||
304 | static unsigned short init_flag = 0; | ||
305 | struct cpu_dbs_info_s *this_dbs_info; | ||
306 | struct cpu_dbs_info_s *dbs_info; | ||
307 | |||
308 | struct cpufreq_policy *policy; | 305 | struct cpufreq_policy *policy; |
309 | unsigned int j; | ||
310 | 306 | ||
311 | this_dbs_info = &per_cpu(cpu_dbs_info, cpu); | ||
312 | if (!this_dbs_info->enable) | 307 | if (!this_dbs_info->enable) |
313 | return; | 308 | return; |
314 | 309 | ||
315 | policy = this_dbs_info->cur_policy; | 310 | policy = this_dbs_info->cur_policy; |
316 | 311 | ||
317 | if ( init_flag == 0 ) { | ||
318 | for_each_online_cpu(j) { | ||
319 | dbs_info = &per_cpu(cpu_dbs_info, j); | ||
320 | requested_freq[j] = dbs_info->cur_policy->cur; | ||
321 | } | ||
322 | init_flag = 1; | ||
323 | } | ||
324 | |||
325 | /* | 312 | /* |
326 | * The default safe range is 20% to 80% | 313 | * The default safe range is 20% to 80% |
327 | * Every sampling_rate, we check | 314 | * Every sampling_rate, we check |
@@ -337,39 +324,29 @@ static void dbs_check_cpu(int cpu) | |||
337 | */ | 324 | */ |
338 | 325 | ||
339 | /* Check for frequency increase */ | 326 | /* Check for frequency increase */ |
340 | |||
341 | idle_ticks = UINT_MAX; | 327 | idle_ticks = UINT_MAX; |
342 | for_each_cpu_mask(j, policy->cpus) { | ||
343 | unsigned int tmp_idle_ticks, total_idle_ticks; | ||
344 | struct cpu_dbs_info_s *j_dbs_info; | ||
345 | 328 | ||
346 | j_dbs_info = &per_cpu(cpu_dbs_info, j); | 329 | /* Check for frequency increase */ |
347 | /* Check for frequency increase */ | 330 | total_idle_ticks = get_cpu_idle_time(cpu); |
348 | total_idle_ticks = get_cpu_idle_time(j); | 331 | tmp_idle_ticks = total_idle_ticks - |
349 | tmp_idle_ticks = total_idle_ticks - | 332 | this_dbs_info->prev_cpu_idle_up; |
350 | j_dbs_info->prev_cpu_idle_up; | 333 | this_dbs_info->prev_cpu_idle_up = total_idle_ticks; |
351 | j_dbs_info->prev_cpu_idle_up = total_idle_ticks; | 334 | |
352 | 335 | if (tmp_idle_ticks < idle_ticks) | |
353 | if (tmp_idle_ticks < idle_ticks) | 336 | idle_ticks = tmp_idle_ticks; |
354 | idle_ticks = tmp_idle_ticks; | ||
355 | } | ||
356 | 337 | ||
357 | /* Scale idle ticks by 100 and compare with up and down ticks */ | 338 | /* Scale idle ticks by 100 and compare with up and down ticks */ |
358 | idle_ticks *= 100; | 339 | idle_ticks *= 100; |
359 | up_idle_ticks = (100 - dbs_tuners_ins.up_threshold) * | 340 | up_idle_ticks = (100 - dbs_tuners_ins.up_threshold) * |
360 | usecs_to_jiffies(dbs_tuners_ins.sampling_rate); | 341 | usecs_to_jiffies(dbs_tuners_ins.sampling_rate); |
361 | 342 | ||
362 | if (idle_ticks < up_idle_ticks) { | 343 | if (idle_ticks < up_idle_ticks) { |
363 | down_skip[cpu] = 0; | 344 | this_dbs_info->down_skip = 0; |
364 | for_each_cpu_mask(j, policy->cpus) { | 345 | this_dbs_info->prev_cpu_idle_down = |
365 | struct cpu_dbs_info_s *j_dbs_info; | 346 | this_dbs_info->prev_cpu_idle_up; |
366 | 347 | ||
367 | j_dbs_info = &per_cpu(cpu_dbs_info, j); | ||
368 | j_dbs_info->prev_cpu_idle_down = | ||
369 | j_dbs_info->prev_cpu_idle_up; | ||
370 | } | ||
371 | /* if we are already at full speed then break out early */ | 348 | /* if we are already at full speed then break out early */ |
372 | if (requested_freq[cpu] == policy->max) | 349 | if (this_dbs_info->requested_freq == policy->max) |
373 | return; | 350 | return; |
374 | 351 | ||
375 | freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100; | 352 | freq_step = (dbs_tuners_ins.freq_step * policy->max) / 100; |
@@ -378,49 +355,45 @@ static void dbs_check_cpu(int cpu) | |||
378 | if (unlikely(freq_step == 0)) | 355 | if (unlikely(freq_step == 0)) |
379 | freq_step = 5; | 356 | freq_step = 5; |
380 | 357 | ||
381 | requested_freq[cpu] += freq_step; | 358 | this_dbs_info->requested_freq += freq_step; |
382 | if (requested_freq[cpu] > policy->max) | 359 | if (this_dbs_info->requested_freq > policy->max) |
383 | requested_freq[cpu] = policy->max; | 360 | this_dbs_info->requested_freq = policy->max; |
384 | 361 | ||
385 | __cpufreq_driver_target(policy, requested_freq[cpu], | 362 | __cpufreq_driver_target(policy, this_dbs_info->requested_freq, |
386 | CPUFREQ_RELATION_H); | 363 | CPUFREQ_RELATION_H); |
387 | return; | 364 | return; |
388 | } | 365 | } |
389 | 366 | ||
390 | /* Check for frequency decrease */ | 367 | /* Check for frequency decrease */ |
391 | down_skip[cpu]++; | 368 | this_dbs_info->down_skip++; |
392 | if (down_skip[cpu] < dbs_tuners_ins.sampling_down_factor) | 369 | if (this_dbs_info->down_skip < dbs_tuners_ins.sampling_down_factor) |
393 | return; | 370 | return; |
394 | 371 | ||
395 | idle_ticks = UINT_MAX; | 372 | /* Check for frequency decrease */ |
396 | for_each_cpu_mask(j, policy->cpus) { | 373 | total_idle_ticks = this_dbs_info->prev_cpu_idle_up; |
397 | unsigned int tmp_idle_ticks, total_idle_ticks; | 374 | tmp_idle_ticks = total_idle_ticks - |
398 | struct cpu_dbs_info_s *j_dbs_info; | 375 | this_dbs_info->prev_cpu_idle_down; |
376 | this_dbs_info->prev_cpu_idle_down = total_idle_ticks; | ||
399 | 377 | ||
400 | j_dbs_info = &per_cpu(cpu_dbs_info, j); | 378 | if (tmp_idle_ticks < idle_ticks) |
401 | total_idle_ticks = j_dbs_info->prev_cpu_idle_up; | 379 | idle_ticks = tmp_idle_ticks; |
402 | tmp_idle_ticks = total_idle_ticks - | ||
403 | j_dbs_info->prev_cpu_idle_down; | ||
404 | j_dbs_info->prev_cpu_idle_down = total_idle_ticks; | ||
405 | |||
406 | if (tmp_idle_ticks < idle_ticks) | ||
407 | idle_ticks = tmp_idle_ticks; | ||
408 | } | ||
409 | 380 | ||
410 | /* Scale idle ticks by 100 and compare with up and down ticks */ | 381 | /* Scale idle ticks by 100 and compare with up and down ticks */ |
411 | idle_ticks *= 100; | 382 | idle_ticks *= 100; |
412 | down_skip[cpu] = 0; | 383 | this_dbs_info->down_skip = 0; |
413 | 384 | ||
414 | freq_down_sampling_rate = dbs_tuners_ins.sampling_rate * | 385 | freq_down_sampling_rate = dbs_tuners_ins.sampling_rate * |
415 | dbs_tuners_ins.sampling_down_factor; | 386 | dbs_tuners_ins.sampling_down_factor; |
416 | down_idle_ticks = (100 - dbs_tuners_ins.down_threshold) * | 387 | down_idle_ticks = (100 - dbs_tuners_ins.down_threshold) * |
417 | usecs_to_jiffies(freq_down_sampling_rate); | 388 | usecs_to_jiffies(freq_down_sampling_rate); |
418 | 389 | ||
419 | if (idle_ticks > down_idle_ticks) { | 390 | if (idle_ticks > down_idle_ticks) { |
420 | /* if we are already at the lowest speed then break out early | 391 | /* |
392 | * if we are already at the lowest speed then break out early | ||
421 | * or if we 'cannot' reduce the speed as the user might want | 393 | * or if we 'cannot' reduce the speed as the user might want |
422 | * freq_step to be zero */ | 394 | * freq_step to be zero |
423 | if (requested_freq[cpu] == policy->min | 395 | */ |
396 | if (this_dbs_info->requested_freq == policy->min | ||
424 | || dbs_tuners_ins.freq_step == 0) | 397 | || dbs_tuners_ins.freq_step == 0) |
425 | return; | 398 | return; |
426 | 399 | ||
@@ -430,13 +403,12 @@ static void dbs_check_cpu(int cpu) | |||
430 | if (unlikely(freq_step == 0)) | 403 | if (unlikely(freq_step == 0)) |
431 | freq_step = 5; | 404 | freq_step = 5; |
432 | 405 | ||
433 | requested_freq[cpu] -= freq_step; | 406 | this_dbs_info->requested_freq -= freq_step; |
434 | if (requested_freq[cpu] < policy->min) | 407 | if (this_dbs_info->requested_freq < policy->min) |
435 | requested_freq[cpu] = policy->min; | 408 | this_dbs_info->requested_freq = policy->min; |
436 | 409 | ||
437 | __cpufreq_driver_target(policy, | 410 | __cpufreq_driver_target(policy, this_dbs_info->requested_freq, |
438 | requested_freq[cpu], | 411 | CPUFREQ_RELATION_H); |
439 | CPUFREQ_RELATION_H); | ||
440 | return; | 412 | return; |
441 | } | 413 | } |
442 | } | 414 | } |
@@ -493,11 +465,13 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
493 | j_dbs_info = &per_cpu(cpu_dbs_info, j); | 465 | j_dbs_info = &per_cpu(cpu_dbs_info, j); |
494 | j_dbs_info->cur_policy = policy; | 466 | j_dbs_info->cur_policy = policy; |
495 | 467 | ||
496 | j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(j); | 468 | j_dbs_info->prev_cpu_idle_up = get_cpu_idle_time(cpu); |
497 | j_dbs_info->prev_cpu_idle_down | 469 | j_dbs_info->prev_cpu_idle_down |
498 | = j_dbs_info->prev_cpu_idle_up; | 470 | = j_dbs_info->prev_cpu_idle_up; |
499 | } | 471 | } |
500 | this_dbs_info->enable = 1; | 472 | this_dbs_info->enable = 1; |
473 | this_dbs_info->down_skip = 0; | ||
474 | this_dbs_info->requested_freq = policy->cur; | ||
501 | sysfs_create_group(&policy->kobj, &dbs_attr_group); | 475 | sysfs_create_group(&policy->kobj, &dbs_attr_group); |
502 | dbs_enable++; | 476 | dbs_enable++; |
503 | /* | 477 | /* |
@@ -507,16 +481,17 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
507 | if (dbs_enable == 1) { | 481 | if (dbs_enable == 1) { |
508 | unsigned int latency; | 482 | unsigned int latency; |
509 | /* policy latency is in nS. Convert it to uS first */ | 483 | /* policy latency is in nS. Convert it to uS first */ |
484 | latency = policy->cpuinfo.transition_latency / 1000; | ||
485 | if (latency == 0) | ||
486 | latency = 1; | ||
510 | 487 | ||
511 | latency = policy->cpuinfo.transition_latency; | 488 | def_sampling_rate = 10 * latency * |
512 | if (latency < 1000) | ||
513 | latency = 1000; | ||
514 | |||
515 | def_sampling_rate = (latency / 1000) * | ||
516 | DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; | 489 | DEF_SAMPLING_RATE_LATENCY_MULTIPLIER; |
490 | |||
491 | if (def_sampling_rate < MIN_STAT_SAMPLING_RATE) | ||
492 | def_sampling_rate = MIN_STAT_SAMPLING_RATE; | ||
493 | |||
517 | dbs_tuners_ins.sampling_rate = def_sampling_rate; | 494 | dbs_tuners_ins.sampling_rate = def_sampling_rate; |
518 | dbs_tuners_ins.ignore_nice = 0; | ||
519 | dbs_tuners_ins.freq_step = 5; | ||
520 | 495 | ||
521 | dbs_timer_init(); | 496 | dbs_timer_init(); |
522 | } | 497 | } |
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 69aa1db8336c..956d121cb161 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
@@ -84,6 +84,7 @@ struct dbs_tuners { | |||
84 | static struct dbs_tuners dbs_tuners_ins = { | 84 | static struct dbs_tuners dbs_tuners_ins = { |
85 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, | 85 | .up_threshold = DEF_FREQUENCY_UP_THRESHOLD, |
86 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, | 86 | .sampling_down_factor = DEF_SAMPLING_DOWN_FACTOR, |
87 | .ignore_nice = 0, | ||
87 | }; | 88 | }; |
88 | 89 | ||
89 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) | 90 | static inline unsigned int get_cpu_idle_time(unsigned int cpu) |
@@ -350,6 +351,9 @@ static void dbs_check_cpu(int cpu) | |||
350 | freq_next = (freq_next * policy->cur) / | 351 | freq_next = (freq_next * policy->cur) / |
351 | (dbs_tuners_ins.up_threshold - 10); | 352 | (dbs_tuners_ins.up_threshold - 10); |
352 | 353 | ||
354 | if (freq_next < policy->min) | ||
355 | freq_next = policy->min; | ||
356 | |||
353 | if (freq_next <= ((policy->cur * 95) / 100)) | 357 | if (freq_next <= ((policy->cur * 95) / 100)) |
354 | __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_L); | 358 | __cpufreq_driver_target(policy, freq_next, CPUFREQ_RELATION_L); |
355 | } | 359 | } |
@@ -395,8 +399,11 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
395 | return -EINVAL; | 399 | return -EINVAL; |
396 | 400 | ||
397 | if (policy->cpuinfo.transition_latency > | 401 | if (policy->cpuinfo.transition_latency > |
398 | (TRANSITION_LATENCY_LIMIT * 1000)) | 402 | (TRANSITION_LATENCY_LIMIT * 1000)) { |
403 | printk(KERN_WARNING "ondemand governor failed to load " | ||
404 | "due to too long transition latency\n"); | ||
399 | return -EINVAL; | 405 | return -EINVAL; |
406 | } | ||
400 | if (this_dbs_info->enable) /* Already enabled */ | 407 | if (this_dbs_info->enable) /* Already enabled */ |
401 | break; | 408 | break; |
402 | 409 | ||
@@ -431,8 +438,6 @@ static int cpufreq_governor_dbs(struct cpufreq_policy *policy, | |||
431 | def_sampling_rate = MIN_STAT_SAMPLING_RATE; | 438 | def_sampling_rate = MIN_STAT_SAMPLING_RATE; |
432 | 439 | ||
433 | dbs_tuners_ins.sampling_rate = def_sampling_rate; | 440 | dbs_tuners_ins.sampling_rate = def_sampling_rate; |
434 | dbs_tuners_ins.ignore_nice = 0; | ||
435 | |||
436 | dbs_timer_init(); | 441 | dbs_timer_init(); |
437 | } | 442 | } |
438 | 443 | ||
diff --git a/drivers/edac/edac_mc.c b/drivers/edac/edac_mc.c index 905f58ba8e16..ea06e3a4dc35 100644 --- a/drivers/edac/edac_mc.c +++ b/drivers/edac/edac_mc.c | |||
@@ -2044,7 +2044,7 @@ static int __init edac_mc_init(void) | |||
2044 | */ | 2044 | */ |
2045 | clear_pci_parity_errors(); | 2045 | clear_pci_parity_errors(); |
2046 | 2046 | ||
2047 | /* Create the MC sysfs entires */ | 2047 | /* Create the MC sysfs entries */ |
2048 | if (edac_sysfs_memctrl_setup()) { | 2048 | if (edac_sysfs_memctrl_setup()) { |
2049 | edac_printk(KERN_ERR, EDAC_MC, | 2049 | edac_printk(KERN_ERR, EDAC_MC, |
2050 | "Error initializing sysfs code\n"); | 2050 | "Error initializing sysfs code\n"); |
diff --git a/drivers/firmware/dcdbas.c b/drivers/firmware/dcdbas.c index d6543fc4a923..339f405ff708 100644 --- a/drivers/firmware/dcdbas.c +++ b/drivers/firmware/dcdbas.c | |||
@@ -484,26 +484,15 @@ static void dcdbas_host_control(void) | |||
484 | static int dcdbas_reboot_notify(struct notifier_block *nb, unsigned long code, | 484 | static int dcdbas_reboot_notify(struct notifier_block *nb, unsigned long code, |
485 | void *unused) | 485 | void *unused) |
486 | { | 486 | { |
487 | static unsigned int notify_cnt = 0; | ||
488 | |||
489 | switch (code) { | 487 | switch (code) { |
490 | case SYS_DOWN: | 488 | case SYS_DOWN: |
491 | case SYS_HALT: | 489 | case SYS_HALT: |
492 | case SYS_POWER_OFF: | 490 | case SYS_POWER_OFF: |
493 | if (host_control_on_shutdown) { | 491 | if (host_control_on_shutdown) { |
494 | /* firmware is going to perform host control action */ | 492 | /* firmware is going to perform host control action */ |
495 | if (++notify_cnt == 2) { | 493 | printk(KERN_WARNING "Please wait for shutdown " |
496 | printk(KERN_WARNING | 494 | "action to complete...\n"); |
497 | "Please wait for shutdown " | 495 | dcdbas_host_control(); |
498 | "action to complete...\n"); | ||
499 | dcdbas_host_control(); | ||
500 | } | ||
501 | /* | ||
502 | * register again and initiate the host control | ||
503 | * action on the second notification to allow | ||
504 | * everyone that registered to be notified | ||
505 | */ | ||
506 | register_reboot_notifier(nb); | ||
507 | } | 496 | } |
508 | break; | 497 | break; |
509 | } | 498 | } |
@@ -514,7 +503,7 @@ static int dcdbas_reboot_notify(struct notifier_block *nb, unsigned long code, | |||
514 | static struct notifier_block dcdbas_reboot_nb = { | 503 | static struct notifier_block dcdbas_reboot_nb = { |
515 | .notifier_call = dcdbas_reboot_notify, | 504 | .notifier_call = dcdbas_reboot_notify, |
516 | .next = NULL, | 505 | .next = NULL, |
517 | .priority = 0 | 506 | .priority = INT_MIN |
518 | }; | 507 | }; |
519 | 508 | ||
520 | static DCDBAS_BIN_ATTR_RW(smi_data); | 509 | static DCDBAS_BIN_ATTR_RW(smi_data); |
diff --git a/drivers/i2c/chips/Kconfig b/drivers/i2c/chips/Kconfig index f9fae28f5612..7aa5c38f0855 100644 --- a/drivers/i2c/chips/Kconfig +++ b/drivers/i2c/chips/Kconfig | |||
@@ -65,15 +65,6 @@ config SENSORS_PCF8591 | |||
65 | This driver can also be built as a module. If so, the module | 65 | This driver can also be built as a module. If so, the module |
66 | will be called pcf8591. | 66 | will be called pcf8591. |
67 | 67 | ||
68 | config SENSORS_RTC8564 | ||
69 | tristate "Epson 8564 RTC chip" | ||
70 | depends on I2C && EXPERIMENTAL | ||
71 | help | ||
72 | If you say yes here you get support for the Epson 8564 RTC chip. | ||
73 | |||
74 | This driver can also be built as a module. If so, the module | ||
75 | will be called i2c-rtc8564. | ||
76 | |||
77 | config ISP1301_OMAP | 68 | config ISP1301_OMAP |
78 | tristate "Philips ISP1301 with OMAP OTG" | 69 | tristate "Philips ISP1301 with OMAP OTG" |
79 | depends on I2C && ARCH_OMAP_OTG | 70 | depends on I2C && ARCH_OMAP_OTG |
@@ -126,13 +117,4 @@ config SENSORS_MAX6875 | |||
126 | This driver can also be built as a module. If so, the module | 117 | This driver can also be built as a module. If so, the module |
127 | will be called max6875. | 118 | will be called max6875. |
128 | 119 | ||
129 | config RTC_X1205_I2C | ||
130 | tristate "Xicor X1205 RTC chip" | ||
131 | depends on I2C && EXPERIMENTAL | ||
132 | help | ||
133 | If you say yes here you get support for the Xicor X1205 RTC chip. | ||
134 | |||
135 | This driver can also be built as a module. If so, the module | ||
136 | will be called x1205. | ||
137 | |||
138 | endmenu | 120 | endmenu |
diff --git a/drivers/i2c/chips/Makefile b/drivers/i2c/chips/Makefile index 46178b57b1f1..779868ef2e26 100644 --- a/drivers/i2c/chips/Makefile +++ b/drivers/i2c/chips/Makefile | |||
@@ -10,10 +10,8 @@ obj-$(CONFIG_SENSORS_M41T00) += m41t00.o | |||
10 | obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o | 10 | obj-$(CONFIG_SENSORS_PCA9539) += pca9539.o |
11 | obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o | 11 | obj-$(CONFIG_SENSORS_PCF8574) += pcf8574.o |
12 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o | 12 | obj-$(CONFIG_SENSORS_PCF8591) += pcf8591.o |
13 | obj-$(CONFIG_SENSORS_RTC8564) += rtc8564.o | ||
14 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o | 13 | obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o |
15 | obj-$(CONFIG_TPS65010) += tps65010.o | 14 | obj-$(CONFIG_TPS65010) += tps65010.o |
16 | obj-$(CONFIG_RTC_X1205_I2C) += x1205.o | ||
17 | 15 | ||
18 | ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) | 16 | ifeq ($(CONFIG_I2C_DEBUG_CHIP),y) |
19 | EXTRA_CFLAGS += -DDEBUG | 17 | EXTRA_CFLAGS += -DDEBUG |
diff --git a/drivers/i2c/chips/rtc8564.c b/drivers/i2c/chips/rtc8564.c deleted file mode 100644 index 0d8699b3f488..000000000000 --- a/drivers/i2c/chips/rtc8564.c +++ /dev/null | |||
@@ -1,385 +0,0 @@ | |||
1 | /* | ||
2 | * linux/drivers/i2c/chips/rtc8564.c | ||
3 | * | ||
4 | * Copyright (C) 2002-2004 Stefan Eletzhofer | ||
5 | * | ||
6 | * based on linux/drivers/acron/char/pcf8583.c | ||
7 | * Copyright (C) 2000 Russell King | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | * | ||
13 | * Driver for system3's EPSON RTC 8564 chip | ||
14 | */ | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/kernel.h> | ||
17 | #include <linux/bcd.h> | ||
18 | #include <linux/i2c.h> | ||
19 | #include <linux/slab.h> | ||
20 | #include <linux/string.h> | ||
21 | #include <linux/rtc.h> /* get the user-level API */ | ||
22 | #include <linux/init.h> | ||
23 | |||
24 | #include "rtc8564.h" | ||
25 | |||
26 | #ifdef DEBUG | ||
27 | # define _DBG(x, fmt, args...) do{ if (debug>=x) printk(KERN_DEBUG"%s: " fmt "\n", __FUNCTION__, ##args); } while(0); | ||
28 | #else | ||
29 | # define _DBG(x, fmt, args...) do { } while(0); | ||
30 | #endif | ||
31 | |||
32 | #define _DBGRTCTM(x, rtctm) if (debug>=x) printk("%s: secs=%d, mins=%d, hours=%d, mday=%d, " \ | ||
33 | "mon=%d, year=%d, wday=%d VL=%d\n", __FUNCTION__, \ | ||
34 | (rtctm).secs, (rtctm).mins, (rtctm).hours, (rtctm).mday, \ | ||
35 | (rtctm).mon, (rtctm).year, (rtctm).wday, (rtctm).vl); | ||
36 | |||
37 | struct rtc8564_data { | ||
38 | struct i2c_client client; | ||
39 | u16 ctrl; | ||
40 | }; | ||
41 | |||
42 | static inline u8 _rtc8564_ctrl1(struct i2c_client *client) | ||
43 | { | ||
44 | struct rtc8564_data *data = i2c_get_clientdata(client); | ||
45 | return data->ctrl & 0xff; | ||
46 | } | ||
47 | static inline u8 _rtc8564_ctrl2(struct i2c_client *client) | ||
48 | { | ||
49 | struct rtc8564_data *data = i2c_get_clientdata(client); | ||
50 | return (data->ctrl & 0xff00) >> 8; | ||
51 | } | ||
52 | |||
53 | #define CTRL1(c) _rtc8564_ctrl1(c) | ||
54 | #define CTRL2(c) _rtc8564_ctrl2(c) | ||
55 | |||
56 | static int debug; | ||
57 | module_param(debug, int, S_IRUGO | S_IWUSR); | ||
58 | |||
59 | static struct i2c_driver rtc8564_driver; | ||
60 | |||
61 | static unsigned short ignore[] = { I2C_CLIENT_END }; | ||
62 | static unsigned short normal_addr[] = { 0x51, I2C_CLIENT_END }; | ||
63 | |||
64 | static struct i2c_client_address_data addr_data = { | ||
65 | .normal_i2c = normal_addr, | ||
66 | .probe = ignore, | ||
67 | .ignore = ignore, | ||
68 | }; | ||
69 | |||
70 | static int rtc8564_read_mem(struct i2c_client *client, struct mem *mem); | ||
71 | static int rtc8564_write_mem(struct i2c_client *client, struct mem *mem); | ||
72 | |||
73 | static int rtc8564_read(struct i2c_client *client, unsigned char adr, | ||
74 | unsigned char *buf, unsigned char len) | ||
75 | { | ||
76 | int ret = -EIO; | ||
77 | unsigned char addr[1] = { adr }; | ||
78 | struct i2c_msg msgs[2] = { | ||
79 | {client->addr, 0, 1, addr}, | ||
80 | {client->addr, I2C_M_RD, len, buf} | ||
81 | }; | ||
82 | |||
83 | _DBG(1, "client=%p, adr=%d, buf=%p, len=%d", client, adr, buf, len); | ||
84 | |||
85 | if (!buf) { | ||
86 | ret = -EINVAL; | ||
87 | goto done; | ||
88 | } | ||
89 | |||
90 | ret = i2c_transfer(client->adapter, msgs, 2); | ||
91 | if (ret == 2) { | ||
92 | ret = 0; | ||
93 | } | ||
94 | |||
95 | done: | ||
96 | return ret; | ||
97 | } | ||
98 | |||
99 | static int rtc8564_write(struct i2c_client *client, unsigned char adr, | ||
100 | unsigned char *data, unsigned char len) | ||
101 | { | ||
102 | int ret = 0; | ||
103 | unsigned char _data[16]; | ||
104 | struct i2c_msg wr; | ||
105 | int i; | ||
106 | |||
107 | if (!data || len > 15) { | ||
108 | ret = -EINVAL; | ||
109 | goto done; | ||
110 | } | ||
111 | |||
112 | _DBG(1, "client=%p, adr=%d, buf=%p, len=%d", client, adr, data, len); | ||
113 | |||
114 | _data[0] = adr; | ||
115 | for (i = 0; i < len; i++) { | ||
116 | _data[i + 1] = data[i]; | ||
117 | _DBG(5, "data[%d] = 0x%02x (%d)", i, data[i], data[i]); | ||
118 | } | ||
119 | |||
120 | wr.addr = client->addr; | ||
121 | wr.flags = 0; | ||
122 | wr.len = len + 1; | ||
123 | wr.buf = _data; | ||
124 | |||
125 | ret = i2c_transfer(client->adapter, &wr, 1); | ||
126 | if (ret == 1) { | ||
127 | ret = 0; | ||
128 | } | ||
129 | |||
130 | done: | ||
131 | return ret; | ||
132 | } | ||
133 | |||
134 | static int rtc8564_attach(struct i2c_adapter *adap, int addr, int kind) | ||
135 | { | ||
136 | int ret; | ||
137 | struct i2c_client *new_client; | ||
138 | struct rtc8564_data *d; | ||
139 | unsigned char data[10]; | ||
140 | unsigned char ad[1] = { 0 }; | ||
141 | struct i2c_msg ctrl_wr[1] = { | ||
142 | {addr, 0, 2, data} | ||
143 | }; | ||
144 | struct i2c_msg ctrl_rd[2] = { | ||
145 | {addr, 0, 1, ad}, | ||
146 | {addr, I2C_M_RD, 2, data} | ||
147 | }; | ||
148 | |||
149 | d = kzalloc(sizeof(struct rtc8564_data), GFP_KERNEL); | ||
150 | if (!d) { | ||
151 | ret = -ENOMEM; | ||
152 | goto done; | ||
153 | } | ||
154 | new_client = &d->client; | ||
155 | |||
156 | strlcpy(new_client->name, "RTC8564", I2C_NAME_SIZE); | ||
157 | i2c_set_clientdata(new_client, d); | ||
158 | new_client->addr = addr; | ||
159 | new_client->adapter = adap; | ||
160 | new_client->driver = &rtc8564_driver; | ||
161 | |||
162 | _DBG(1, "client=%p", new_client); | ||
163 | |||
164 | /* init ctrl1 reg */ | ||
165 | data[0] = 0; | ||
166 | data[1] = 0; | ||
167 | ret = i2c_transfer(new_client->adapter, ctrl_wr, 1); | ||
168 | if (ret != 1) { | ||
169 | printk(KERN_INFO "rtc8564: cant init ctrl1\n"); | ||
170 | ret = -ENODEV; | ||
171 | goto done; | ||
172 | } | ||
173 | |||
174 | /* read back ctrl1 and ctrl2 */ | ||
175 | ret = i2c_transfer(new_client->adapter, ctrl_rd, 2); | ||
176 | if (ret != 2) { | ||
177 | printk(KERN_INFO "rtc8564: cant read ctrl\n"); | ||
178 | ret = -ENODEV; | ||
179 | goto done; | ||
180 | } | ||
181 | |||
182 | d->ctrl = data[0] | (data[1] << 8); | ||
183 | |||
184 | _DBG(1, "RTC8564_REG_CTRL1=%02x, RTC8564_REG_CTRL2=%02x", | ||
185 | data[0], data[1]); | ||
186 | |||
187 | ret = i2c_attach_client(new_client); | ||
188 | done: | ||
189 | if (ret) { | ||
190 | kfree(d); | ||
191 | } | ||
192 | return ret; | ||
193 | } | ||
194 | |||
195 | static int rtc8564_probe(struct i2c_adapter *adap) | ||
196 | { | ||
197 | return i2c_probe(adap, &addr_data, rtc8564_attach); | ||
198 | } | ||
199 | |||
200 | static int rtc8564_detach(struct i2c_client *client) | ||
201 | { | ||
202 | i2c_detach_client(client); | ||
203 | kfree(i2c_get_clientdata(client)); | ||
204 | return 0; | ||
205 | } | ||
206 | |||
207 | static int rtc8564_get_datetime(struct i2c_client *client, struct rtc_tm *dt) | ||
208 | { | ||
209 | int ret = -EIO; | ||
210 | unsigned char buf[15]; | ||
211 | |||
212 | _DBG(1, "client=%p, dt=%p", client, dt); | ||
213 | |||
214 | if (!dt) | ||
215 | return -EINVAL; | ||
216 | |||
217 | memset(buf, 0, sizeof(buf)); | ||
218 | |||
219 | ret = rtc8564_read(client, 0, buf, 15); | ||
220 | if (ret) | ||
221 | return ret; | ||
222 | |||
223 | /* century stored in minute alarm reg */ | ||
224 | dt->year = BCD2BIN(buf[RTC8564_REG_YEAR]); | ||
225 | dt->year += 100 * BCD2BIN(buf[RTC8564_REG_AL_MIN] & 0x3f); | ||
226 | dt->mday = BCD2BIN(buf[RTC8564_REG_DAY] & 0x3f); | ||
227 | dt->wday = BCD2BIN(buf[RTC8564_REG_WDAY] & 7); | ||
228 | dt->mon = BCD2BIN(buf[RTC8564_REG_MON_CENT] & 0x1f); | ||
229 | |||
230 | dt->secs = BCD2BIN(buf[RTC8564_REG_SEC] & 0x7f); | ||
231 | dt->vl = (buf[RTC8564_REG_SEC] & 0x80) == 0x80; | ||
232 | dt->mins = BCD2BIN(buf[RTC8564_REG_MIN] & 0x7f); | ||
233 | dt->hours = BCD2BIN(buf[RTC8564_REG_HR] & 0x3f); | ||
234 | |||
235 | _DBGRTCTM(2, *dt); | ||
236 | |||
237 | return 0; | ||
238 | } | ||
239 | |||
240 | static int | ||
241 | rtc8564_set_datetime(struct i2c_client *client, struct rtc_tm *dt, int datetoo) | ||
242 | { | ||
243 | int ret, len = 5; | ||
244 | unsigned char buf[15]; | ||
245 | |||
246 | _DBG(1, "client=%p, dt=%p", client, dt); | ||
247 | |||
248 | if (!dt) | ||
249 | return -EINVAL; | ||
250 | |||
251 | _DBGRTCTM(2, *dt); | ||
252 | |||
253 | buf[RTC8564_REG_CTRL1] = CTRL1(client) | RTC8564_CTRL1_STOP; | ||
254 | buf[RTC8564_REG_CTRL2] = CTRL2(client); | ||
255 | buf[RTC8564_REG_SEC] = BIN2BCD(dt->secs); | ||
256 | buf[RTC8564_REG_MIN] = BIN2BCD(dt->mins); | ||
257 | buf[RTC8564_REG_HR] = BIN2BCD(dt->hours); | ||
258 | |||
259 | if (datetoo) { | ||
260 | len += 5; | ||
261 | buf[RTC8564_REG_DAY] = BIN2BCD(dt->mday); | ||
262 | buf[RTC8564_REG_WDAY] = BIN2BCD(dt->wday); | ||
263 | buf[RTC8564_REG_MON_CENT] = BIN2BCD(dt->mon) & 0x1f; | ||
264 | /* century stored in minute alarm reg */ | ||
265 | buf[RTC8564_REG_YEAR] = BIN2BCD(dt->year % 100); | ||
266 | buf[RTC8564_REG_AL_MIN] = BIN2BCD(dt->year / 100); | ||
267 | } | ||
268 | |||
269 | ret = rtc8564_write(client, 0, buf, len); | ||
270 | if (ret) { | ||
271 | _DBG(1, "error writing data! %d", ret); | ||
272 | } | ||
273 | |||
274 | buf[RTC8564_REG_CTRL1] = CTRL1(client); | ||
275 | ret = rtc8564_write(client, 0, buf, 1); | ||
276 | if (ret) { | ||
277 | _DBG(1, "error writing data! %d", ret); | ||
278 | } | ||
279 | |||
280 | return ret; | ||
281 | } | ||
282 | |||
283 | static int rtc8564_get_ctrl(struct i2c_client *client, unsigned int *ctrl) | ||
284 | { | ||
285 | struct rtc8564_data *data = i2c_get_clientdata(client); | ||
286 | |||
287 | if (!ctrl) | ||
288 | return -1; | ||
289 | |||
290 | *ctrl = data->ctrl; | ||
291 | return 0; | ||
292 | } | ||
293 | |||
294 | static int rtc8564_set_ctrl(struct i2c_client *client, unsigned int *ctrl) | ||
295 | { | ||
296 | struct rtc8564_data *data = i2c_get_clientdata(client); | ||
297 | unsigned char buf[2]; | ||
298 | |||
299 | if (!ctrl) | ||
300 | return -1; | ||
301 | |||
302 | buf[0] = *ctrl & 0xff; | ||
303 | buf[1] = (*ctrl & 0xff00) >> 8; | ||
304 | data->ctrl = *ctrl; | ||
305 | |||
306 | return rtc8564_write(client, 0, buf, 2); | ||
307 | } | ||
308 | |||
309 | static int rtc8564_read_mem(struct i2c_client *client, struct mem *mem) | ||
310 | { | ||
311 | |||
312 | if (!mem) | ||
313 | return -EINVAL; | ||
314 | |||
315 | return rtc8564_read(client, mem->loc, mem->data, mem->nr); | ||
316 | } | ||
317 | |||
318 | static int rtc8564_write_mem(struct i2c_client *client, struct mem *mem) | ||
319 | { | ||
320 | |||
321 | if (!mem) | ||
322 | return -EINVAL; | ||
323 | |||
324 | return rtc8564_write(client, mem->loc, mem->data, mem->nr); | ||
325 | } | ||
326 | |||
327 | static int | ||
328 | rtc8564_command(struct i2c_client *client, unsigned int cmd, void *arg) | ||
329 | { | ||
330 | |||
331 | _DBG(1, "cmd=%d", cmd); | ||
332 | |||
333 | switch (cmd) { | ||
334 | case RTC_GETDATETIME: | ||
335 | return rtc8564_get_datetime(client, arg); | ||
336 | |||
337 | case RTC_SETTIME: | ||
338 | return rtc8564_set_datetime(client, arg, 0); | ||
339 | |||
340 | case RTC_SETDATETIME: | ||
341 | return rtc8564_set_datetime(client, arg, 1); | ||
342 | |||
343 | case RTC_GETCTRL: | ||
344 | return rtc8564_get_ctrl(client, arg); | ||
345 | |||
346 | case RTC_SETCTRL: | ||
347 | return rtc8564_set_ctrl(client, arg); | ||
348 | |||
349 | case MEM_READ: | ||
350 | return rtc8564_read_mem(client, arg); | ||
351 | |||
352 | case MEM_WRITE: | ||
353 | return rtc8564_write_mem(client, arg); | ||
354 | |||
355 | default: | ||
356 | return -EINVAL; | ||
357 | } | ||
358 | } | ||
359 | |||
360 | static struct i2c_driver rtc8564_driver = { | ||
361 | .driver = { | ||
362 | .name = "RTC8564", | ||
363 | }, | ||
364 | .id = I2C_DRIVERID_RTC8564, | ||
365 | .attach_adapter = rtc8564_probe, | ||
366 | .detach_client = rtc8564_detach, | ||
367 | .command = rtc8564_command | ||
368 | }; | ||
369 | |||
370 | static __init int rtc8564_init(void) | ||
371 | { | ||
372 | return i2c_add_driver(&rtc8564_driver); | ||
373 | } | ||
374 | |||
375 | static __exit void rtc8564_exit(void) | ||
376 | { | ||
377 | i2c_del_driver(&rtc8564_driver); | ||
378 | } | ||
379 | |||
380 | MODULE_AUTHOR("Stefan Eletzhofer <Stefan.Eletzhofer@eletztrick.de>"); | ||
381 | MODULE_DESCRIPTION("EPSON RTC8564 Driver"); | ||
382 | MODULE_LICENSE("GPL"); | ||
383 | |||
384 | module_init(rtc8564_init); | ||
385 | module_exit(rtc8564_exit); | ||
diff --git a/drivers/i2c/chips/rtc8564.h b/drivers/i2c/chips/rtc8564.h deleted file mode 100644 index e5342d10b8fa..000000000000 --- a/drivers/i2c/chips/rtc8564.h +++ /dev/null | |||
@@ -1,78 +0,0 @@ | |||
1 | /* | ||
2 | * linux/drivers/i2c/chips/rtc8564.h | ||
3 | * | ||
4 | * Copyright (C) 2002-2004 Stefan Eletzhofer | ||
5 | * | ||
6 | * based on linux/drivers/acron/char/pcf8583.h | ||
7 | * Copyright (C) 2000 Russell King | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | struct rtc_tm { | ||
14 | unsigned char secs; | ||
15 | unsigned char mins; | ||
16 | unsigned char hours; | ||
17 | unsigned char mday; | ||
18 | unsigned char mon; | ||
19 | unsigned short year; /* xxxx 4 digits :) */ | ||
20 | unsigned char wday; | ||
21 | unsigned char vl; | ||
22 | }; | ||
23 | |||
24 | struct mem { | ||
25 | unsigned int loc; | ||
26 | unsigned int nr; | ||
27 | unsigned char *data; | ||
28 | }; | ||
29 | |||
30 | #define RTC_GETDATETIME 0 | ||
31 | #define RTC_SETTIME 1 | ||
32 | #define RTC_SETDATETIME 2 | ||
33 | #define RTC_GETCTRL 3 | ||
34 | #define RTC_SETCTRL 4 | ||
35 | #define MEM_READ 5 | ||
36 | #define MEM_WRITE 6 | ||
37 | |||
38 | #define RTC8564_REG_CTRL1 0x0 /* T 0 S 0 | T 0 0 0 */ | ||
39 | #define RTC8564_REG_CTRL2 0x1 /* 0 0 0 TI/TP | AF TF AIE TIE */ | ||
40 | #define RTC8564_REG_SEC 0x2 /* VL 4 2 1 | 8 4 2 1 */ | ||
41 | #define RTC8564_REG_MIN 0x3 /* x 4 2 1 | 8 4 2 1 */ | ||
42 | #define RTC8564_REG_HR 0x4 /* x x 2 1 | 8 4 2 1 */ | ||
43 | #define RTC8564_REG_DAY 0x5 /* x x 2 1 | 8 4 2 1 */ | ||
44 | #define RTC8564_REG_WDAY 0x6 /* x x x x | x 4 2 1 */ | ||
45 | #define RTC8564_REG_MON_CENT 0x7 /* C x x 1 | 8 4 2 1 */ | ||
46 | #define RTC8564_REG_YEAR 0x8 /* 8 4 2 1 | 8 4 2 1 */ | ||
47 | #define RTC8564_REG_AL_MIN 0x9 /* AE 4 2 1 | 8 4 2 1 */ | ||
48 | #define RTC8564_REG_AL_HR 0xa /* AE 4 2 1 | 8 4 2 1 */ | ||
49 | #define RTC8564_REG_AL_DAY 0xb /* AE x 2 1 | 8 4 2 1 */ | ||
50 | #define RTC8564_REG_AL_WDAY 0xc /* AE x x x | x 4 2 1 */ | ||
51 | #define RTC8564_REG_CLKOUT 0xd /* FE x x x | x x FD1 FD0 */ | ||
52 | #define RTC8564_REG_TCTL 0xe /* TE x x x | x x FD1 FD0 */ | ||
53 | #define RTC8564_REG_TIMER 0xf /* 8 bit binary */ | ||
54 | |||
55 | /* Control reg */ | ||
56 | #define RTC8564_CTRL1_TEST1 (1<<3) | ||
57 | #define RTC8564_CTRL1_STOP (1<<5) | ||
58 | #define RTC8564_CTRL1_TEST2 (1<<7) | ||
59 | |||
60 | #define RTC8564_CTRL2_TIE (1<<0) | ||
61 | #define RTC8564_CTRL2_AIE (1<<1) | ||
62 | #define RTC8564_CTRL2_TF (1<<2) | ||
63 | #define RTC8564_CTRL2_AF (1<<3) | ||
64 | #define RTC8564_CTRL2_TI_TP (1<<4) | ||
65 | |||
66 | /* CLKOUT frequencies */ | ||
67 | #define RTC8564_FD_32768HZ (0x0) | ||
68 | #define RTC8564_FD_1024HZ (0x1) | ||
69 | #define RTC8564_FD_32 (0x2) | ||
70 | #define RTC8564_FD_1HZ (0x3) | ||
71 | |||
72 | /* Timer CTRL */ | ||
73 | #define RTC8564_TD_4096HZ (0x0) | ||
74 | #define RTC8564_TD_64HZ (0x1) | ||
75 | #define RTC8564_TD_1HZ (0x2) | ||
76 | #define RTC8564_TD_1_60HZ (0x3) | ||
77 | |||
78 | #define I2C_DRIVERID_RTC8564 0xf000 | ||
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index c7671e188017..b4a41d6d0714 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c | |||
@@ -2143,6 +2143,7 @@ static int cdrom_read_capacity(ide_drive_t *drive, unsigned long *capacity, | |||
2143 | req.cmd[0] = GPCMD_READ_CDVD_CAPACITY; | 2143 | req.cmd[0] = GPCMD_READ_CDVD_CAPACITY; |
2144 | req.data = (char *)&capbuf; | 2144 | req.data = (char *)&capbuf; |
2145 | req.data_len = sizeof(capbuf); | 2145 | req.data_len = sizeof(capbuf); |
2146 | req.flags |= REQ_QUIET; | ||
2146 | 2147 | ||
2147 | stat = cdrom_queue_packet_command(drive, &req); | 2148 | stat = cdrom_queue_packet_command(drive, &req); |
2148 | if (stat == 0) { | 2149 | if (stat == 0) { |
diff --git a/drivers/ide/ide-tape.c b/drivers/ide/ide-tape.c index ebc59064b475..f04791a58df0 100644 --- a/drivers/ide/ide-tape.c +++ b/drivers/ide/ide-tape.c | |||
@@ -433,6 +433,7 @@ | |||
433 | #include <linux/timer.h> | 433 | #include <linux/timer.h> |
434 | #include <linux/mm.h> | 434 | #include <linux/mm.h> |
435 | #include <linux/interrupt.h> | 435 | #include <linux/interrupt.h> |
436 | #include <linux/jiffies.h> | ||
436 | #include <linux/major.h> | 437 | #include <linux/major.h> |
437 | #include <linux/devfs_fs_kernel.h> | 438 | #include <linux/devfs_fs_kernel.h> |
438 | #include <linux/errno.h> | 439 | #include <linux/errno.h> |
@@ -2336,7 +2337,7 @@ static ide_startstop_t idetape_rw_callback (ide_drive_t *drive) | |||
2336 | } | 2337 | } |
2337 | if (time_after(jiffies, tape->insert_time)) | 2338 | if (time_after(jiffies, tape->insert_time)) |
2338 | tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time); | 2339 | tape->insert_speed = tape->insert_size / 1024 * HZ / (jiffies - tape->insert_time); |
2339 | if (jiffies - tape->avg_time >= HZ) { | 2340 | if (time_after_eq(jiffies, tape->avg_time + HZ)) { |
2340 | tape->avg_speed = tape->avg_size * HZ / (jiffies - tape->avg_time) / 1024; | 2341 | tape->avg_speed = tape->avg_size * HZ / (jiffies - tape->avg_time) / 1024; |
2341 | tape->avg_size = 0; | 2342 | tape->avg_size = 0; |
2342 | tape->avg_time = jiffies; | 2343 | tape->avg_time = jiffies; |
@@ -2497,7 +2498,7 @@ static ide_startstop_t idetape_do_request(ide_drive_t *drive, | |||
2497 | } else { | 2498 | } else { |
2498 | return ide_do_reset(drive); | 2499 | return ide_do_reset(drive); |
2499 | } | 2500 | } |
2500 | } else if (jiffies - tape->dsc_polling_start > IDETAPE_DSC_MA_THRESHOLD) | 2501 | } else if (time_after(jiffies, tape->dsc_polling_start + IDETAPE_DSC_MA_THRESHOLD)) |
2501 | tape->dsc_polling_frequency = IDETAPE_DSC_MA_SLOW; | 2502 | tape->dsc_polling_frequency = IDETAPE_DSC_MA_SLOW; |
2502 | idetape_postpone_request(drive); | 2503 | idetape_postpone_request(drive); |
2503 | return ide_stopped; | 2504 | return ide_stopped; |
diff --git a/drivers/ide/pci/amd74xx.c b/drivers/ide/pci/amd74xx.c index 21965e5ef25e..b22ee5462318 100644 --- a/drivers/ide/pci/amd74xx.c +++ b/drivers/ide/pci/amd74xx.c | |||
@@ -347,10 +347,8 @@ static unsigned int __devinit init_chipset_amd74xx(struct pci_dev *dev, const ch | |||
347 | break; | 347 | break; |
348 | 348 | ||
349 | case AMD_UDMA_66: | 349 | case AMD_UDMA_66: |
350 | pci_read_config_dword(dev, AMD_UDMA_TIMING, &u); | 350 | /* no host side cable detection */ |
351 | for (i = 24; i >= 0; i -= 8) | 351 | amd_80w = 0x03; |
352 | if ((u >> i) & 4) | ||
353 | amd_80w |= (1 << (1 - (i >> 4))); | ||
354 | break; | 352 | break; |
355 | } | 353 | } |
356 | 354 | ||
@@ -386,8 +384,6 @@ static unsigned int __devinit init_chipset_amd74xx(struct pci_dev *dev, const ch | |||
386 | if (amd_clock < 20000 || amd_clock > 50000) { | 384 | if (amd_clock < 20000 || amd_clock > 50000) { |
387 | printk(KERN_WARNING "%s: User given PCI clock speed impossible (%d), using 33 MHz instead.\n", | 385 | printk(KERN_WARNING "%s: User given PCI clock speed impossible (%d), using 33 MHz instead.\n", |
388 | amd_chipset->name, amd_clock); | 386 | amd_chipset->name, amd_clock); |
389 | printk(KERN_WARNING "%s: Use ide0=ata66 if you want to assume 80-wire cable\n", | ||
390 | amd_chipset->name); | ||
391 | amd_clock = 33333; | 387 | amd_clock = 33333; |
392 | } | 388 | } |
393 | 389 | ||
diff --git a/drivers/ide/pci/generic.c b/drivers/ide/pci/generic.c index 6e3ab0c38c4d..f82e82109728 100644 --- a/drivers/ide/pci/generic.c +++ b/drivers/ide/pci/generic.c | |||
@@ -41,14 +41,15 @@ | |||
41 | 41 | ||
42 | static int ide_generic_all; /* Set to claim all devices */ | 42 | static int ide_generic_all; /* Set to claim all devices */ |
43 | 43 | ||
44 | #ifndef MODULE | ||
44 | static int __init ide_generic_all_on(char *unused) | 45 | static int __init ide_generic_all_on(char *unused) |
45 | { | 46 | { |
46 | ide_generic_all = 1; | 47 | ide_generic_all = 1; |
47 | printk(KERN_INFO "IDE generic will claim all unknown PCI IDE storage controllers.\n"); | 48 | printk(KERN_INFO "IDE generic will claim all unknown PCI IDE storage controllers.\n"); |
48 | return 1; | 49 | return 1; |
49 | } | 50 | } |
50 | |||
51 | __setup("all-generic-ide", ide_generic_all_on); | 51 | __setup("all-generic-ide", ide_generic_all_on); |
52 | #endif | ||
52 | 53 | ||
53 | static void __devinit init_hwif_generic (ide_hwif_t *hwif) | 54 | static void __devinit init_hwif_generic (ide_hwif_t *hwif) |
54 | { | 55 | { |
diff --git a/drivers/ide/pci/sis5513.c b/drivers/ide/pci/sis5513.c index 75a2253a3e68..8e9d87701ce2 100644 --- a/drivers/ide/pci/sis5513.c +++ b/drivers/ide/pci/sis5513.c | |||
@@ -112,6 +112,7 @@ static const struct { | |||
112 | 112 | ||
113 | { "SiS5596", PCI_DEVICE_ID_SI_5596, ATA_16 }, | 113 | { "SiS5596", PCI_DEVICE_ID_SI_5596, ATA_16 }, |
114 | { "SiS5571", PCI_DEVICE_ID_SI_5571, ATA_16 }, | 114 | { "SiS5571", PCI_DEVICE_ID_SI_5571, ATA_16 }, |
115 | { "SiS5517", PCI_DEVICE_ID_SI_5517, ATA_16 }, | ||
115 | { "SiS551x", PCI_DEVICE_ID_SI_5511, ATA_16 }, | 116 | { "SiS551x", PCI_DEVICE_ID_SI_5511, ATA_16 }, |
116 | }; | 117 | }; |
117 | 118 | ||
@@ -524,6 +525,7 @@ static void config_art_rwp_pio (ide_drive_t *drive, u8 pio) | |||
524 | case 3: test1 = 0x30|0x03; break; | 525 | case 3: test1 = 0x30|0x03; break; |
525 | case 2: test1 = 0x40|0x04; break; | 526 | case 2: test1 = 0x40|0x04; break; |
526 | case 1: test1 = 0x60|0x07; break; | 527 | case 1: test1 = 0x60|0x07; break; |
528 | case 0: test1 = 0x00; break; | ||
527 | default: break; | 529 | default: break; |
528 | } | 530 | } |
529 | pci_write_config_byte(dev, drive_pci, test1); | 531 | pci_write_config_byte(dev, drive_pci, test1); |
diff --git a/drivers/input/input.c b/drivers/input/input.c index 4fe3da3c667a..f8af0945964e 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
@@ -923,7 +923,7 @@ void input_unregister_handler(struct input_handler *handler) | |||
923 | static int input_open_file(struct inode *inode, struct file *file) | 923 | static int input_open_file(struct inode *inode, struct file *file) |
924 | { | 924 | { |
925 | struct input_handler *handler = input_table[iminor(inode) >> 5]; | 925 | struct input_handler *handler = input_table[iminor(inode) >> 5]; |
926 | struct file_operations *old_fops, *new_fops = NULL; | 926 | const struct file_operations *old_fops, *new_fops = NULL; |
927 | int err; | 927 | int err; |
928 | 928 | ||
929 | /* No load-on-demand here? */ | 929 | /* No load-on-demand here? */ |
diff --git a/drivers/isdn/capi/capi.c b/drivers/isdn/capi/capi.c index 623adbb0d13a..9b493f0becc4 100644 --- a/drivers/isdn/capi/capi.c +++ b/drivers/isdn/capi/capi.c | |||
@@ -1485,6 +1485,7 @@ static int __init capi_init(void) | |||
1485 | { | 1485 | { |
1486 | char *p; | 1486 | char *p; |
1487 | char *compileinfo; | 1487 | char *compileinfo; |
1488 | int major_ret; | ||
1488 | 1489 | ||
1489 | if ((p = strchr(revision, ':')) != 0 && p[1]) { | 1490 | if ((p = strchr(revision, ':')) != 0 && p[1]) { |
1490 | strlcpy(rev, p + 2, sizeof(rev)); | 1491 | strlcpy(rev, p + 2, sizeof(rev)); |
@@ -1493,11 +1494,12 @@ static int __init capi_init(void) | |||
1493 | } else | 1494 | } else |
1494 | strcpy(rev, "1.0"); | 1495 | strcpy(rev, "1.0"); |
1495 | 1496 | ||
1496 | if (register_chrdev(capi_major, "capi20", &capi_fops)) { | 1497 | major_ret = register_chrdev(capi_major, "capi20", &capi_fops); |
1498 | if (major_ret < 0) { | ||
1497 | printk(KERN_ERR "capi20: unable to get major %d\n", capi_major); | 1499 | printk(KERN_ERR "capi20: unable to get major %d\n", capi_major); |
1498 | return -EIO; | 1500 | return major_ret; |
1499 | } | 1501 | } |
1500 | 1502 | capi_major = major_ret; | |
1501 | capi_class = class_create(THIS_MODULE, "capi"); | 1503 | capi_class = class_create(THIS_MODULE, "capi"); |
1502 | if (IS_ERR(capi_class)) { | 1504 | if (IS_ERR(capi_class)) { |
1503 | unregister_chrdev(capi_major, "capi20"); | 1505 | unregister_chrdev(capi_major, "capi20"); |
diff --git a/drivers/isdn/capi/kcapi_proc.c b/drivers/isdn/capi/kcapi_proc.c index 2cc8b27e4c3b..ca9dc00a45c4 100644 --- a/drivers/isdn/capi/kcapi_proc.c +++ b/drivers/isdn/capi/kcapi_proc.c | |||
@@ -233,7 +233,7 @@ static struct file_operations proc_applstats_ops = { | |||
233 | }; | 233 | }; |
234 | 234 | ||
235 | static void | 235 | static void |
236 | create_seq_entry(char *name, mode_t mode, struct file_operations *f) | 236 | create_seq_entry(char *name, mode_t mode, const struct file_operations *f) |
237 | { | 237 | { |
238 | struct proc_dir_entry *entry; | 238 | struct proc_dir_entry *entry; |
239 | entry = create_proc_entry(name, mode, NULL); | 239 | entry = create_proc_entry(name, mode, NULL); |
diff --git a/drivers/macintosh/adb.c b/drivers/macintosh/adb.c index 781d93b0bbd5..259fd8973ce9 100644 --- a/drivers/macintosh/adb.c +++ b/drivers/macintosh/adb.c | |||
@@ -81,7 +81,7 @@ static struct adb_driver *adb_driver_list[] = { | |||
81 | static struct class *adb_dev_class; | 81 | static struct class *adb_dev_class; |
82 | 82 | ||
83 | struct adb_driver *adb_controller; | 83 | struct adb_driver *adb_controller; |
84 | struct notifier_block *adb_client_list = NULL; | 84 | BLOCKING_NOTIFIER_HEAD(adb_client_list); |
85 | static int adb_got_sleep; | 85 | static int adb_got_sleep; |
86 | static int adb_inited; | 86 | static int adb_inited; |
87 | static pid_t adb_probe_task_pid; | 87 | static pid_t adb_probe_task_pid; |
@@ -355,7 +355,8 @@ adb_notify_sleep(struct pmu_sleep_notifier *self, int when) | |||
355 | /* Stop autopoll */ | 355 | /* Stop autopoll */ |
356 | if (adb_controller->autopoll) | 356 | if (adb_controller->autopoll) |
357 | adb_controller->autopoll(0); | 357 | adb_controller->autopoll(0); |
358 | ret = notifier_call_chain(&adb_client_list, ADB_MSG_POWERDOWN, NULL); | 358 | ret = blocking_notifier_call_chain(&adb_client_list, |
359 | ADB_MSG_POWERDOWN, NULL); | ||
359 | if (ret & NOTIFY_STOP_MASK) { | 360 | if (ret & NOTIFY_STOP_MASK) { |
360 | up(&adb_probe_mutex); | 361 | up(&adb_probe_mutex); |
361 | return PBOOK_SLEEP_REFUSE; | 362 | return PBOOK_SLEEP_REFUSE; |
@@ -392,7 +393,8 @@ do_adb_reset_bus(void) | |||
392 | if (adb_controller->autopoll) | 393 | if (adb_controller->autopoll) |
393 | adb_controller->autopoll(0); | 394 | adb_controller->autopoll(0); |
394 | 395 | ||
395 | nret = notifier_call_chain(&adb_client_list, ADB_MSG_PRE_RESET, NULL); | 396 | nret = blocking_notifier_call_chain(&adb_client_list, |
397 | ADB_MSG_PRE_RESET, NULL); | ||
396 | if (nret & NOTIFY_STOP_MASK) { | 398 | if (nret & NOTIFY_STOP_MASK) { |
397 | if (adb_controller->autopoll) | 399 | if (adb_controller->autopoll) |
398 | adb_controller->autopoll(autopoll_devs); | 400 | adb_controller->autopoll(autopoll_devs); |
@@ -427,7 +429,8 @@ do_adb_reset_bus(void) | |||
427 | } | 429 | } |
428 | up(&adb_handler_sem); | 430 | up(&adb_handler_sem); |
429 | 431 | ||
430 | nret = notifier_call_chain(&adb_client_list, ADB_MSG_POST_RESET, NULL); | 432 | nret = blocking_notifier_call_chain(&adb_client_list, |
433 | ADB_MSG_POST_RESET, NULL); | ||
431 | if (nret & NOTIFY_STOP_MASK) | 434 | if (nret & NOTIFY_STOP_MASK) |
432 | return -EBUSY; | 435 | return -EBUSY; |
433 | 436 | ||
diff --git a/drivers/macintosh/adbhid.c b/drivers/macintosh/adbhid.c index 0a4c680d4ac0..394334ec5765 100644 --- a/drivers/macintosh/adbhid.c +++ b/drivers/macintosh/adbhid.c | |||
@@ -1214,7 +1214,8 @@ static int __init adbhid_init(void) | |||
1214 | 1214 | ||
1215 | adbhid_probe(); | 1215 | adbhid_probe(); |
1216 | 1216 | ||
1217 | notifier_chain_register(&adb_client_list, &adbhid_adb_notifier); | 1217 | blocking_notifier_chain_register(&adb_client_list, |
1218 | &adbhid_adb_notifier); | ||
1218 | 1219 | ||
1219 | return 0; | 1220 | return 0; |
1220 | } | 1221 | } |
diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index 4f5f3abc9cb3..0b5ff553e39a 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c | |||
@@ -187,7 +187,7 @@ extern int disable_kernel_backlight; | |||
187 | 187 | ||
188 | int __fake_sleep; | 188 | int __fake_sleep; |
189 | int asleep; | 189 | int asleep; |
190 | struct notifier_block *sleep_notifier_list; | 190 | BLOCKING_NOTIFIER_HEAD(sleep_notifier_list); |
191 | 191 | ||
192 | #ifdef CONFIG_ADB | 192 | #ifdef CONFIG_ADB |
193 | static int adb_dev_map = 0; | 193 | static int adb_dev_map = 0; |
diff --git a/drivers/macintosh/via-pmu68k.c b/drivers/macintosh/via-pmu68k.c index f08e52f2107b..35b70323e7e3 100644 --- a/drivers/macintosh/via-pmu68k.c +++ b/drivers/macintosh/via-pmu68k.c | |||
@@ -102,7 +102,7 @@ static int pmu_kind = PMU_UNKNOWN; | |||
102 | static int pmu_fully_inited = 0; | 102 | static int pmu_fully_inited = 0; |
103 | 103 | ||
104 | int asleep; | 104 | int asleep; |
105 | struct notifier_block *sleep_notifier_list; | 105 | BLOCKING_NOTIFIER_HEAD(sleep_notifier_list); |
106 | 106 | ||
107 | static int pmu_probe(void); | 107 | static int pmu_probe(void); |
108 | static int pmu_init(void); | 108 | static int pmu_init(void); |
@@ -913,7 +913,8 @@ int powerbook_sleep(void) | |||
913 | struct adb_request sleep_req; | 913 | struct adb_request sleep_req; |
914 | 914 | ||
915 | /* Notify device drivers */ | 915 | /* Notify device drivers */ |
916 | ret = notifier_call_chain(&sleep_notifier_list, PBOOK_SLEEP, NULL); | 916 | ret = blocking_notifier_call_chain(&sleep_notifier_list, |
917 | PBOOK_SLEEP, NULL); | ||
917 | if (ret & NOTIFY_STOP_MASK) | 918 | if (ret & NOTIFY_STOP_MASK) |
918 | return -EBUSY; | 919 | return -EBUSY; |
919 | 920 | ||
@@ -984,7 +985,7 @@ int powerbook_sleep(void) | |||
984 | enable_irq(i); | 985 | enable_irq(i); |
985 | 986 | ||
986 | /* Notify drivers */ | 987 | /* Notify drivers */ |
987 | notifier_call_chain(&sleep_notifier_list, PBOOK_WAKE, NULL); | 988 | blocking_notifier_call_chain(&sleep_notifier_list, PBOOK_WAKE, NULL); |
988 | 989 | ||
989 | /* reenable ADB autopoll */ | 990 | /* reenable ADB autopoll */ |
990 | pmu_adb_autopoll(adb_dev_map); | 991 | pmu_adb_autopoll(adb_dev_map); |
diff --git a/drivers/macintosh/windfarm_core.c b/drivers/macintosh/windfarm_core.c index 6c0ba04bc57a..ab3faa702d58 100644 --- a/drivers/macintosh/windfarm_core.c +++ b/drivers/macintosh/windfarm_core.c | |||
@@ -52,7 +52,7 @@ | |||
52 | static LIST_HEAD(wf_controls); | 52 | static LIST_HEAD(wf_controls); |
53 | static LIST_HEAD(wf_sensors); | 53 | static LIST_HEAD(wf_sensors); |
54 | static DEFINE_MUTEX(wf_lock); | 54 | static DEFINE_MUTEX(wf_lock); |
55 | static struct notifier_block *wf_client_list; | 55 | static BLOCKING_NOTIFIER_HEAD(wf_client_list); |
56 | static int wf_client_count; | 56 | static int wf_client_count; |
57 | static unsigned int wf_overtemp; | 57 | static unsigned int wf_overtemp; |
58 | static unsigned int wf_overtemp_counter; | 58 | static unsigned int wf_overtemp_counter; |
@@ -68,7 +68,7 @@ static struct platform_device wf_platform_device = { | |||
68 | 68 | ||
69 | static inline void wf_notify(int event, void *param) | 69 | static inline void wf_notify(int event, void *param) |
70 | { | 70 | { |
71 | notifier_call_chain(&wf_client_list, event, param); | 71 | blocking_notifier_call_chain(&wf_client_list, event, param); |
72 | } | 72 | } |
73 | 73 | ||
74 | int wf_critical_overtemp(void) | 74 | int wf_critical_overtemp(void) |
@@ -398,7 +398,7 @@ int wf_register_client(struct notifier_block *nb) | |||
398 | struct wf_sensor *sr; | 398 | struct wf_sensor *sr; |
399 | 399 | ||
400 | mutex_lock(&wf_lock); | 400 | mutex_lock(&wf_lock); |
401 | rc = notifier_chain_register(&wf_client_list, nb); | 401 | rc = blocking_notifier_chain_register(&wf_client_list, nb); |
402 | if (rc != 0) | 402 | if (rc != 0) |
403 | goto bail; | 403 | goto bail; |
404 | wf_client_count++; | 404 | wf_client_count++; |
@@ -417,7 +417,7 @@ EXPORT_SYMBOL_GPL(wf_register_client); | |||
417 | int wf_unregister_client(struct notifier_block *nb) | 417 | int wf_unregister_client(struct notifier_block *nb) |
418 | { | 418 | { |
419 | mutex_lock(&wf_lock); | 419 | mutex_lock(&wf_lock); |
420 | notifier_chain_unregister(&wf_client_list, nb); | 420 | blocking_notifier_chain_unregister(&wf_client_list, nb); |
421 | wf_client_count++; | 421 | wf_client_count++; |
422 | if (wf_client_count == 0) | 422 | if (wf_client_count == 0) |
423 | wf_stop_thread(); | 423 | wf_stop_thread(); |
diff --git a/drivers/md/Kconfig b/drivers/md/Kconfig index ac43f98062fd..fd2aae150ccc 100644 --- a/drivers/md/Kconfig +++ b/drivers/md/Kconfig | |||
@@ -127,6 +127,32 @@ config MD_RAID5 | |||
127 | 127 | ||
128 | If unsure, say Y. | 128 | If unsure, say Y. |
129 | 129 | ||
130 | config MD_RAID5_RESHAPE | ||
131 | bool "Support adding drives to a raid-5 array (experimental)" | ||
132 | depends on MD_RAID5 && EXPERIMENTAL | ||
133 | ---help--- | ||
134 | A RAID-5 set can be expanded by adding extra drives. This | ||
135 | requires "restriping" the array which means (almost) every | ||
136 | block must be written to a different place. | ||
137 | |||
138 | This option allows such restriping to be done while the array | ||
139 | is online. However it is still EXPERIMENTAL code. It should | ||
140 | work, but please be sure that you have backups. | ||
141 | |||
142 | You will need a version of mdadm newer than 2.3.1. During the | ||
143 | early stage of reshape there is a critical section where live data | ||
144 | is being over-written. A crash during this time needs extra care | ||
145 | for recovery. The newer mdadm takes a copy of the data in the | ||
146 | critical section and will restore it, if necessary, after a crash. | ||
147 | |||
148 | The mdadm usage is e.g. | ||
149 | mdadm --grow /dev/md1 --raid-disks=6 | ||
150 | to grow '/dev/md1' to having 6 disks. | ||
151 | |||
152 | Note: The array can only be expanded, not contracted. | ||
153 | There should be enough spares already present to make the new | ||
154 | array workable. | ||
155 | |||
130 | config MD_RAID6 | 156 | config MD_RAID6 |
131 | tristate "RAID-6 mode" | 157 | tristate "RAID-6 mode" |
132 | depends on BLK_DEV_MD | 158 | depends on BLK_DEV_MD |
diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index 259e86f26549..61a590bb6241 100644 --- a/drivers/md/dm-crypt.c +++ b/drivers/md/dm-crypt.c | |||
@@ -518,6 +518,7 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv) | |||
518 | char *ivopts; | 518 | char *ivopts; |
519 | unsigned int crypto_flags; | 519 | unsigned int crypto_flags; |
520 | unsigned int key_size; | 520 | unsigned int key_size; |
521 | unsigned long long tmpll; | ||
521 | 522 | ||
522 | if (argc != 5) { | 523 | if (argc != 5) { |
523 | ti->error = PFX "Not enough arguments"; | 524 | ti->error = PFX "Not enough arguments"; |
@@ -633,15 +634,17 @@ static int crypt_ctr(struct dm_target *ti, unsigned int argc, char **argv) | |||
633 | goto bad5; | 634 | goto bad5; |
634 | } | 635 | } |
635 | 636 | ||
636 | if (sscanf(argv[2], SECTOR_FORMAT, &cc->iv_offset) != 1) { | 637 | if (sscanf(argv[2], "%llu", &tmpll) != 1) { |
637 | ti->error = PFX "Invalid iv_offset sector"; | 638 | ti->error = PFX "Invalid iv_offset sector"; |
638 | goto bad5; | 639 | goto bad5; |
639 | } | 640 | } |
641 | cc->iv_offset = tmpll; | ||
640 | 642 | ||
641 | if (sscanf(argv[4], SECTOR_FORMAT, &cc->start) != 1) { | 643 | if (sscanf(argv[4], "%llu", &tmpll) != 1) { |
642 | ti->error = PFX "Invalid device sector"; | 644 | ti->error = PFX "Invalid device sector"; |
643 | goto bad5; | 645 | goto bad5; |
644 | } | 646 | } |
647 | cc->start = tmpll; | ||
645 | 648 | ||
646 | if (dm_get_device(ti, argv[3], cc->start, ti->len, | 649 | if (dm_get_device(ti, argv[3], cc->start, ti->len, |
647 | dm_table_get_mode(ti->table), &cc->dev)) { | 650 | dm_table_get_mode(ti->table), &cc->dev)) { |
@@ -885,8 +888,8 @@ static int crypt_status(struct dm_target *ti, status_type_t type, | |||
885 | result[sz++] = '-'; | 888 | result[sz++] = '-'; |
886 | } | 889 | } |
887 | 890 | ||
888 | DMEMIT(" " SECTOR_FORMAT " %s " SECTOR_FORMAT, | 891 | DMEMIT(" %llu %s %llu", (unsigned long long)cc->iv_offset, |
889 | cc->iv_offset, cc->dev->name, cc->start); | 892 | cc->dev->name, (unsigned long long)cc->start); |
890 | break; | 893 | break; |
891 | } | 894 | } |
892 | return 0; | 895 | return 0; |
diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c index 442e2be6052e..8edd6435414d 100644 --- a/drivers/md/dm-ioctl.c +++ b/drivers/md/dm-ioctl.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
16 | #include <linux/devfs_fs_kernel.h> | 16 | #include <linux/devfs_fs_kernel.h> |
17 | #include <linux/dm-ioctl.h> | 17 | #include <linux/dm-ioctl.h> |
18 | #include <linux/hdreg.h> | ||
18 | 19 | ||
19 | #include <asm/uaccess.h> | 20 | #include <asm/uaccess.h> |
20 | 21 | ||
@@ -244,9 +245,9 @@ static void __hash_remove(struct hash_cell *hc) | |||
244 | dm_table_put(table); | 245 | dm_table_put(table); |
245 | } | 246 | } |
246 | 247 | ||
247 | dm_put(hc->md); | ||
248 | if (hc->new_map) | 248 | if (hc->new_map) |
249 | dm_table_put(hc->new_map); | 249 | dm_table_put(hc->new_map); |
250 | dm_put(hc->md); | ||
250 | free_cell(hc); | 251 | free_cell(hc); |
251 | } | 252 | } |
252 | 253 | ||
@@ -600,12 +601,22 @@ static int dev_create(struct dm_ioctl *param, size_t param_size) | |||
600 | */ | 601 | */ |
601 | static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param) | 602 | static struct hash_cell *__find_device_hash_cell(struct dm_ioctl *param) |
602 | { | 603 | { |
604 | struct mapped_device *md; | ||
605 | void *mdptr = NULL; | ||
606 | |||
603 | if (*param->uuid) | 607 | if (*param->uuid) |
604 | return __get_uuid_cell(param->uuid); | 608 | return __get_uuid_cell(param->uuid); |
605 | else if (*param->name) | 609 | |
610 | if (*param->name) | ||
606 | return __get_name_cell(param->name); | 611 | return __get_name_cell(param->name); |
607 | else | 612 | |
608 | return dm_get_mdptr(huge_decode_dev(param->dev)); | 613 | md = dm_get_md(huge_decode_dev(param->dev)); |
614 | if (md) { | ||
615 | mdptr = dm_get_mdptr(md); | ||
616 | dm_put(md); | ||
617 | } | ||
618 | |||
619 | return mdptr; | ||
609 | } | 620 | } |
610 | 621 | ||
611 | static struct mapped_device *find_device(struct dm_ioctl *param) | 622 | static struct mapped_device *find_device(struct dm_ioctl *param) |
@@ -690,6 +701,54 @@ static int dev_rename(struct dm_ioctl *param, size_t param_size) | |||
690 | return dm_hash_rename(param->name, new_name); | 701 | return dm_hash_rename(param->name, new_name); |
691 | } | 702 | } |
692 | 703 | ||
704 | static int dev_set_geometry(struct dm_ioctl *param, size_t param_size) | ||
705 | { | ||
706 | int r = -EINVAL, x; | ||
707 | struct mapped_device *md; | ||
708 | struct hd_geometry geometry; | ||
709 | unsigned long indata[4]; | ||
710 | char *geostr = (char *) param + param->data_start; | ||
711 | |||
712 | md = find_device(param); | ||
713 | if (!md) | ||
714 | return -ENXIO; | ||
715 | |||
716 | if (geostr < (char *) (param + 1) || | ||
717 | invalid_str(geostr, (void *) param + param_size)) { | ||
718 | DMWARN("Invalid geometry supplied."); | ||
719 | goto out; | ||
720 | } | ||
721 | |||
722 | x = sscanf(geostr, "%lu %lu %lu %lu", indata, | ||
723 | indata + 1, indata + 2, indata + 3); | ||
724 | |||
725 | if (x != 4) { | ||
726 | DMWARN("Unable to interpret geometry settings."); | ||
727 | goto out; | ||
728 | } | ||
729 | |||
730 | if (indata[0] > 65535 || indata[1] > 255 || | ||
731 | indata[2] > 255 || indata[3] > ULONG_MAX) { | ||
732 | DMWARN("Geometry exceeds range limits."); | ||
733 | goto out; | ||
734 | } | ||
735 | |||
736 | geometry.cylinders = indata[0]; | ||
737 | geometry.heads = indata[1]; | ||
738 | geometry.sectors = indata[2]; | ||
739 | geometry.start = indata[3]; | ||
740 | |||
741 | r = dm_set_geometry(md, &geometry); | ||
742 | if (!r) | ||
743 | r = __dev_status(md, param); | ||
744 | |||
745 | param->data_size = 0; | ||
746 | |||
747 | out: | ||
748 | dm_put(md); | ||
749 | return r; | ||
750 | } | ||
751 | |||
693 | static int do_suspend(struct dm_ioctl *param) | 752 | static int do_suspend(struct dm_ioctl *param) |
694 | { | 753 | { |
695 | int r = 0; | 754 | int r = 0; |
@@ -975,33 +1034,43 @@ static int table_load(struct dm_ioctl *param, size_t param_size) | |||
975 | int r; | 1034 | int r; |
976 | struct hash_cell *hc; | 1035 | struct hash_cell *hc; |
977 | struct dm_table *t; | 1036 | struct dm_table *t; |
1037 | struct mapped_device *md; | ||
978 | 1038 | ||
979 | r = dm_table_create(&t, get_mode(param), param->target_count); | 1039 | md = find_device(param); |
1040 | if (!md) | ||
1041 | return -ENXIO; | ||
1042 | |||
1043 | r = dm_table_create(&t, get_mode(param), param->target_count, md); | ||
980 | if (r) | 1044 | if (r) |
981 | return r; | 1045 | goto out; |
982 | 1046 | ||
983 | r = populate_table(t, param, param_size); | 1047 | r = populate_table(t, param, param_size); |
984 | if (r) { | 1048 | if (r) { |
985 | dm_table_put(t); | 1049 | dm_table_put(t); |
986 | return r; | 1050 | goto out; |
987 | } | 1051 | } |
988 | 1052 | ||
989 | down_write(&_hash_lock); | 1053 | down_write(&_hash_lock); |
990 | hc = __find_device_hash_cell(param); | 1054 | hc = dm_get_mdptr(md); |
991 | if (!hc) { | 1055 | if (!hc || hc->md != md) { |
992 | DMWARN("device doesn't appear to be in the dev hash table."); | 1056 | DMWARN("device has been removed from the dev hash table."); |
993 | up_write(&_hash_lock); | ||
994 | dm_table_put(t); | 1057 | dm_table_put(t); |
995 | return -ENXIO; | 1058 | up_write(&_hash_lock); |
1059 | r = -ENXIO; | ||
1060 | goto out; | ||
996 | } | 1061 | } |
997 | 1062 | ||
998 | if (hc->new_map) | 1063 | if (hc->new_map) |
999 | dm_table_put(hc->new_map); | 1064 | dm_table_put(hc->new_map); |
1000 | hc->new_map = t; | 1065 | hc->new_map = t; |
1066 | up_write(&_hash_lock); | ||
1067 | |||
1001 | param->flags |= DM_INACTIVE_PRESENT_FLAG; | 1068 | param->flags |= DM_INACTIVE_PRESENT_FLAG; |
1069 | r = __dev_status(md, param); | ||
1070 | |||
1071 | out: | ||
1072 | dm_put(md); | ||
1002 | 1073 | ||
1003 | r = __dev_status(hc->md, param); | ||
1004 | up_write(&_hash_lock); | ||
1005 | return r; | 1074 | return r; |
1006 | } | 1075 | } |
1007 | 1076 | ||
@@ -1214,7 +1283,8 @@ static ioctl_fn lookup_ioctl(unsigned int cmd) | |||
1214 | 1283 | ||
1215 | {DM_LIST_VERSIONS_CMD, list_versions}, | 1284 | {DM_LIST_VERSIONS_CMD, list_versions}, |
1216 | 1285 | ||
1217 | {DM_TARGET_MSG_CMD, target_message} | 1286 | {DM_TARGET_MSG_CMD, target_message}, |
1287 | {DM_DEV_SET_GEOMETRY_CMD, dev_set_geometry} | ||
1218 | }; | 1288 | }; |
1219 | 1289 | ||
1220 | return (cmd >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[cmd].fn; | 1290 | return (cmd >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[cmd].fn; |
diff --git a/drivers/md/dm-linear.c b/drivers/md/dm-linear.c index 6a2cd5dc8a63..daf586c0898d 100644 --- a/drivers/md/dm-linear.c +++ b/drivers/md/dm-linear.c | |||
@@ -26,6 +26,7 @@ struct linear_c { | |||
26 | static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv) | 26 | static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv) |
27 | { | 27 | { |
28 | struct linear_c *lc; | 28 | struct linear_c *lc; |
29 | unsigned long long tmp; | ||
29 | 30 | ||
30 | if (argc != 2) { | 31 | if (argc != 2) { |
31 | ti->error = "dm-linear: Invalid argument count"; | 32 | ti->error = "dm-linear: Invalid argument count"; |
@@ -38,10 +39,11 @@ static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv) | |||
38 | return -ENOMEM; | 39 | return -ENOMEM; |
39 | } | 40 | } |
40 | 41 | ||
41 | if (sscanf(argv[1], SECTOR_FORMAT, &lc->start) != 1) { | 42 | if (sscanf(argv[1], "%llu", &tmp) != 1) { |
42 | ti->error = "dm-linear: Invalid device sector"; | 43 | ti->error = "dm-linear: Invalid device sector"; |
43 | goto bad; | 44 | goto bad; |
44 | } | 45 | } |
46 | lc->start = tmp; | ||
45 | 47 | ||
46 | if (dm_get_device(ti, argv[0], lc->start, ti->len, | 48 | if (dm_get_device(ti, argv[0], lc->start, ti->len, |
47 | dm_table_get_mode(ti->table), &lc->dev)) { | 49 | dm_table_get_mode(ti->table), &lc->dev)) { |
@@ -87,8 +89,8 @@ static int linear_status(struct dm_target *ti, status_type_t type, | |||
87 | break; | 89 | break; |
88 | 90 | ||
89 | case STATUSTYPE_TABLE: | 91 | case STATUSTYPE_TABLE: |
90 | snprintf(result, maxlen, "%s " SECTOR_FORMAT, lc->dev->name, | 92 | snprintf(result, maxlen, "%s %llu", lc->dev->name, |
91 | lc->start); | 93 | (unsigned long long)lc->start); |
92 | break; | 94 | break; |
93 | } | 95 | } |
94 | return 0; | 96 | return 0; |
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c index 4e90f231fbfb..d12cf3e5e076 100644 --- a/drivers/md/dm-raid1.c +++ b/drivers/md/dm-raid1.c | |||
@@ -402,9 +402,21 @@ static void rh_dec(struct region_hash *rh, region_t region) | |||
402 | 402 | ||
403 | spin_lock_irqsave(&rh->region_lock, flags); | 403 | spin_lock_irqsave(&rh->region_lock, flags); |
404 | if (atomic_dec_and_test(®->pending)) { | 404 | if (atomic_dec_and_test(®->pending)) { |
405 | /* | ||
406 | * There is no pending I/O for this region. | ||
407 | * We can move the region to corresponding list for next action. | ||
408 | * At this point, the region is not yet connected to any list. | ||
409 | * | ||
410 | * If the state is RH_NOSYNC, the region should be kept off | ||
411 | * from clean list. | ||
412 | * The hash entry for RH_NOSYNC will remain in memory | ||
413 | * until the region is recovered or the map is reloaded. | ||
414 | */ | ||
415 | |||
416 | /* do nothing for RH_NOSYNC */ | ||
405 | if (reg->state == RH_RECOVERING) { | 417 | if (reg->state == RH_RECOVERING) { |
406 | list_add_tail(®->list, &rh->quiesced_regions); | 418 | list_add_tail(®->list, &rh->quiesced_regions); |
407 | } else { | 419 | } else if (reg->state == RH_DIRTY) { |
408 | reg->state = RH_CLEAN; | 420 | reg->state = RH_CLEAN; |
409 | list_add(®->list, &rh->clean_regions); | 421 | list_add(®->list, &rh->clean_regions); |
410 | } | 422 | } |
@@ -922,9 +934,9 @@ static inline int _check_region_size(struct dm_target *ti, uint32_t size) | |||
922 | static int get_mirror(struct mirror_set *ms, struct dm_target *ti, | 934 | static int get_mirror(struct mirror_set *ms, struct dm_target *ti, |
923 | unsigned int mirror, char **argv) | 935 | unsigned int mirror, char **argv) |
924 | { | 936 | { |
925 | sector_t offset; | 937 | unsigned long long offset; |
926 | 938 | ||
927 | if (sscanf(argv[1], SECTOR_FORMAT, &offset) != 1) { | 939 | if (sscanf(argv[1], "%llu", &offset) != 1) { |
928 | ti->error = "dm-mirror: Invalid offset"; | 940 | ti->error = "dm-mirror: Invalid offset"; |
929 | return -EINVAL; | 941 | return -EINVAL; |
930 | } | 942 | } |
@@ -1191,16 +1203,17 @@ static int mirror_status(struct dm_target *ti, status_type_t type, | |||
1191 | for (m = 0; m < ms->nr_mirrors; m++) | 1203 | for (m = 0; m < ms->nr_mirrors; m++) |
1192 | DMEMIT("%s ", ms->mirror[m].dev->name); | 1204 | DMEMIT("%s ", ms->mirror[m].dev->name); |
1193 | 1205 | ||
1194 | DMEMIT(SECTOR_FORMAT "/" SECTOR_FORMAT, | 1206 | DMEMIT("%llu/%llu", |
1195 | ms->rh.log->type->get_sync_count(ms->rh.log), | 1207 | (unsigned long long)ms->rh.log->type-> |
1196 | ms->nr_regions); | 1208 | get_sync_count(ms->rh.log), |
1209 | (unsigned long long)ms->nr_regions); | ||
1197 | break; | 1210 | break; |
1198 | 1211 | ||
1199 | case STATUSTYPE_TABLE: | 1212 | case STATUSTYPE_TABLE: |
1200 | DMEMIT("%d ", ms->nr_mirrors); | 1213 | DMEMIT("%d ", ms->nr_mirrors); |
1201 | for (m = 0; m < ms->nr_mirrors; m++) | 1214 | for (m = 0; m < ms->nr_mirrors; m++) |
1202 | DMEMIT("%s " SECTOR_FORMAT " ", | 1215 | DMEMIT("%s %llu ", ms->mirror[m].dev->name, |
1203 | ms->mirror[m].dev->name, ms->mirror[m].offset); | 1216 | (unsigned long long)ms->mirror[m].offset); |
1204 | } | 1217 | } |
1205 | 1218 | ||
1206 | return 0; | 1219 | return 0; |
diff --git a/drivers/md/dm-snap.c b/drivers/md/dm-snap.c index 7401540086df..08312b46463a 100644 --- a/drivers/md/dm-snap.c +++ b/drivers/md/dm-snap.c | |||
@@ -49,11 +49,26 @@ struct pending_exception { | |||
49 | struct bio_list snapshot_bios; | 49 | struct bio_list snapshot_bios; |
50 | 50 | ||
51 | /* | 51 | /* |
52 | * Other pending_exceptions that are processing this | 52 | * Short-term queue of pending exceptions prior to submission. |
53 | * chunk. When this list is empty, we know we can | ||
54 | * complete the origins. | ||
55 | */ | 53 | */ |
56 | struct list_head siblings; | 54 | struct list_head list; |
55 | |||
56 | /* | ||
57 | * The primary pending_exception is the one that holds | ||
58 | * the sibling_count and the list of origin_bios for a | ||
59 | * group of pending_exceptions. It is always last to get freed. | ||
60 | * These fields get set up when writing to the origin. | ||
61 | */ | ||
62 | struct pending_exception *primary_pe; | ||
63 | |||
64 | /* | ||
65 | * Number of pending_exceptions processing this chunk. | ||
66 | * When this drops to zero we must complete the origin bios. | ||
67 | * If incrementing or decrementing this, hold pe->snap->lock for | ||
68 | * the sibling concerned and not pe->primary_pe->snap->lock unless | ||
69 | * they are the same. | ||
70 | */ | ||
71 | atomic_t sibling_count; | ||
57 | 72 | ||
58 | /* Pointer back to snapshot context */ | 73 | /* Pointer back to snapshot context */ |
59 | struct dm_snapshot *snap; | 74 | struct dm_snapshot *snap; |
@@ -377,6 +392,8 @@ static void read_snapshot_metadata(struct dm_snapshot *s) | |||
377 | down_write(&s->lock); | 392 | down_write(&s->lock); |
378 | s->valid = 0; | 393 | s->valid = 0; |
379 | up_write(&s->lock); | 394 | up_write(&s->lock); |
395 | |||
396 | dm_table_event(s->table); | ||
380 | } | 397 | } |
381 | } | 398 | } |
382 | 399 | ||
@@ -542,8 +559,12 @@ static void snapshot_dtr(struct dm_target *ti) | |||
542 | { | 559 | { |
543 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; | 560 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
544 | 561 | ||
562 | /* Prevent further origin writes from using this snapshot. */ | ||
563 | /* After this returns there can be no new kcopyd jobs. */ | ||
545 | unregister_snapshot(s); | 564 | unregister_snapshot(s); |
546 | 565 | ||
566 | kcopyd_client_destroy(s->kcopyd_client); | ||
567 | |||
547 | exit_exception_table(&s->pending, pending_cache); | 568 | exit_exception_table(&s->pending, pending_cache); |
548 | exit_exception_table(&s->complete, exception_cache); | 569 | exit_exception_table(&s->complete, exception_cache); |
549 | 570 | ||
@@ -552,7 +573,7 @@ static void snapshot_dtr(struct dm_target *ti) | |||
552 | 573 | ||
553 | dm_put_device(ti, s->origin); | 574 | dm_put_device(ti, s->origin); |
554 | dm_put_device(ti, s->cow); | 575 | dm_put_device(ti, s->cow); |
555 | kcopyd_client_destroy(s->kcopyd_client); | 576 | |
556 | kfree(s); | 577 | kfree(s); |
557 | } | 578 | } |
558 | 579 | ||
@@ -586,78 +607,117 @@ static void error_bios(struct bio *bio) | |||
586 | } | 607 | } |
587 | } | 608 | } |
588 | 609 | ||
610 | static inline void error_snapshot_bios(struct pending_exception *pe) | ||
611 | { | ||
612 | error_bios(bio_list_get(&pe->snapshot_bios)); | ||
613 | } | ||
614 | |||
589 | static struct bio *__flush_bios(struct pending_exception *pe) | 615 | static struct bio *__flush_bios(struct pending_exception *pe) |
590 | { | 616 | { |
591 | struct pending_exception *sibling; | 617 | /* |
618 | * If this pe is involved in a write to the origin and | ||
619 | * it is the last sibling to complete then release | ||
620 | * the bios for the original write to the origin. | ||
621 | */ | ||
622 | |||
623 | if (pe->primary_pe && | ||
624 | atomic_dec_and_test(&pe->primary_pe->sibling_count)) | ||
625 | return bio_list_get(&pe->primary_pe->origin_bios); | ||
626 | |||
627 | return NULL; | ||
628 | } | ||
629 | |||
630 | static void __invalidate_snapshot(struct dm_snapshot *s, | ||
631 | struct pending_exception *pe, int err) | ||
632 | { | ||
633 | if (!s->valid) | ||
634 | return; | ||
592 | 635 | ||
593 | if (list_empty(&pe->siblings)) | 636 | if (err == -EIO) |
594 | return bio_list_get(&pe->origin_bios); | 637 | DMERR("Invalidating snapshot: Error reading/writing."); |
638 | else if (err == -ENOMEM) | ||
639 | DMERR("Invalidating snapshot: Unable to allocate exception."); | ||
595 | 640 | ||
596 | sibling = list_entry(pe->siblings.next, | 641 | if (pe) |
597 | struct pending_exception, siblings); | 642 | remove_exception(&pe->e); |
598 | 643 | ||
599 | list_del(&pe->siblings); | 644 | if (s->store.drop_snapshot) |
645 | s->store.drop_snapshot(&s->store); | ||
600 | 646 | ||
601 | /* This is fine as long as kcopyd is single-threaded. If kcopyd | 647 | s->valid = 0; |
602 | * becomes multi-threaded, we'll need some locking here. | ||
603 | */ | ||
604 | bio_list_merge(&sibling->origin_bios, &pe->origin_bios); | ||
605 | 648 | ||
606 | return NULL; | 649 | dm_table_event(s->table); |
607 | } | 650 | } |
608 | 651 | ||
609 | static void pending_complete(struct pending_exception *pe, int success) | 652 | static void pending_complete(struct pending_exception *pe, int success) |
610 | { | 653 | { |
611 | struct exception *e; | 654 | struct exception *e; |
655 | struct pending_exception *primary_pe; | ||
612 | struct dm_snapshot *s = pe->snap; | 656 | struct dm_snapshot *s = pe->snap; |
613 | struct bio *flush = NULL; | 657 | struct bio *flush = NULL; |
614 | 658 | ||
615 | if (success) { | 659 | if (!success) { |
616 | e = alloc_exception(); | 660 | /* Read/write error - snapshot is unusable */ |
617 | if (!e) { | ||
618 | DMWARN("Unable to allocate exception."); | ||
619 | down_write(&s->lock); | ||
620 | s->store.drop_snapshot(&s->store); | ||
621 | s->valid = 0; | ||
622 | flush = __flush_bios(pe); | ||
623 | up_write(&s->lock); | ||
624 | |||
625 | error_bios(bio_list_get(&pe->snapshot_bios)); | ||
626 | goto out; | ||
627 | } | ||
628 | *e = pe->e; | ||
629 | |||
630 | /* | ||
631 | * Add a proper exception, and remove the | ||
632 | * in-flight exception from the list. | ||
633 | */ | ||
634 | down_write(&s->lock); | 661 | down_write(&s->lock); |
635 | insert_exception(&s->complete, e); | 662 | __invalidate_snapshot(s, pe, -EIO); |
636 | remove_exception(&pe->e); | ||
637 | flush = __flush_bios(pe); | 663 | flush = __flush_bios(pe); |
638 | |||
639 | /* Submit any pending write bios */ | ||
640 | up_write(&s->lock); | 664 | up_write(&s->lock); |
641 | 665 | ||
642 | flush_bios(bio_list_get(&pe->snapshot_bios)); | 666 | error_snapshot_bios(pe); |
643 | } else { | 667 | goto out; |
644 | /* Read/write error - snapshot is unusable */ | 668 | } |
669 | |||
670 | e = alloc_exception(); | ||
671 | if (!e) { | ||
645 | down_write(&s->lock); | 672 | down_write(&s->lock); |
646 | if (s->valid) | 673 | __invalidate_snapshot(s, pe, -ENOMEM); |
647 | DMERR("Error reading/writing snapshot"); | ||
648 | s->store.drop_snapshot(&s->store); | ||
649 | s->valid = 0; | ||
650 | remove_exception(&pe->e); | ||
651 | flush = __flush_bios(pe); | 674 | flush = __flush_bios(pe); |
652 | up_write(&s->lock); | 675 | up_write(&s->lock); |
653 | 676 | ||
654 | error_bios(bio_list_get(&pe->snapshot_bios)); | 677 | error_snapshot_bios(pe); |
678 | goto out; | ||
679 | } | ||
680 | *e = pe->e; | ||
655 | 681 | ||
656 | dm_table_event(s->table); | 682 | /* |
683 | * Add a proper exception, and remove the | ||
684 | * in-flight exception from the list. | ||
685 | */ | ||
686 | down_write(&s->lock); | ||
687 | if (!s->valid) { | ||
688 | flush = __flush_bios(pe); | ||
689 | up_write(&s->lock); | ||
690 | |||
691 | free_exception(e); | ||
692 | |||
693 | error_snapshot_bios(pe); | ||
694 | goto out; | ||
657 | } | 695 | } |
658 | 696 | ||
697 | insert_exception(&s->complete, e); | ||
698 | remove_exception(&pe->e); | ||
699 | flush = __flush_bios(pe); | ||
700 | |||
701 | up_write(&s->lock); | ||
702 | |||
703 | /* Submit any pending write bios */ | ||
704 | flush_bios(bio_list_get(&pe->snapshot_bios)); | ||
705 | |||
659 | out: | 706 | out: |
660 | free_pending_exception(pe); | 707 | primary_pe = pe->primary_pe; |
708 | |||
709 | /* | ||
710 | * Free the pe if it's not linked to an origin write or if | ||
711 | * it's not itself a primary pe. | ||
712 | */ | ||
713 | if (!primary_pe || primary_pe != pe) | ||
714 | free_pending_exception(pe); | ||
715 | |||
716 | /* | ||
717 | * Free the primary pe if nothing references it. | ||
718 | */ | ||
719 | if (primary_pe && !atomic_read(&primary_pe->sibling_count)) | ||
720 | free_pending_exception(primary_pe); | ||
661 | 721 | ||
662 | if (flush) | 722 | if (flush) |
663 | flush_bios(flush); | 723 | flush_bios(flush); |
@@ -734,38 +794,45 @@ __find_pending_exception(struct dm_snapshot *s, struct bio *bio) | |||
734 | if (e) { | 794 | if (e) { |
735 | /* cast the exception to a pending exception */ | 795 | /* cast the exception to a pending exception */ |
736 | pe = container_of(e, struct pending_exception, e); | 796 | pe = container_of(e, struct pending_exception, e); |
797 | goto out; | ||
798 | } | ||
737 | 799 | ||
738 | } else { | 800 | /* |
739 | /* | 801 | * Create a new pending exception, we don't want |
740 | * Create a new pending exception, we don't want | 802 | * to hold the lock while we do this. |
741 | * to hold the lock while we do this. | 803 | */ |
742 | */ | 804 | up_write(&s->lock); |
743 | up_write(&s->lock); | 805 | pe = alloc_pending_exception(); |
744 | pe = alloc_pending_exception(); | 806 | down_write(&s->lock); |
745 | down_write(&s->lock); | ||
746 | 807 | ||
747 | e = lookup_exception(&s->pending, chunk); | 808 | if (!s->valid) { |
748 | if (e) { | 809 | free_pending_exception(pe); |
749 | free_pending_exception(pe); | 810 | return NULL; |
750 | pe = container_of(e, struct pending_exception, e); | 811 | } |
751 | } else { | ||
752 | pe->e.old_chunk = chunk; | ||
753 | bio_list_init(&pe->origin_bios); | ||
754 | bio_list_init(&pe->snapshot_bios); | ||
755 | INIT_LIST_HEAD(&pe->siblings); | ||
756 | pe->snap = s; | ||
757 | pe->started = 0; | ||
758 | |||
759 | if (s->store.prepare_exception(&s->store, &pe->e)) { | ||
760 | free_pending_exception(pe); | ||
761 | s->valid = 0; | ||
762 | return NULL; | ||
763 | } | ||
764 | 812 | ||
765 | insert_exception(&s->pending, &pe->e); | 813 | e = lookup_exception(&s->pending, chunk); |
766 | } | 814 | if (e) { |
815 | free_pending_exception(pe); | ||
816 | pe = container_of(e, struct pending_exception, e); | ||
817 | goto out; | ||
818 | } | ||
819 | |||
820 | pe->e.old_chunk = chunk; | ||
821 | bio_list_init(&pe->origin_bios); | ||
822 | bio_list_init(&pe->snapshot_bios); | ||
823 | pe->primary_pe = NULL; | ||
824 | atomic_set(&pe->sibling_count, 1); | ||
825 | pe->snap = s; | ||
826 | pe->started = 0; | ||
827 | |||
828 | if (s->store.prepare_exception(&s->store, &pe->e)) { | ||
829 | free_pending_exception(pe); | ||
830 | return NULL; | ||
767 | } | 831 | } |
768 | 832 | ||
833 | insert_exception(&s->pending, &pe->e); | ||
834 | |||
835 | out: | ||
769 | return pe; | 836 | return pe; |
770 | } | 837 | } |
771 | 838 | ||
@@ -782,13 +849,15 @@ static int snapshot_map(struct dm_target *ti, struct bio *bio, | |||
782 | { | 849 | { |
783 | struct exception *e; | 850 | struct exception *e; |
784 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; | 851 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
852 | int copy_needed = 0; | ||
785 | int r = 1; | 853 | int r = 1; |
786 | chunk_t chunk; | 854 | chunk_t chunk; |
787 | struct pending_exception *pe; | 855 | struct pending_exception *pe = NULL; |
788 | 856 | ||
789 | chunk = sector_to_chunk(s, bio->bi_sector); | 857 | chunk = sector_to_chunk(s, bio->bi_sector); |
790 | 858 | ||
791 | /* Full snapshots are not usable */ | 859 | /* Full snapshots are not usable */ |
860 | /* To get here the table must be live so s->active is always set. */ | ||
792 | if (!s->valid) | 861 | if (!s->valid) |
793 | return -EIO; | 862 | return -EIO; |
794 | 863 | ||
@@ -806,36 +875,41 @@ static int snapshot_map(struct dm_target *ti, struct bio *bio, | |||
806 | * to copy an exception */ | 875 | * to copy an exception */ |
807 | down_write(&s->lock); | 876 | down_write(&s->lock); |
808 | 877 | ||
878 | if (!s->valid) { | ||
879 | r = -EIO; | ||
880 | goto out_unlock; | ||
881 | } | ||
882 | |||
809 | /* If the block is already remapped - use that, else remap it */ | 883 | /* If the block is already remapped - use that, else remap it */ |
810 | e = lookup_exception(&s->complete, chunk); | 884 | e = lookup_exception(&s->complete, chunk); |
811 | if (e) { | 885 | if (e) { |
812 | remap_exception(s, e, bio); | 886 | remap_exception(s, e, bio); |
813 | up_write(&s->lock); | 887 | goto out_unlock; |
814 | 888 | } | |
815 | } else { | 889 | |
816 | pe = __find_pending_exception(s, bio); | 890 | pe = __find_pending_exception(s, bio); |
817 | 891 | if (!pe) { | |
818 | if (!pe) { | 892 | __invalidate_snapshot(s, pe, -ENOMEM); |
819 | if (s->store.drop_snapshot) | 893 | r = -EIO; |
820 | s->store.drop_snapshot(&s->store); | 894 | goto out_unlock; |
821 | s->valid = 0; | 895 | } |
822 | r = -EIO; | 896 | |
823 | up_write(&s->lock); | 897 | remap_exception(s, &pe->e, bio); |
824 | } else { | 898 | bio_list_add(&pe->snapshot_bios, bio); |
825 | remap_exception(s, &pe->e, bio); | 899 | |
826 | bio_list_add(&pe->snapshot_bios, bio); | 900 | if (!pe->started) { |
827 | 901 | /* this is protected by snap->lock */ | |
828 | if (!pe->started) { | 902 | pe->started = 1; |
829 | /* this is protected by snap->lock */ | 903 | copy_needed = 1; |
830 | pe->started = 1; | ||
831 | up_write(&s->lock); | ||
832 | start_copy(pe); | ||
833 | } else | ||
834 | up_write(&s->lock); | ||
835 | r = 0; | ||
836 | } | ||
837 | } | 904 | } |
838 | 905 | ||
906 | r = 0; | ||
907 | |||
908 | out_unlock: | ||
909 | up_write(&s->lock); | ||
910 | |||
911 | if (copy_needed) | ||
912 | start_copy(pe); | ||
839 | } else { | 913 | } else { |
840 | /* | 914 | /* |
841 | * FIXME: this read path scares me because we | 915 | * FIXME: this read path scares me because we |
@@ -847,6 +921,11 @@ static int snapshot_map(struct dm_target *ti, struct bio *bio, | |||
847 | /* Do reads */ | 921 | /* Do reads */ |
848 | down_read(&s->lock); | 922 | down_read(&s->lock); |
849 | 923 | ||
924 | if (!s->valid) { | ||
925 | up_read(&s->lock); | ||
926 | return -EIO; | ||
927 | } | ||
928 | |||
850 | /* See if it it has been remapped */ | 929 | /* See if it it has been remapped */ |
851 | e = lookup_exception(&s->complete, chunk); | 930 | e = lookup_exception(&s->complete, chunk); |
852 | if (e) | 931 | if (e) |
@@ -884,9 +963,9 @@ static int snapshot_status(struct dm_target *ti, status_type_t type, | |||
884 | snap->store.fraction_full(&snap->store, | 963 | snap->store.fraction_full(&snap->store, |
885 | &numerator, | 964 | &numerator, |
886 | &denominator); | 965 | &denominator); |
887 | snprintf(result, maxlen, | 966 | snprintf(result, maxlen, "%llu/%llu", |
888 | SECTOR_FORMAT "/" SECTOR_FORMAT, | 967 | (unsigned long long)numerator, |
889 | numerator, denominator); | 968 | (unsigned long long)denominator); |
890 | } | 969 | } |
891 | else | 970 | else |
892 | snprintf(result, maxlen, "Unknown"); | 971 | snprintf(result, maxlen, "Unknown"); |
@@ -899,9 +978,10 @@ static int snapshot_status(struct dm_target *ti, status_type_t type, | |||
899 | * to make private copies if the output is to | 978 | * to make private copies if the output is to |
900 | * make sense. | 979 | * make sense. |
901 | */ | 980 | */ |
902 | snprintf(result, maxlen, "%s %s %c " SECTOR_FORMAT, | 981 | snprintf(result, maxlen, "%s %s %c %llu", |
903 | snap->origin->name, snap->cow->name, | 982 | snap->origin->name, snap->cow->name, |
904 | snap->type, snap->chunk_size); | 983 | snap->type, |
984 | (unsigned long long)snap->chunk_size); | ||
905 | break; | 985 | break; |
906 | } | 986 | } |
907 | 987 | ||
@@ -911,40 +991,27 @@ static int snapshot_status(struct dm_target *ti, status_type_t type, | |||
911 | /*----------------------------------------------------------------- | 991 | /*----------------------------------------------------------------- |
912 | * Origin methods | 992 | * Origin methods |
913 | *---------------------------------------------------------------*/ | 993 | *---------------------------------------------------------------*/ |
914 | static void list_merge(struct list_head *l1, struct list_head *l2) | ||
915 | { | ||
916 | struct list_head *l1_n, *l2_p; | ||
917 | |||
918 | l1_n = l1->next; | ||
919 | l2_p = l2->prev; | ||
920 | |||
921 | l1->next = l2; | ||
922 | l2->prev = l1; | ||
923 | |||
924 | l2_p->next = l1_n; | ||
925 | l1_n->prev = l2_p; | ||
926 | } | ||
927 | |||
928 | static int __origin_write(struct list_head *snapshots, struct bio *bio) | 994 | static int __origin_write(struct list_head *snapshots, struct bio *bio) |
929 | { | 995 | { |
930 | int r = 1, first = 1; | 996 | int r = 1, first = 0; |
931 | struct dm_snapshot *snap; | 997 | struct dm_snapshot *snap; |
932 | struct exception *e; | 998 | struct exception *e; |
933 | struct pending_exception *pe, *last = NULL; | 999 | struct pending_exception *pe, *next_pe, *primary_pe = NULL; |
934 | chunk_t chunk; | 1000 | chunk_t chunk; |
1001 | LIST_HEAD(pe_queue); | ||
935 | 1002 | ||
936 | /* Do all the snapshots on this origin */ | 1003 | /* Do all the snapshots on this origin */ |
937 | list_for_each_entry (snap, snapshots, list) { | 1004 | list_for_each_entry (snap, snapshots, list) { |
938 | 1005 | ||
1006 | down_write(&snap->lock); | ||
1007 | |||
939 | /* Only deal with valid and active snapshots */ | 1008 | /* Only deal with valid and active snapshots */ |
940 | if (!snap->valid || !snap->active) | 1009 | if (!snap->valid || !snap->active) |
941 | continue; | 1010 | goto next_snapshot; |
942 | 1011 | ||
943 | /* Nothing to do if writing beyond end of snapshot */ | 1012 | /* Nothing to do if writing beyond end of snapshot */ |
944 | if (bio->bi_sector >= dm_table_get_size(snap->table)) | 1013 | if (bio->bi_sector >= dm_table_get_size(snap->table)) |
945 | continue; | 1014 | goto next_snapshot; |
946 | |||
947 | down_write(&snap->lock); | ||
948 | 1015 | ||
949 | /* | 1016 | /* |
950 | * Remember, different snapshots can have | 1017 | * Remember, different snapshots can have |
@@ -956,49 +1023,75 @@ static int __origin_write(struct list_head *snapshots, struct bio *bio) | |||
956 | * Check exception table to see if block | 1023 | * Check exception table to see if block |
957 | * is already remapped in this snapshot | 1024 | * is already remapped in this snapshot |
958 | * and trigger an exception if not. | 1025 | * and trigger an exception if not. |
1026 | * | ||
1027 | * sibling_count is initialised to 1 so pending_complete() | ||
1028 | * won't destroy the primary_pe while we're inside this loop. | ||
959 | */ | 1029 | */ |
960 | e = lookup_exception(&snap->complete, chunk); | 1030 | e = lookup_exception(&snap->complete, chunk); |
961 | if (!e) { | 1031 | if (e) |
962 | pe = __find_pending_exception(snap, bio); | 1032 | goto next_snapshot; |
963 | if (!pe) { | 1033 | |
964 | snap->store.drop_snapshot(&snap->store); | 1034 | pe = __find_pending_exception(snap, bio); |
965 | snap->valid = 0; | 1035 | if (!pe) { |
966 | 1036 | __invalidate_snapshot(snap, pe, ENOMEM); | |
967 | } else { | 1037 | goto next_snapshot; |
968 | if (last) | 1038 | } |
969 | list_merge(&pe->siblings, | 1039 | |
970 | &last->siblings); | 1040 | if (!primary_pe) { |
971 | 1041 | /* | |
972 | last = pe; | 1042 | * Either every pe here has same |
973 | r = 0; | 1043 | * primary_pe or none has one yet. |
1044 | */ | ||
1045 | if (pe->primary_pe) | ||
1046 | primary_pe = pe->primary_pe; | ||
1047 | else { | ||
1048 | primary_pe = pe; | ||
1049 | first = 1; | ||
974 | } | 1050 | } |
1051 | |||
1052 | bio_list_add(&primary_pe->origin_bios, bio); | ||
1053 | |||
1054 | r = 0; | ||
1055 | } | ||
1056 | |||
1057 | if (!pe->primary_pe) { | ||
1058 | atomic_inc(&primary_pe->sibling_count); | ||
1059 | pe->primary_pe = primary_pe; | ||
1060 | } | ||
1061 | |||
1062 | if (!pe->started) { | ||
1063 | pe->started = 1; | ||
1064 | list_add_tail(&pe->list, &pe_queue); | ||
975 | } | 1065 | } |
976 | 1066 | ||
1067 | next_snapshot: | ||
977 | up_write(&snap->lock); | 1068 | up_write(&snap->lock); |
978 | } | 1069 | } |
979 | 1070 | ||
1071 | if (!primary_pe) | ||
1072 | goto out; | ||
1073 | |||
980 | /* | 1074 | /* |
981 | * Now that we have a complete pe list we can start the copying. | 1075 | * If this is the first time we're processing this chunk and |
1076 | * sibling_count is now 1 it means all the pending exceptions | ||
1077 | * got completed while we were in the loop above, so it falls to | ||
1078 | * us here to remove the primary_pe and submit any origin_bios. | ||
982 | */ | 1079 | */ |
983 | if (last) { | 1080 | |
984 | pe = last; | 1081 | if (first && atomic_dec_and_test(&primary_pe->sibling_count)) { |
985 | do { | 1082 | flush_bios(bio_list_get(&primary_pe->origin_bios)); |
986 | down_write(&pe->snap->lock); | 1083 | free_pending_exception(primary_pe); |
987 | if (first) | 1084 | /* If we got here, pe_queue is necessarily empty. */ |
988 | bio_list_add(&pe->origin_bios, bio); | 1085 | goto out; |
989 | if (!pe->started) { | ||
990 | pe->started = 1; | ||
991 | up_write(&pe->snap->lock); | ||
992 | start_copy(pe); | ||
993 | } else | ||
994 | up_write(&pe->snap->lock); | ||
995 | first = 0; | ||
996 | pe = list_entry(pe->siblings.next, | ||
997 | struct pending_exception, siblings); | ||
998 | |||
999 | } while (pe != last); | ||
1000 | } | 1086 | } |
1001 | 1087 | ||
1088 | /* | ||
1089 | * Now that we have a complete pe list we can start the copying. | ||
1090 | */ | ||
1091 | list_for_each_entry_safe(pe, next_pe, &pe_queue, list) | ||
1092 | start_copy(pe); | ||
1093 | |||
1094 | out: | ||
1002 | return r; | 1095 | return r; |
1003 | } | 1096 | } |
1004 | 1097 | ||
diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c index 697aacafb02a..08328a8f5a3c 100644 --- a/drivers/md/dm-stripe.c +++ b/drivers/md/dm-stripe.c | |||
@@ -49,9 +49,9 @@ static inline struct stripe_c *alloc_context(unsigned int stripes) | |||
49 | static int get_stripe(struct dm_target *ti, struct stripe_c *sc, | 49 | static int get_stripe(struct dm_target *ti, struct stripe_c *sc, |
50 | unsigned int stripe, char **argv) | 50 | unsigned int stripe, char **argv) |
51 | { | 51 | { |
52 | sector_t start; | 52 | unsigned long long start; |
53 | 53 | ||
54 | if (sscanf(argv[1], SECTOR_FORMAT, &start) != 1) | 54 | if (sscanf(argv[1], "%llu", &start) != 1) |
55 | return -EINVAL; | 55 | return -EINVAL; |
56 | 56 | ||
57 | if (dm_get_device(ti, argv[0], start, sc->stripe_width, | 57 | if (dm_get_device(ti, argv[0], start, sc->stripe_width, |
@@ -103,7 +103,7 @@ static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv) | |||
103 | return -EINVAL; | 103 | return -EINVAL; |
104 | } | 104 | } |
105 | 105 | ||
106 | if (((uint32_t)ti->len) & (chunk_size - 1)) { | 106 | if (ti->len & (chunk_size - 1)) { |
107 | ti->error = "dm-stripe: Target length not divisible by " | 107 | ti->error = "dm-stripe: Target length not divisible by " |
108 | "chunk size"; | 108 | "chunk size"; |
109 | return -EINVAL; | 109 | return -EINVAL; |
@@ -201,10 +201,11 @@ static int stripe_status(struct dm_target *ti, | |||
201 | break; | 201 | break; |
202 | 202 | ||
203 | case STATUSTYPE_TABLE: | 203 | case STATUSTYPE_TABLE: |
204 | DMEMIT("%d " SECTOR_FORMAT, sc->stripes, sc->chunk_mask + 1); | 204 | DMEMIT("%d %llu", sc->stripes, |
205 | (unsigned long long)sc->chunk_mask + 1); | ||
205 | for (i = 0; i < sc->stripes; i++) | 206 | for (i = 0; i < sc->stripes; i++) |
206 | DMEMIT(" %s " SECTOR_FORMAT, sc->stripe[i].dev->name, | 207 | DMEMIT(" %s %llu", sc->stripe[i].dev->name, |
207 | sc->stripe[i].physical_start); | 208 | (unsigned long long)sc->stripe[i].physical_start); |
208 | break; | 209 | break; |
209 | } | 210 | } |
210 | return 0; | 211 | return 0; |
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c index 907b08ddb783..8f56a54cf0ce 100644 --- a/drivers/md/dm-table.c +++ b/drivers/md/dm-table.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/ctype.h> | 14 | #include <linux/ctype.h> |
15 | #include <linux/slab.h> | 15 | #include <linux/slab.h> |
16 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
17 | #include <linux/mutex.h> | ||
17 | #include <asm/atomic.h> | 18 | #include <asm/atomic.h> |
18 | 19 | ||
19 | #define MAX_DEPTH 16 | 20 | #define MAX_DEPTH 16 |
@@ -22,6 +23,7 @@ | |||
22 | #define CHILDREN_PER_NODE (KEYS_PER_NODE + 1) | 23 | #define CHILDREN_PER_NODE (KEYS_PER_NODE + 1) |
23 | 24 | ||
24 | struct dm_table { | 25 | struct dm_table { |
26 | struct mapped_device *md; | ||
25 | atomic_t holders; | 27 | atomic_t holders; |
26 | 28 | ||
27 | /* btree table */ | 29 | /* btree table */ |
@@ -97,6 +99,8 @@ static void combine_restrictions_low(struct io_restrictions *lhs, | |||
97 | 99 | ||
98 | lhs->seg_boundary_mask = | 100 | lhs->seg_boundary_mask = |
99 | min_not_zero(lhs->seg_boundary_mask, rhs->seg_boundary_mask); | 101 | min_not_zero(lhs->seg_boundary_mask, rhs->seg_boundary_mask); |
102 | |||
103 | lhs->no_cluster |= rhs->no_cluster; | ||
100 | } | 104 | } |
101 | 105 | ||
102 | /* | 106 | /* |
@@ -204,7 +208,8 @@ static int alloc_targets(struct dm_table *t, unsigned int num) | |||
204 | return 0; | 208 | return 0; |
205 | } | 209 | } |
206 | 210 | ||
207 | int dm_table_create(struct dm_table **result, int mode, unsigned num_targets) | 211 | int dm_table_create(struct dm_table **result, int mode, |
212 | unsigned num_targets, struct mapped_device *md) | ||
208 | { | 213 | { |
209 | struct dm_table *t = kmalloc(sizeof(*t), GFP_KERNEL); | 214 | struct dm_table *t = kmalloc(sizeof(*t), GFP_KERNEL); |
210 | 215 | ||
@@ -227,6 +232,7 @@ int dm_table_create(struct dm_table **result, int mode, unsigned num_targets) | |||
227 | } | 232 | } |
228 | 233 | ||
229 | t->mode = mode; | 234 | t->mode = mode; |
235 | t->md = md; | ||
230 | *result = t; | 236 | *result = t; |
231 | return 0; | 237 | return 0; |
232 | } | 238 | } |
@@ -345,7 +351,7 @@ static struct dm_dev *find_device(struct list_head *l, dev_t dev) | |||
345 | /* | 351 | /* |
346 | * Open a device so we can use it as a map destination. | 352 | * Open a device so we can use it as a map destination. |
347 | */ | 353 | */ |
348 | static int open_dev(struct dm_dev *d, dev_t dev) | 354 | static int open_dev(struct dm_dev *d, dev_t dev, struct mapped_device *md) |
349 | { | 355 | { |
350 | static char *_claim_ptr = "I belong to device-mapper"; | 356 | static char *_claim_ptr = "I belong to device-mapper"; |
351 | struct block_device *bdev; | 357 | struct block_device *bdev; |
@@ -357,7 +363,7 @@ static int open_dev(struct dm_dev *d, dev_t dev) | |||
357 | bdev = open_by_devnum(dev, d->mode); | 363 | bdev = open_by_devnum(dev, d->mode); |
358 | if (IS_ERR(bdev)) | 364 | if (IS_ERR(bdev)) |
359 | return PTR_ERR(bdev); | 365 | return PTR_ERR(bdev); |
360 | r = bd_claim(bdev, _claim_ptr); | 366 | r = bd_claim_by_disk(bdev, _claim_ptr, dm_disk(md)); |
361 | if (r) | 367 | if (r) |
362 | blkdev_put(bdev); | 368 | blkdev_put(bdev); |
363 | else | 369 | else |
@@ -368,12 +374,12 @@ static int open_dev(struct dm_dev *d, dev_t dev) | |||
368 | /* | 374 | /* |
369 | * Close a device that we've been using. | 375 | * Close a device that we've been using. |
370 | */ | 376 | */ |
371 | static void close_dev(struct dm_dev *d) | 377 | static void close_dev(struct dm_dev *d, struct mapped_device *md) |
372 | { | 378 | { |
373 | if (!d->bdev) | 379 | if (!d->bdev) |
374 | return; | 380 | return; |
375 | 381 | ||
376 | bd_release(d->bdev); | 382 | bd_release_from_disk(d->bdev, dm_disk(md)); |
377 | blkdev_put(d->bdev); | 383 | blkdev_put(d->bdev); |
378 | d->bdev = NULL; | 384 | d->bdev = NULL; |
379 | } | 385 | } |
@@ -394,7 +400,7 @@ static int check_device_area(struct dm_dev *dd, sector_t start, sector_t len) | |||
394 | * careful to leave things as they were if we fail to reopen the | 400 | * careful to leave things as they were if we fail to reopen the |
395 | * device. | 401 | * device. |
396 | */ | 402 | */ |
397 | static int upgrade_mode(struct dm_dev *dd, int new_mode) | 403 | static int upgrade_mode(struct dm_dev *dd, int new_mode, struct mapped_device *md) |
398 | { | 404 | { |
399 | int r; | 405 | int r; |
400 | struct dm_dev dd_copy; | 406 | struct dm_dev dd_copy; |
@@ -404,9 +410,9 @@ static int upgrade_mode(struct dm_dev *dd, int new_mode) | |||
404 | 410 | ||
405 | dd->mode |= new_mode; | 411 | dd->mode |= new_mode; |
406 | dd->bdev = NULL; | 412 | dd->bdev = NULL; |
407 | r = open_dev(dd, dev); | 413 | r = open_dev(dd, dev, md); |
408 | if (!r) | 414 | if (!r) |
409 | close_dev(&dd_copy); | 415 | close_dev(&dd_copy, md); |
410 | else | 416 | else |
411 | *dd = dd_copy; | 417 | *dd = dd_copy; |
412 | 418 | ||
@@ -448,7 +454,7 @@ static int __table_get_device(struct dm_table *t, struct dm_target *ti, | |||
448 | dd->mode = mode; | 454 | dd->mode = mode; |
449 | dd->bdev = NULL; | 455 | dd->bdev = NULL; |
450 | 456 | ||
451 | if ((r = open_dev(dd, dev))) { | 457 | if ((r = open_dev(dd, dev, t->md))) { |
452 | kfree(dd); | 458 | kfree(dd); |
453 | return r; | 459 | return r; |
454 | } | 460 | } |
@@ -459,7 +465,7 @@ static int __table_get_device(struct dm_table *t, struct dm_target *ti, | |||
459 | list_add(&dd->list, &t->devices); | 465 | list_add(&dd->list, &t->devices); |
460 | 466 | ||
461 | } else if (dd->mode != (mode | dd->mode)) { | 467 | } else if (dd->mode != (mode | dd->mode)) { |
462 | r = upgrade_mode(dd, mode); | 468 | r = upgrade_mode(dd, mode, t->md); |
463 | if (r) | 469 | if (r) |
464 | return r; | 470 | return r; |
465 | } | 471 | } |
@@ -523,6 +529,8 @@ int dm_get_device(struct dm_target *ti, const char *path, sector_t start, | |||
523 | rs->seg_boundary_mask = | 529 | rs->seg_boundary_mask = |
524 | min_not_zero(rs->seg_boundary_mask, | 530 | min_not_zero(rs->seg_boundary_mask, |
525 | q->seg_boundary_mask); | 531 | q->seg_boundary_mask); |
532 | |||
533 | rs->no_cluster |= !test_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags); | ||
526 | } | 534 | } |
527 | 535 | ||
528 | return r; | 536 | return r; |
@@ -534,7 +542,7 @@ int dm_get_device(struct dm_target *ti, const char *path, sector_t start, | |||
534 | void dm_put_device(struct dm_target *ti, struct dm_dev *dd) | 542 | void dm_put_device(struct dm_target *ti, struct dm_dev *dd) |
535 | { | 543 | { |
536 | if (atomic_dec_and_test(&dd->count)) { | 544 | if (atomic_dec_and_test(&dd->count)) { |
537 | close_dev(dd); | 545 | close_dev(dd, ti->table->md); |
538 | list_del(&dd->list); | 546 | list_del(&dd->list); |
539 | kfree(dd); | 547 | kfree(dd); |
540 | } | 548 | } |
@@ -763,14 +771,14 @@ int dm_table_complete(struct dm_table *t) | |||
763 | return r; | 771 | return r; |
764 | } | 772 | } |
765 | 773 | ||
766 | static DECLARE_MUTEX(_event_lock); | 774 | static DEFINE_MUTEX(_event_lock); |
767 | void dm_table_event_callback(struct dm_table *t, | 775 | void dm_table_event_callback(struct dm_table *t, |
768 | void (*fn)(void *), void *context) | 776 | void (*fn)(void *), void *context) |
769 | { | 777 | { |
770 | down(&_event_lock); | 778 | mutex_lock(&_event_lock); |
771 | t->event_fn = fn; | 779 | t->event_fn = fn; |
772 | t->event_context = context; | 780 | t->event_context = context; |
773 | up(&_event_lock); | 781 | mutex_unlock(&_event_lock); |
774 | } | 782 | } |
775 | 783 | ||
776 | void dm_table_event(struct dm_table *t) | 784 | void dm_table_event(struct dm_table *t) |
@@ -781,10 +789,10 @@ void dm_table_event(struct dm_table *t) | |||
781 | */ | 789 | */ |
782 | BUG_ON(in_interrupt()); | 790 | BUG_ON(in_interrupt()); |
783 | 791 | ||
784 | down(&_event_lock); | 792 | mutex_lock(&_event_lock); |
785 | if (t->event_fn) | 793 | if (t->event_fn) |
786 | t->event_fn(t->event_context); | 794 | t->event_fn(t->event_context); |
787 | up(&_event_lock); | 795 | mutex_unlock(&_event_lock); |
788 | } | 796 | } |
789 | 797 | ||
790 | sector_t dm_table_get_size(struct dm_table *t) | 798 | sector_t dm_table_get_size(struct dm_table *t) |
@@ -832,6 +840,11 @@ void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q) | |||
832 | q->hardsect_size = t->limits.hardsect_size; | 840 | q->hardsect_size = t->limits.hardsect_size; |
833 | q->max_segment_size = t->limits.max_segment_size; | 841 | q->max_segment_size = t->limits.max_segment_size; |
834 | q->seg_boundary_mask = t->limits.seg_boundary_mask; | 842 | q->seg_boundary_mask = t->limits.seg_boundary_mask; |
843 | if (t->limits.no_cluster) | ||
844 | q->queue_flags &= ~(1 << QUEUE_FLAG_CLUSTER); | ||
845 | else | ||
846 | q->queue_flags |= (1 << QUEUE_FLAG_CLUSTER); | ||
847 | |||
835 | } | 848 | } |
836 | 849 | ||
837 | unsigned int dm_table_get_num_targets(struct dm_table *t) | 850 | unsigned int dm_table_get_num_targets(struct dm_table *t) |
@@ -943,12 +956,20 @@ int dm_table_flush_all(struct dm_table *t) | |||
943 | return ret; | 956 | return ret; |
944 | } | 957 | } |
945 | 958 | ||
959 | struct mapped_device *dm_table_get_md(struct dm_table *t) | ||
960 | { | ||
961 | dm_get(t->md); | ||
962 | |||
963 | return t->md; | ||
964 | } | ||
965 | |||
946 | EXPORT_SYMBOL(dm_vcalloc); | 966 | EXPORT_SYMBOL(dm_vcalloc); |
947 | EXPORT_SYMBOL(dm_get_device); | 967 | EXPORT_SYMBOL(dm_get_device); |
948 | EXPORT_SYMBOL(dm_put_device); | 968 | EXPORT_SYMBOL(dm_put_device); |
949 | EXPORT_SYMBOL(dm_table_event); | 969 | EXPORT_SYMBOL(dm_table_event); |
950 | EXPORT_SYMBOL(dm_table_get_size); | 970 | EXPORT_SYMBOL(dm_table_get_size); |
951 | EXPORT_SYMBOL(dm_table_get_mode); | 971 | EXPORT_SYMBOL(dm_table_get_mode); |
972 | EXPORT_SYMBOL(dm_table_get_md); | ||
952 | EXPORT_SYMBOL(dm_table_put); | 973 | EXPORT_SYMBOL(dm_table_put); |
953 | EXPORT_SYMBOL(dm_table_get); | 974 | EXPORT_SYMBOL(dm_table_get); |
954 | EXPORT_SYMBOL(dm_table_unplug_all); | 975 | EXPORT_SYMBOL(dm_table_unplug_all); |
diff --git a/drivers/md/dm.c b/drivers/md/dm.c index a64798ef481e..4d710b7a133b 100644 --- a/drivers/md/dm.c +++ b/drivers/md/dm.c | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/module.h> | 12 | #include <linux/module.h> |
13 | #include <linux/mutex.h> | ||
13 | #include <linux/moduleparam.h> | 14 | #include <linux/moduleparam.h> |
14 | #include <linux/blkpg.h> | 15 | #include <linux/blkpg.h> |
15 | #include <linux/bio.h> | 16 | #include <linux/bio.h> |
@@ -17,6 +18,7 @@ | |||
17 | #include <linux/mempool.h> | 18 | #include <linux/mempool.h> |
18 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
19 | #include <linux/idr.h> | 20 | #include <linux/idr.h> |
21 | #include <linux/hdreg.h> | ||
20 | #include <linux/blktrace_api.h> | 22 | #include <linux/blktrace_api.h> |
21 | 23 | ||
22 | static const char *_name = DM_NAME; | 24 | static const char *_name = DM_NAME; |
@@ -69,6 +71,7 @@ struct mapped_device { | |||
69 | 71 | ||
70 | request_queue_t *queue; | 72 | request_queue_t *queue; |
71 | struct gendisk *disk; | 73 | struct gendisk *disk; |
74 | char name[16]; | ||
72 | 75 | ||
73 | void *interface_ptr; | 76 | void *interface_ptr; |
74 | 77 | ||
@@ -101,6 +104,9 @@ struct mapped_device { | |||
101 | */ | 104 | */ |
102 | struct super_block *frozen_sb; | 105 | struct super_block *frozen_sb; |
103 | struct block_device *suspended_bdev; | 106 | struct block_device *suspended_bdev; |
107 | |||
108 | /* forced geometry settings */ | ||
109 | struct hd_geometry geometry; | ||
104 | }; | 110 | }; |
105 | 111 | ||
106 | #define MIN_IOS 256 | 112 | #define MIN_IOS 256 |
@@ -226,6 +232,13 @@ static int dm_blk_close(struct inode *inode, struct file *file) | |||
226 | return 0; | 232 | return 0; |
227 | } | 233 | } |
228 | 234 | ||
235 | static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo) | ||
236 | { | ||
237 | struct mapped_device *md = bdev->bd_disk->private_data; | ||
238 | |||
239 | return dm_get_geometry(md, geo); | ||
240 | } | ||
241 | |||
229 | static inline struct dm_io *alloc_io(struct mapped_device *md) | 242 | static inline struct dm_io *alloc_io(struct mapped_device *md) |
230 | { | 243 | { |
231 | return mempool_alloc(md->io_pool, GFP_NOIO); | 244 | return mempool_alloc(md->io_pool, GFP_NOIO); |
@@ -312,6 +325,33 @@ struct dm_table *dm_get_table(struct mapped_device *md) | |||
312 | return t; | 325 | return t; |
313 | } | 326 | } |
314 | 327 | ||
328 | /* | ||
329 | * Get the geometry associated with a dm device | ||
330 | */ | ||
331 | int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo) | ||
332 | { | ||
333 | *geo = md->geometry; | ||
334 | |||
335 | return 0; | ||
336 | } | ||
337 | |||
338 | /* | ||
339 | * Set the geometry of a device. | ||
340 | */ | ||
341 | int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo) | ||
342 | { | ||
343 | sector_t sz = (sector_t)geo->cylinders * geo->heads * geo->sectors; | ||
344 | |||
345 | if (geo->start > sz) { | ||
346 | DMWARN("Start sector is beyond the geometry limits."); | ||
347 | return -EINVAL; | ||
348 | } | ||
349 | |||
350 | md->geometry = *geo; | ||
351 | |||
352 | return 0; | ||
353 | } | ||
354 | |||
315 | /*----------------------------------------------------------------- | 355 | /*----------------------------------------------------------------- |
316 | * CRUD START: | 356 | * CRUD START: |
317 | * A more elegant soln is in the works that uses the queue | 357 | * A more elegant soln is in the works that uses the queue |
@@ -704,14 +744,14 @@ static int dm_any_congested(void *congested_data, int bdi_bits) | |||
704 | /*----------------------------------------------------------------- | 744 | /*----------------------------------------------------------------- |
705 | * An IDR is used to keep track of allocated minor numbers. | 745 | * An IDR is used to keep track of allocated minor numbers. |
706 | *---------------------------------------------------------------*/ | 746 | *---------------------------------------------------------------*/ |
707 | static DECLARE_MUTEX(_minor_lock); | 747 | static DEFINE_MUTEX(_minor_lock); |
708 | static DEFINE_IDR(_minor_idr); | 748 | static DEFINE_IDR(_minor_idr); |
709 | 749 | ||
710 | static void free_minor(unsigned int minor) | 750 | static void free_minor(unsigned int minor) |
711 | { | 751 | { |
712 | down(&_minor_lock); | 752 | mutex_lock(&_minor_lock); |
713 | idr_remove(&_minor_idr, minor); | 753 | idr_remove(&_minor_idr, minor); |
714 | up(&_minor_lock); | 754 | mutex_unlock(&_minor_lock); |
715 | } | 755 | } |
716 | 756 | ||
717 | /* | 757 | /* |
@@ -724,7 +764,7 @@ static int specific_minor(struct mapped_device *md, unsigned int minor) | |||
724 | if (minor >= (1 << MINORBITS)) | 764 | if (minor >= (1 << MINORBITS)) |
725 | return -EINVAL; | 765 | return -EINVAL; |
726 | 766 | ||
727 | down(&_minor_lock); | 767 | mutex_lock(&_minor_lock); |
728 | 768 | ||
729 | if (idr_find(&_minor_idr, minor)) { | 769 | if (idr_find(&_minor_idr, minor)) { |
730 | r = -EBUSY; | 770 | r = -EBUSY; |
@@ -749,7 +789,7 @@ static int specific_minor(struct mapped_device *md, unsigned int minor) | |||
749 | } | 789 | } |
750 | 790 | ||
751 | out: | 791 | out: |
752 | up(&_minor_lock); | 792 | mutex_unlock(&_minor_lock); |
753 | return r; | 793 | return r; |
754 | } | 794 | } |
755 | 795 | ||
@@ -758,7 +798,7 @@ static int next_free_minor(struct mapped_device *md, unsigned int *minor) | |||
758 | int r; | 798 | int r; |
759 | unsigned int m; | 799 | unsigned int m; |
760 | 800 | ||
761 | down(&_minor_lock); | 801 | mutex_lock(&_minor_lock); |
762 | 802 | ||
763 | r = idr_pre_get(&_minor_idr, GFP_KERNEL); | 803 | r = idr_pre_get(&_minor_idr, GFP_KERNEL); |
764 | if (!r) { | 804 | if (!r) { |
@@ -780,7 +820,7 @@ static int next_free_minor(struct mapped_device *md, unsigned int *minor) | |||
780 | *minor = m; | 820 | *minor = m; |
781 | 821 | ||
782 | out: | 822 | out: |
783 | up(&_minor_lock); | 823 | mutex_unlock(&_minor_lock); |
784 | return r; | 824 | return r; |
785 | } | 825 | } |
786 | 826 | ||
@@ -842,6 +882,7 @@ static struct mapped_device *alloc_dev(unsigned int minor, int persistent) | |||
842 | md->disk->private_data = md; | 882 | md->disk->private_data = md; |
843 | sprintf(md->disk->disk_name, "dm-%d", minor); | 883 | sprintf(md->disk->disk_name, "dm-%d", minor); |
844 | add_disk(md->disk); | 884 | add_disk(md->disk); |
885 | format_dev_t(md->name, MKDEV(_major, minor)); | ||
845 | 886 | ||
846 | atomic_set(&md->pending, 0); | 887 | atomic_set(&md->pending, 0); |
847 | init_waitqueue_head(&md->wait); | 888 | init_waitqueue_head(&md->wait); |
@@ -904,6 +945,13 @@ static int __bind(struct mapped_device *md, struct dm_table *t) | |||
904 | sector_t size; | 945 | sector_t size; |
905 | 946 | ||
906 | size = dm_table_get_size(t); | 947 | size = dm_table_get_size(t); |
948 | |||
949 | /* | ||
950 | * Wipe any geometry if the size of the table changed. | ||
951 | */ | ||
952 | if (size != get_capacity(md->disk)) | ||
953 | memset(&md->geometry, 0, sizeof(md->geometry)); | ||
954 | |||
907 | __set_size(md, size); | 955 | __set_size(md, size); |
908 | if (size == 0) | 956 | if (size == 0) |
909 | return 0; | 957 | return 0; |
@@ -967,13 +1015,13 @@ static struct mapped_device *dm_find_md(dev_t dev) | |||
967 | if (MAJOR(dev) != _major || minor >= (1 << MINORBITS)) | 1015 | if (MAJOR(dev) != _major || minor >= (1 << MINORBITS)) |
968 | return NULL; | 1016 | return NULL; |
969 | 1017 | ||
970 | down(&_minor_lock); | 1018 | mutex_lock(&_minor_lock); |
971 | 1019 | ||
972 | md = idr_find(&_minor_idr, minor); | 1020 | md = idr_find(&_minor_idr, minor); |
973 | if (!md || (dm_disk(md)->first_minor != minor)) | 1021 | if (!md || (dm_disk(md)->first_minor != minor)) |
974 | md = NULL; | 1022 | md = NULL; |
975 | 1023 | ||
976 | up(&_minor_lock); | 1024 | mutex_unlock(&_minor_lock); |
977 | 1025 | ||
978 | return md; | 1026 | return md; |
979 | } | 1027 | } |
@@ -988,15 +1036,9 @@ struct mapped_device *dm_get_md(dev_t dev) | |||
988 | return md; | 1036 | return md; |
989 | } | 1037 | } |
990 | 1038 | ||
991 | void *dm_get_mdptr(dev_t dev) | 1039 | void *dm_get_mdptr(struct mapped_device *md) |
992 | { | 1040 | { |
993 | struct mapped_device *md; | 1041 | return md->interface_ptr; |
994 | void *mdptr = NULL; | ||
995 | |||
996 | md = dm_find_md(dev); | ||
997 | if (md) | ||
998 | mdptr = md->interface_ptr; | ||
999 | return mdptr; | ||
1000 | } | 1042 | } |
1001 | 1043 | ||
1002 | void dm_set_mdptr(struct mapped_device *md, void *ptr) | 1044 | void dm_set_mdptr(struct mapped_device *md, void *ptr) |
@@ -1011,18 +1053,18 @@ void dm_get(struct mapped_device *md) | |||
1011 | 1053 | ||
1012 | void dm_put(struct mapped_device *md) | 1054 | void dm_put(struct mapped_device *md) |
1013 | { | 1055 | { |
1014 | struct dm_table *map = dm_get_table(md); | 1056 | struct dm_table *map; |
1015 | 1057 | ||
1016 | if (atomic_dec_and_test(&md->holders)) { | 1058 | if (atomic_dec_and_test(&md->holders)) { |
1059 | map = dm_get_table(md); | ||
1017 | if (!dm_suspended(md)) { | 1060 | if (!dm_suspended(md)) { |
1018 | dm_table_presuspend_targets(map); | 1061 | dm_table_presuspend_targets(map); |
1019 | dm_table_postsuspend_targets(map); | 1062 | dm_table_postsuspend_targets(map); |
1020 | } | 1063 | } |
1021 | __unbind(md); | 1064 | __unbind(md); |
1065 | dm_table_put(map); | ||
1022 | free_dev(md); | 1066 | free_dev(md); |
1023 | } | 1067 | } |
1024 | |||
1025 | dm_table_put(map); | ||
1026 | } | 1068 | } |
1027 | 1069 | ||
1028 | /* | 1070 | /* |
@@ -1107,6 +1149,7 @@ int dm_suspend(struct mapped_device *md, int do_lockfs) | |||
1107 | { | 1149 | { |
1108 | struct dm_table *map = NULL; | 1150 | struct dm_table *map = NULL; |
1109 | DECLARE_WAITQUEUE(wait, current); | 1151 | DECLARE_WAITQUEUE(wait, current); |
1152 | struct bio *def; | ||
1110 | int r = -EINVAL; | 1153 | int r = -EINVAL; |
1111 | 1154 | ||
1112 | down(&md->suspend_lock); | 1155 | down(&md->suspend_lock); |
@@ -1166,9 +1209,11 @@ int dm_suspend(struct mapped_device *md, int do_lockfs) | |||
1166 | /* were we interrupted ? */ | 1209 | /* were we interrupted ? */ |
1167 | r = -EINTR; | 1210 | r = -EINTR; |
1168 | if (atomic_read(&md->pending)) { | 1211 | if (atomic_read(&md->pending)) { |
1212 | clear_bit(DMF_BLOCK_IO, &md->flags); | ||
1213 | def = bio_list_get(&md->deferred); | ||
1214 | __flush_deferred_io(md, def); | ||
1169 | up_write(&md->io_lock); | 1215 | up_write(&md->io_lock); |
1170 | unlock_fs(md); | 1216 | unlock_fs(md); |
1171 | clear_bit(DMF_BLOCK_IO, &md->flags); | ||
1172 | goto out; | 1217 | goto out; |
1173 | } | 1218 | } |
1174 | up_write(&md->io_lock); | 1219 | up_write(&md->io_lock); |
@@ -1262,6 +1307,7 @@ int dm_suspended(struct mapped_device *md) | |||
1262 | static struct block_device_operations dm_blk_dops = { | 1307 | static struct block_device_operations dm_blk_dops = { |
1263 | .open = dm_blk_open, | 1308 | .open = dm_blk_open, |
1264 | .release = dm_blk_close, | 1309 | .release = dm_blk_close, |
1310 | .getgeo = dm_blk_getgeo, | ||
1265 | .owner = THIS_MODULE | 1311 | .owner = THIS_MODULE |
1266 | }; | 1312 | }; |
1267 | 1313 | ||
diff --git a/drivers/md/dm.h b/drivers/md/dm.h index 4eaf075da217..fd90bc8f9e45 100644 --- a/drivers/md/dm.h +++ b/drivers/md/dm.h | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/device-mapper.h> | 14 | #include <linux/device-mapper.h> |
15 | #include <linux/list.h> | 15 | #include <linux/list.h> |
16 | #include <linux/blkdev.h> | 16 | #include <linux/blkdev.h> |
17 | #include <linux/hdreg.h> | ||
17 | 18 | ||
18 | #define DM_NAME "device-mapper" | 19 | #define DM_NAME "device-mapper" |
19 | #define DMWARN(f, x...) printk(KERN_WARNING DM_NAME ": " f "\n" , ## x) | 20 | #define DMWARN(f, x...) printk(KERN_WARNING DM_NAME ": " f "\n" , ## x) |
@@ -23,16 +24,6 @@ | |||
23 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \ | 24 | #define DMEMIT(x...) sz += ((sz >= maxlen) ? \ |
24 | 0 : scnprintf(result + sz, maxlen - sz, x)) | 25 | 0 : scnprintf(result + sz, maxlen - sz, x)) |
25 | 26 | ||
26 | /* | ||
27 | * FIXME: I think this should be with the definition of sector_t | ||
28 | * in types.h. | ||
29 | */ | ||
30 | #ifdef CONFIG_LBD | ||
31 | #define SECTOR_FORMAT "%llu" | ||
32 | #else | ||
33 | #define SECTOR_FORMAT "%lu" | ||
34 | #endif | ||
35 | |||
36 | #define SECTOR_SHIFT 9 | 27 | #define SECTOR_SHIFT 9 |
37 | 28 | ||
38 | /* | 29 | /* |
@@ -57,7 +48,7 @@ struct mapped_device; | |||
57 | int dm_create(struct mapped_device **md); | 48 | int dm_create(struct mapped_device **md); |
58 | int dm_create_with_minor(unsigned int minor, struct mapped_device **md); | 49 | int dm_create_with_minor(unsigned int minor, struct mapped_device **md); |
59 | void dm_set_mdptr(struct mapped_device *md, void *ptr); | 50 | void dm_set_mdptr(struct mapped_device *md, void *ptr); |
60 | void *dm_get_mdptr(dev_t dev); | 51 | void *dm_get_mdptr(struct mapped_device *md); |
61 | struct mapped_device *dm_get_md(dev_t dev); | 52 | struct mapped_device *dm_get_md(dev_t dev); |
62 | 53 | ||
63 | /* | 54 | /* |
@@ -95,11 +86,18 @@ int dm_wait_event(struct mapped_device *md, int event_nr); | |||
95 | struct gendisk *dm_disk(struct mapped_device *md); | 86 | struct gendisk *dm_disk(struct mapped_device *md); |
96 | int dm_suspended(struct mapped_device *md); | 87 | int dm_suspended(struct mapped_device *md); |
97 | 88 | ||
89 | /* | ||
90 | * Geometry functions. | ||
91 | */ | ||
92 | int dm_get_geometry(struct mapped_device *md, struct hd_geometry *geo); | ||
93 | int dm_set_geometry(struct mapped_device *md, struct hd_geometry *geo); | ||
94 | |||
98 | /*----------------------------------------------------------------- | 95 | /*----------------------------------------------------------------- |
99 | * Functions for manipulating a table. Tables are also reference | 96 | * Functions for manipulating a table. Tables are also reference |
100 | * counted. | 97 | * counted. |
101 | *---------------------------------------------------------------*/ | 98 | *---------------------------------------------------------------*/ |
102 | int dm_table_create(struct dm_table **result, int mode, unsigned num_targets); | 99 | int dm_table_create(struct dm_table **result, int mode, |
100 | unsigned num_targets, struct mapped_device *md); | ||
103 | 101 | ||
104 | void dm_table_get(struct dm_table *t); | 102 | void dm_table_get(struct dm_table *t); |
105 | void dm_table_put(struct dm_table *t); | 103 | void dm_table_put(struct dm_table *t); |
@@ -117,6 +115,7 @@ void dm_table_set_restrictions(struct dm_table *t, struct request_queue *q); | |||
117 | unsigned int dm_table_get_num_targets(struct dm_table *t); | 115 | unsigned int dm_table_get_num_targets(struct dm_table *t); |
118 | struct list_head *dm_table_get_devices(struct dm_table *t); | 116 | struct list_head *dm_table_get_devices(struct dm_table *t); |
119 | int dm_table_get_mode(struct dm_table *t); | 117 | int dm_table_get_mode(struct dm_table *t); |
118 | struct mapped_device *dm_table_get_md(struct dm_table *t); | ||
120 | void dm_table_presuspend_targets(struct dm_table *t); | 119 | void dm_table_presuspend_targets(struct dm_table *t); |
121 | void dm_table_postsuspend_targets(struct dm_table *t); | 120 | void dm_table_postsuspend_targets(struct dm_table *t); |
122 | void dm_table_resume_targets(struct dm_table *t); | 121 | void dm_table_resume_targets(struct dm_table *t); |
diff --git a/drivers/md/kcopyd.c b/drivers/md/kcopyd.c index 9dcb2c8a3853..72480a48d88b 100644 --- a/drivers/md/kcopyd.c +++ b/drivers/md/kcopyd.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
23 | #include <linux/vmalloc.h> | 23 | #include <linux/vmalloc.h> |
24 | #include <linux/workqueue.h> | 24 | #include <linux/workqueue.h> |
25 | #include <linux/mutex.h> | ||
25 | 26 | ||
26 | #include "kcopyd.h" | 27 | #include "kcopyd.h" |
27 | 28 | ||
@@ -44,6 +45,9 @@ struct kcopyd_client { | |||
44 | struct page_list *pages; | 45 | struct page_list *pages; |
45 | unsigned int nr_pages; | 46 | unsigned int nr_pages; |
46 | unsigned int nr_free_pages; | 47 | unsigned int nr_free_pages; |
48 | |||
49 | wait_queue_head_t destroyq; | ||
50 | atomic_t nr_jobs; | ||
47 | }; | 51 | }; |
48 | 52 | ||
49 | static struct page_list *alloc_pl(void) | 53 | static struct page_list *alloc_pl(void) |
@@ -292,10 +296,15 @@ static int run_complete_job(struct kcopyd_job *job) | |||
292 | int read_err = job->read_err; | 296 | int read_err = job->read_err; |
293 | unsigned int write_err = job->write_err; | 297 | unsigned int write_err = job->write_err; |
294 | kcopyd_notify_fn fn = job->fn; | 298 | kcopyd_notify_fn fn = job->fn; |
299 | struct kcopyd_client *kc = job->kc; | ||
295 | 300 | ||
296 | kcopyd_put_pages(job->kc, job->pages); | 301 | kcopyd_put_pages(kc, job->pages); |
297 | mempool_free(job, _job_pool); | 302 | mempool_free(job, _job_pool); |
298 | fn(read_err, write_err, context); | 303 | fn(read_err, write_err, context); |
304 | |||
305 | if (atomic_dec_and_test(&kc->nr_jobs)) | ||
306 | wake_up(&kc->destroyq); | ||
307 | |||
299 | return 0; | 308 | return 0; |
300 | } | 309 | } |
301 | 310 | ||
@@ -430,6 +439,7 @@ static void do_work(void *ignored) | |||
430 | */ | 439 | */ |
431 | static void dispatch_job(struct kcopyd_job *job) | 440 | static void dispatch_job(struct kcopyd_job *job) |
432 | { | 441 | { |
442 | atomic_inc(&job->kc->nr_jobs); | ||
433 | push(&_pages_jobs, job); | 443 | push(&_pages_jobs, job); |
434 | wake(); | 444 | wake(); |
435 | } | 445 | } |
@@ -572,21 +582,21 @@ int kcopyd_cancel(struct kcopyd_job *job, int block) | |||
572 | /*----------------------------------------------------------------- | 582 | /*----------------------------------------------------------------- |
573 | * Unit setup | 583 | * Unit setup |
574 | *---------------------------------------------------------------*/ | 584 | *---------------------------------------------------------------*/ |
575 | static DECLARE_MUTEX(_client_lock); | 585 | static DEFINE_MUTEX(_client_lock); |
576 | static LIST_HEAD(_clients); | 586 | static LIST_HEAD(_clients); |
577 | 587 | ||
578 | static void client_add(struct kcopyd_client *kc) | 588 | static void client_add(struct kcopyd_client *kc) |
579 | { | 589 | { |
580 | down(&_client_lock); | 590 | mutex_lock(&_client_lock); |
581 | list_add(&kc->list, &_clients); | 591 | list_add(&kc->list, &_clients); |
582 | up(&_client_lock); | 592 | mutex_unlock(&_client_lock); |
583 | } | 593 | } |
584 | 594 | ||
585 | static void client_del(struct kcopyd_client *kc) | 595 | static void client_del(struct kcopyd_client *kc) |
586 | { | 596 | { |
587 | down(&_client_lock); | 597 | mutex_lock(&_client_lock); |
588 | list_del(&kc->list); | 598 | list_del(&kc->list); |
589 | up(&_client_lock); | 599 | mutex_unlock(&_client_lock); |
590 | } | 600 | } |
591 | 601 | ||
592 | static DEFINE_MUTEX(kcopyd_init_lock); | 602 | static DEFINE_MUTEX(kcopyd_init_lock); |
@@ -669,6 +679,9 @@ int kcopyd_client_create(unsigned int nr_pages, struct kcopyd_client **result) | |||
669 | return r; | 679 | return r; |
670 | } | 680 | } |
671 | 681 | ||
682 | init_waitqueue_head(&kc->destroyq); | ||
683 | atomic_set(&kc->nr_jobs, 0); | ||
684 | |||
672 | client_add(kc); | 685 | client_add(kc); |
673 | *result = kc; | 686 | *result = kc; |
674 | return 0; | 687 | return 0; |
@@ -676,6 +689,9 @@ int kcopyd_client_create(unsigned int nr_pages, struct kcopyd_client **result) | |||
676 | 689 | ||
677 | void kcopyd_client_destroy(struct kcopyd_client *kc) | 690 | void kcopyd_client_destroy(struct kcopyd_client *kc) |
678 | { | 691 | { |
692 | /* Wait for completion of all jobs submitted by this client. */ | ||
693 | wait_event(kc->destroyq, !atomic_read(&kc->nr_jobs)); | ||
694 | |||
679 | dm_io_put(kc->nr_pages); | 695 | dm_io_put(kc->nr_pages); |
680 | client_free_pages(kc); | 696 | client_free_pages(kc); |
681 | client_del(kc); | 697 | client_del(kc); |
diff --git a/drivers/md/md.c b/drivers/md/md.c index 5ed2228745cb..039e071c1007 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
@@ -43,6 +43,7 @@ | |||
43 | #include <linux/buffer_head.h> /* for invalidate_bdev */ | 43 | #include <linux/buffer_head.h> /* for invalidate_bdev */ |
44 | #include <linux/suspend.h> | 44 | #include <linux/suspend.h> |
45 | #include <linux/poll.h> | 45 | #include <linux/poll.h> |
46 | #include <linux/mutex.h> | ||
46 | 47 | ||
47 | #include <linux/init.h> | 48 | #include <linux/init.h> |
48 | 49 | ||
@@ -158,11 +159,12 @@ static int start_readonly; | |||
158 | */ | 159 | */ |
159 | static DECLARE_WAIT_QUEUE_HEAD(md_event_waiters); | 160 | static DECLARE_WAIT_QUEUE_HEAD(md_event_waiters); |
160 | static atomic_t md_event_count; | 161 | static atomic_t md_event_count; |
161 | static void md_new_event(mddev_t *mddev) | 162 | void md_new_event(mddev_t *mddev) |
162 | { | 163 | { |
163 | atomic_inc(&md_event_count); | 164 | atomic_inc(&md_event_count); |
164 | wake_up(&md_event_waiters); | 165 | wake_up(&md_event_waiters); |
165 | } | 166 | } |
167 | EXPORT_SYMBOL_GPL(md_new_event); | ||
166 | 168 | ||
167 | /* | 169 | /* |
168 | * Enables to iterate over all existing md arrays | 170 | * Enables to iterate over all existing md arrays |
@@ -253,7 +255,7 @@ static mddev_t * mddev_find(dev_t unit) | |||
253 | else | 255 | else |
254 | new->md_minor = MINOR(unit) >> MdpMinorShift; | 256 | new->md_minor = MINOR(unit) >> MdpMinorShift; |
255 | 257 | ||
256 | init_MUTEX(&new->reconfig_sem); | 258 | mutex_init(&new->reconfig_mutex); |
257 | INIT_LIST_HEAD(&new->disks); | 259 | INIT_LIST_HEAD(&new->disks); |
258 | INIT_LIST_HEAD(&new->all_mddevs); | 260 | INIT_LIST_HEAD(&new->all_mddevs); |
259 | init_timer(&new->safemode_timer); | 261 | init_timer(&new->safemode_timer); |
@@ -266,6 +268,7 @@ static mddev_t * mddev_find(dev_t unit) | |||
266 | kfree(new); | 268 | kfree(new); |
267 | return NULL; | 269 | return NULL; |
268 | } | 270 | } |
271 | set_bit(QUEUE_FLAG_CLUSTER, &new->queue->queue_flags); | ||
269 | 272 | ||
270 | blk_queue_make_request(new->queue, md_fail_request); | 273 | blk_queue_make_request(new->queue, md_fail_request); |
271 | 274 | ||
@@ -274,22 +277,22 @@ static mddev_t * mddev_find(dev_t unit) | |||
274 | 277 | ||
275 | static inline int mddev_lock(mddev_t * mddev) | 278 | static inline int mddev_lock(mddev_t * mddev) |
276 | { | 279 | { |
277 | return down_interruptible(&mddev->reconfig_sem); | 280 | return mutex_lock_interruptible(&mddev->reconfig_mutex); |
278 | } | 281 | } |
279 | 282 | ||
280 | static inline void mddev_lock_uninterruptible(mddev_t * mddev) | 283 | static inline void mddev_lock_uninterruptible(mddev_t * mddev) |
281 | { | 284 | { |
282 | down(&mddev->reconfig_sem); | 285 | mutex_lock(&mddev->reconfig_mutex); |
283 | } | 286 | } |
284 | 287 | ||
285 | static inline int mddev_trylock(mddev_t * mddev) | 288 | static inline int mddev_trylock(mddev_t * mddev) |
286 | { | 289 | { |
287 | return down_trylock(&mddev->reconfig_sem); | 290 | return mutex_trylock(&mddev->reconfig_mutex); |
288 | } | 291 | } |
289 | 292 | ||
290 | static inline void mddev_unlock(mddev_t * mddev) | 293 | static inline void mddev_unlock(mddev_t * mddev) |
291 | { | 294 | { |
292 | up(&mddev->reconfig_sem); | 295 | mutex_unlock(&mddev->reconfig_mutex); |
293 | 296 | ||
294 | md_wakeup_thread(mddev->thread); | 297 | md_wakeup_thread(mddev->thread); |
295 | } | 298 | } |
@@ -660,7 +663,8 @@ static int super_90_load(mdk_rdev_t *rdev, mdk_rdev_t *refdev, int minor_version | |||
660 | } | 663 | } |
661 | 664 | ||
662 | if (sb->major_version != 0 || | 665 | if (sb->major_version != 0 || |
663 | sb->minor_version != 90) { | 666 | sb->minor_version < 90 || |
667 | sb->minor_version > 91) { | ||
664 | printk(KERN_WARNING "Bad version number %d.%d on %s\n", | 668 | printk(KERN_WARNING "Bad version number %d.%d on %s\n", |
665 | sb->major_version, sb->minor_version, | 669 | sb->major_version, sb->minor_version, |
666 | b); | 670 | b); |
@@ -745,6 +749,20 @@ static int super_90_validate(mddev_t *mddev, mdk_rdev_t *rdev) | |||
745 | mddev->bitmap_offset = 0; | 749 | mddev->bitmap_offset = 0; |
746 | mddev->default_bitmap_offset = MD_SB_BYTES >> 9; | 750 | mddev->default_bitmap_offset = MD_SB_BYTES >> 9; |
747 | 751 | ||
752 | if (mddev->minor_version >= 91) { | ||
753 | mddev->reshape_position = sb->reshape_position; | ||
754 | mddev->delta_disks = sb->delta_disks; | ||
755 | mddev->new_level = sb->new_level; | ||
756 | mddev->new_layout = sb->new_layout; | ||
757 | mddev->new_chunk = sb->new_chunk; | ||
758 | } else { | ||
759 | mddev->reshape_position = MaxSector; | ||
760 | mddev->delta_disks = 0; | ||
761 | mddev->new_level = mddev->level; | ||
762 | mddev->new_layout = mddev->layout; | ||
763 | mddev->new_chunk = mddev->chunk_size; | ||
764 | } | ||
765 | |||
748 | if (sb->state & (1<<MD_SB_CLEAN)) | 766 | if (sb->state & (1<<MD_SB_CLEAN)) |
749 | mddev->recovery_cp = MaxSector; | 767 | mddev->recovery_cp = MaxSector; |
750 | else { | 768 | else { |
@@ -764,7 +782,8 @@ static int super_90_validate(mddev_t *mddev, mdk_rdev_t *rdev) | |||
764 | 782 | ||
765 | if (sb->state & (1<<MD_SB_BITMAP_PRESENT) && | 783 | if (sb->state & (1<<MD_SB_BITMAP_PRESENT) && |
766 | mddev->bitmap_file == NULL) { | 784 | mddev->bitmap_file == NULL) { |
767 | if (mddev->level != 1 && mddev->level != 5 && mddev->level != 6 | 785 | if (mddev->level != 1 && mddev->level != 4 |
786 | && mddev->level != 5 && mddev->level != 6 | ||
768 | && mddev->level != 10) { | 787 | && mddev->level != 10) { |
769 | /* FIXME use a better test */ | 788 | /* FIXME use a better test */ |
770 | printk(KERN_WARNING "md: bitmaps not supported for this level.\n"); | 789 | printk(KERN_WARNING "md: bitmaps not supported for this level.\n"); |
@@ -838,7 +857,6 @@ static void super_90_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
838 | 857 | ||
839 | sb->md_magic = MD_SB_MAGIC; | 858 | sb->md_magic = MD_SB_MAGIC; |
840 | sb->major_version = mddev->major_version; | 859 | sb->major_version = mddev->major_version; |
841 | sb->minor_version = mddev->minor_version; | ||
842 | sb->patch_version = mddev->patch_version; | 860 | sb->patch_version = mddev->patch_version; |
843 | sb->gvalid_words = 0; /* ignored */ | 861 | sb->gvalid_words = 0; /* ignored */ |
844 | memcpy(&sb->set_uuid0, mddev->uuid+0, 4); | 862 | memcpy(&sb->set_uuid0, mddev->uuid+0, 4); |
@@ -857,6 +875,17 @@ static void super_90_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
857 | sb->events_hi = (mddev->events>>32); | 875 | sb->events_hi = (mddev->events>>32); |
858 | sb->events_lo = (u32)mddev->events; | 876 | sb->events_lo = (u32)mddev->events; |
859 | 877 | ||
878 | if (mddev->reshape_position == MaxSector) | ||
879 | sb->minor_version = 90; | ||
880 | else { | ||
881 | sb->minor_version = 91; | ||
882 | sb->reshape_position = mddev->reshape_position; | ||
883 | sb->new_level = mddev->new_level; | ||
884 | sb->delta_disks = mddev->delta_disks; | ||
885 | sb->new_layout = mddev->new_layout; | ||
886 | sb->new_chunk = mddev->new_chunk; | ||
887 | } | ||
888 | mddev->minor_version = sb->minor_version; | ||
860 | if (mddev->in_sync) | 889 | if (mddev->in_sync) |
861 | { | 890 | { |
862 | sb->recovery_cp = mddev->recovery_cp; | 891 | sb->recovery_cp = mddev->recovery_cp; |
@@ -893,10 +922,9 @@ static void super_90_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
893 | d->raid_disk = rdev2->raid_disk; | 922 | d->raid_disk = rdev2->raid_disk; |
894 | else | 923 | else |
895 | d->raid_disk = rdev2->desc_nr; /* compatibility */ | 924 | d->raid_disk = rdev2->desc_nr; /* compatibility */ |
896 | if (test_bit(Faulty, &rdev2->flags)) { | 925 | if (test_bit(Faulty, &rdev2->flags)) |
897 | d->state = (1<<MD_DISK_FAULTY); | 926 | d->state = (1<<MD_DISK_FAULTY); |
898 | failed++; | 927 | else if (test_bit(In_sync, &rdev2->flags)) { |
899 | } else if (test_bit(In_sync, &rdev2->flags)) { | ||
900 | d->state = (1<<MD_DISK_ACTIVE); | 928 | d->state = (1<<MD_DISK_ACTIVE); |
901 | d->state |= (1<<MD_DISK_SYNC); | 929 | d->state |= (1<<MD_DISK_SYNC); |
902 | active++; | 930 | active++; |
@@ -1102,6 +1130,20 @@ static int super_1_validate(mddev_t *mddev, mdk_rdev_t *rdev) | |||
1102 | } | 1130 | } |
1103 | mddev->bitmap_offset = (__s32)le32_to_cpu(sb->bitmap_offset); | 1131 | mddev->bitmap_offset = (__s32)le32_to_cpu(sb->bitmap_offset); |
1104 | } | 1132 | } |
1133 | if ((le32_to_cpu(sb->feature_map) & MD_FEATURE_RESHAPE_ACTIVE)) { | ||
1134 | mddev->reshape_position = le64_to_cpu(sb->reshape_position); | ||
1135 | mddev->delta_disks = le32_to_cpu(sb->delta_disks); | ||
1136 | mddev->new_level = le32_to_cpu(sb->new_level); | ||
1137 | mddev->new_layout = le32_to_cpu(sb->new_layout); | ||
1138 | mddev->new_chunk = le32_to_cpu(sb->new_chunk)<<9; | ||
1139 | } else { | ||
1140 | mddev->reshape_position = MaxSector; | ||
1141 | mddev->delta_disks = 0; | ||
1142 | mddev->new_level = mddev->level; | ||
1143 | mddev->new_layout = mddev->layout; | ||
1144 | mddev->new_chunk = mddev->chunk_size; | ||
1145 | } | ||
1146 | |||
1105 | } else if (mddev->pers == NULL) { | 1147 | } else if (mddev->pers == NULL) { |
1106 | /* Insist of good event counter while assembling */ | 1148 | /* Insist of good event counter while assembling */ |
1107 | __u64 ev1 = le64_to_cpu(sb->events); | 1149 | __u64 ev1 = le64_to_cpu(sb->events); |
@@ -1173,6 +1215,14 @@ static void super_1_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
1173 | sb->bitmap_offset = cpu_to_le32((__u32)mddev->bitmap_offset); | 1215 | sb->bitmap_offset = cpu_to_le32((__u32)mddev->bitmap_offset); |
1174 | sb->feature_map = cpu_to_le32(MD_FEATURE_BITMAP_OFFSET); | 1216 | sb->feature_map = cpu_to_le32(MD_FEATURE_BITMAP_OFFSET); |
1175 | } | 1217 | } |
1218 | if (mddev->reshape_position != MaxSector) { | ||
1219 | sb->feature_map |= cpu_to_le32(MD_FEATURE_RESHAPE_ACTIVE); | ||
1220 | sb->reshape_position = cpu_to_le64(mddev->reshape_position); | ||
1221 | sb->new_layout = cpu_to_le32(mddev->new_layout); | ||
1222 | sb->delta_disks = cpu_to_le32(mddev->delta_disks); | ||
1223 | sb->new_level = cpu_to_le32(mddev->new_level); | ||
1224 | sb->new_chunk = cpu_to_le32(mddev->new_chunk>>9); | ||
1225 | } | ||
1176 | 1226 | ||
1177 | max_dev = 0; | 1227 | max_dev = 0; |
1178 | ITERATE_RDEV(mddev,rdev2,tmp) | 1228 | ITERATE_RDEV(mddev,rdev2,tmp) |
@@ -1301,6 +1351,7 @@ static int bind_rdev_to_array(mdk_rdev_t * rdev, mddev_t * mddev) | |||
1301 | else | 1351 | else |
1302 | ko = &rdev->bdev->bd_disk->kobj; | 1352 | ko = &rdev->bdev->bd_disk->kobj; |
1303 | sysfs_create_link(&rdev->kobj, ko, "block"); | 1353 | sysfs_create_link(&rdev->kobj, ko, "block"); |
1354 | bd_claim_by_disk(rdev->bdev, rdev, mddev->gendisk); | ||
1304 | return 0; | 1355 | return 0; |
1305 | } | 1356 | } |
1306 | 1357 | ||
@@ -1311,6 +1362,7 @@ static void unbind_rdev_from_array(mdk_rdev_t * rdev) | |||
1311 | MD_BUG(); | 1362 | MD_BUG(); |
1312 | return; | 1363 | return; |
1313 | } | 1364 | } |
1365 | bd_release_from_disk(rdev->bdev, rdev->mddev->gendisk); | ||
1314 | list_del_init(&rdev->same_set); | 1366 | list_del_init(&rdev->same_set); |
1315 | printk(KERN_INFO "md: unbind<%s>\n", bdevname(rdev->bdev,b)); | 1367 | printk(KERN_INFO "md: unbind<%s>\n", bdevname(rdev->bdev,b)); |
1316 | rdev->mddev = NULL; | 1368 | rdev->mddev = NULL; |
@@ -1493,7 +1545,7 @@ static void sync_sbs(mddev_t * mddev) | |||
1493 | } | 1545 | } |
1494 | } | 1546 | } |
1495 | 1547 | ||
1496 | static void md_update_sb(mddev_t * mddev) | 1548 | void md_update_sb(mddev_t * mddev) |
1497 | { | 1549 | { |
1498 | int err; | 1550 | int err; |
1499 | struct list_head *tmp; | 1551 | struct list_head *tmp; |
@@ -1570,6 +1622,7 @@ repeat: | |||
1570 | wake_up(&mddev->sb_wait); | 1622 | wake_up(&mddev->sb_wait); |
1571 | 1623 | ||
1572 | } | 1624 | } |
1625 | EXPORT_SYMBOL_GPL(md_update_sb); | ||
1573 | 1626 | ||
1574 | /* words written to sysfs files may, or my not, be \n terminated. | 1627 | /* words written to sysfs files may, or my not, be \n terminated. |
1575 | * We want to accept with case. For this we use cmd_match. | 1628 | * We want to accept with case. For this we use cmd_match. |
@@ -2162,7 +2215,9 @@ action_show(mddev_t *mddev, char *page) | |||
2162 | char *type = "idle"; | 2215 | char *type = "idle"; |
2163 | if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery) || | 2216 | if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery) || |
2164 | test_bit(MD_RECOVERY_NEEDED, &mddev->recovery)) { | 2217 | test_bit(MD_RECOVERY_NEEDED, &mddev->recovery)) { |
2165 | if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) { | 2218 | if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) |
2219 | type = "reshape"; | ||
2220 | else if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) { | ||
2166 | if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) | 2221 | if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) |
2167 | type = "resync"; | 2222 | type = "resync"; |
2168 | else if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)) | 2223 | else if (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)) |
@@ -2193,7 +2248,14 @@ action_store(mddev_t *mddev, const char *page, size_t len) | |||
2193 | return -EBUSY; | 2248 | return -EBUSY; |
2194 | else if (cmd_match(page, "resync") || cmd_match(page, "recover")) | 2249 | else if (cmd_match(page, "resync") || cmd_match(page, "recover")) |
2195 | set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); | 2250 | set_bit(MD_RECOVERY_NEEDED, &mddev->recovery); |
2196 | else { | 2251 | else if (cmd_match(page, "reshape")) { |
2252 | int err; | ||
2253 | if (mddev->pers->start_reshape == NULL) | ||
2254 | return -EINVAL; | ||
2255 | err = mddev->pers->start_reshape(mddev); | ||
2256 | if (err) | ||
2257 | return err; | ||
2258 | } else { | ||
2197 | if (cmd_match(page, "check")) | 2259 | if (cmd_match(page, "check")) |
2198 | set_bit(MD_RECOVERY_CHECK, &mddev->recovery); | 2260 | set_bit(MD_RECOVERY_CHECK, &mddev->recovery); |
2199 | else if (cmd_match(page, "repair")) | 2261 | else if (cmd_match(page, "repair")) |
@@ -2304,6 +2366,63 @@ sync_completed_show(mddev_t *mddev, char *page) | |||
2304 | static struct md_sysfs_entry | 2366 | static struct md_sysfs_entry |
2305 | md_sync_completed = __ATTR_RO(sync_completed); | 2367 | md_sync_completed = __ATTR_RO(sync_completed); |
2306 | 2368 | ||
2369 | static ssize_t | ||
2370 | suspend_lo_show(mddev_t *mddev, char *page) | ||
2371 | { | ||
2372 | return sprintf(page, "%llu\n", (unsigned long long)mddev->suspend_lo); | ||
2373 | } | ||
2374 | |||
2375 | static ssize_t | ||
2376 | suspend_lo_store(mddev_t *mddev, const char *buf, size_t len) | ||
2377 | { | ||
2378 | char *e; | ||
2379 | unsigned long long new = simple_strtoull(buf, &e, 10); | ||
2380 | |||
2381 | if (mddev->pers->quiesce == NULL) | ||
2382 | return -EINVAL; | ||
2383 | if (buf == e || (*e && *e != '\n')) | ||
2384 | return -EINVAL; | ||
2385 | if (new >= mddev->suspend_hi || | ||
2386 | (new > mddev->suspend_lo && new < mddev->suspend_hi)) { | ||
2387 | mddev->suspend_lo = new; | ||
2388 | mddev->pers->quiesce(mddev, 2); | ||
2389 | return len; | ||
2390 | } else | ||
2391 | return -EINVAL; | ||
2392 | } | ||
2393 | static struct md_sysfs_entry md_suspend_lo = | ||
2394 | __ATTR(suspend_lo, S_IRUGO|S_IWUSR, suspend_lo_show, suspend_lo_store); | ||
2395 | |||
2396 | |||
2397 | static ssize_t | ||
2398 | suspend_hi_show(mddev_t *mddev, char *page) | ||
2399 | { | ||
2400 | return sprintf(page, "%llu\n", (unsigned long long)mddev->suspend_hi); | ||
2401 | } | ||
2402 | |||
2403 | static ssize_t | ||
2404 | suspend_hi_store(mddev_t *mddev, const char *buf, size_t len) | ||
2405 | { | ||
2406 | char *e; | ||
2407 | unsigned long long new = simple_strtoull(buf, &e, 10); | ||
2408 | |||
2409 | if (mddev->pers->quiesce == NULL) | ||
2410 | return -EINVAL; | ||
2411 | if (buf == e || (*e && *e != '\n')) | ||
2412 | return -EINVAL; | ||
2413 | if ((new <= mddev->suspend_lo && mddev->suspend_lo >= mddev->suspend_hi) || | ||
2414 | (new > mddev->suspend_lo && new > mddev->suspend_hi)) { | ||
2415 | mddev->suspend_hi = new; | ||
2416 | mddev->pers->quiesce(mddev, 1); | ||
2417 | mddev->pers->quiesce(mddev, 0); | ||
2418 | return len; | ||
2419 | } else | ||
2420 | return -EINVAL; | ||
2421 | } | ||
2422 | static struct md_sysfs_entry md_suspend_hi = | ||
2423 | __ATTR(suspend_hi, S_IRUGO|S_IWUSR, suspend_hi_show, suspend_hi_store); | ||
2424 | |||
2425 | |||
2307 | static struct attribute *md_default_attrs[] = { | 2426 | static struct attribute *md_default_attrs[] = { |
2308 | &md_level.attr, | 2427 | &md_level.attr, |
2309 | &md_raid_disks.attr, | 2428 | &md_raid_disks.attr, |
@@ -2321,6 +2440,8 @@ static struct attribute *md_redundancy_attrs[] = { | |||
2321 | &md_sync_max.attr, | 2440 | &md_sync_max.attr, |
2322 | &md_sync_speed.attr, | 2441 | &md_sync_speed.attr, |
2323 | &md_sync_completed.attr, | 2442 | &md_sync_completed.attr, |
2443 | &md_suspend_lo.attr, | ||
2444 | &md_suspend_hi.attr, | ||
2324 | NULL, | 2445 | NULL, |
2325 | }; | 2446 | }; |
2326 | static struct attribute_group md_redundancy_group = { | 2447 | static struct attribute_group md_redundancy_group = { |
@@ -2380,7 +2501,7 @@ int mdp_major = 0; | |||
2380 | 2501 | ||
2381 | static struct kobject *md_probe(dev_t dev, int *part, void *data) | 2502 | static struct kobject *md_probe(dev_t dev, int *part, void *data) |
2382 | { | 2503 | { |
2383 | static DECLARE_MUTEX(disks_sem); | 2504 | static DEFINE_MUTEX(disks_mutex); |
2384 | mddev_t *mddev = mddev_find(dev); | 2505 | mddev_t *mddev = mddev_find(dev); |
2385 | struct gendisk *disk; | 2506 | struct gendisk *disk; |
2386 | int partitioned = (MAJOR(dev) != MD_MAJOR); | 2507 | int partitioned = (MAJOR(dev) != MD_MAJOR); |
@@ -2390,15 +2511,15 @@ static struct kobject *md_probe(dev_t dev, int *part, void *data) | |||
2390 | if (!mddev) | 2511 | if (!mddev) |
2391 | return NULL; | 2512 | return NULL; |
2392 | 2513 | ||
2393 | down(&disks_sem); | 2514 | mutex_lock(&disks_mutex); |
2394 | if (mddev->gendisk) { | 2515 | if (mddev->gendisk) { |
2395 | up(&disks_sem); | 2516 | mutex_unlock(&disks_mutex); |
2396 | mddev_put(mddev); | 2517 | mddev_put(mddev); |
2397 | return NULL; | 2518 | return NULL; |
2398 | } | 2519 | } |
2399 | disk = alloc_disk(1 << shift); | 2520 | disk = alloc_disk(1 << shift); |
2400 | if (!disk) { | 2521 | if (!disk) { |
2401 | up(&disks_sem); | 2522 | mutex_unlock(&disks_mutex); |
2402 | mddev_put(mddev); | 2523 | mddev_put(mddev); |
2403 | return NULL; | 2524 | return NULL; |
2404 | } | 2525 | } |
@@ -2416,7 +2537,7 @@ static struct kobject *md_probe(dev_t dev, int *part, void *data) | |||
2416 | disk->queue = mddev->queue; | 2537 | disk->queue = mddev->queue; |
2417 | add_disk(disk); | 2538 | add_disk(disk); |
2418 | mddev->gendisk = disk; | 2539 | mddev->gendisk = disk; |
2419 | up(&disks_sem); | 2540 | mutex_unlock(&disks_mutex); |
2420 | mddev->kobj.parent = &disk->kobj; | 2541 | mddev->kobj.parent = &disk->kobj; |
2421 | mddev->kobj.k_name = NULL; | 2542 | mddev->kobj.k_name = NULL; |
2422 | snprintf(mddev->kobj.name, KOBJ_NAME_LEN, "%s", "md"); | 2543 | snprintf(mddev->kobj.name, KOBJ_NAME_LEN, "%s", "md"); |
@@ -2539,6 +2660,14 @@ static int do_md_run(mddev_t * mddev) | |||
2539 | mddev->level = pers->level; | 2660 | mddev->level = pers->level; |
2540 | strlcpy(mddev->clevel, pers->name, sizeof(mddev->clevel)); | 2661 | strlcpy(mddev->clevel, pers->name, sizeof(mddev->clevel)); |
2541 | 2662 | ||
2663 | if (mddev->reshape_position != MaxSector && | ||
2664 | pers->start_reshape == NULL) { | ||
2665 | /* This personality cannot handle reshaping... */ | ||
2666 | mddev->pers = NULL; | ||
2667 | module_put(pers->owner); | ||
2668 | return -EINVAL; | ||
2669 | } | ||
2670 | |||
2542 | mddev->recovery = 0; | 2671 | mddev->recovery = 0; |
2543 | mddev->resync_max_sectors = mddev->size << 1; /* may be over-ridden by personality */ | 2672 | mddev->resync_max_sectors = mddev->size << 1; /* may be over-ridden by personality */ |
2544 | mddev->barriers_work = 1; | 2673 | mddev->barriers_work = 1; |
@@ -2772,7 +2901,6 @@ static void autorun_array(mddev_t *mddev) | |||
2772 | */ | 2901 | */ |
2773 | static void autorun_devices(int part) | 2902 | static void autorun_devices(int part) |
2774 | { | 2903 | { |
2775 | struct list_head candidates; | ||
2776 | struct list_head *tmp; | 2904 | struct list_head *tmp; |
2777 | mdk_rdev_t *rdev0, *rdev; | 2905 | mdk_rdev_t *rdev0, *rdev; |
2778 | mddev_t *mddev; | 2906 | mddev_t *mddev; |
@@ -2781,6 +2909,7 @@ static void autorun_devices(int part) | |||
2781 | printk(KERN_INFO "md: autorun ...\n"); | 2909 | printk(KERN_INFO "md: autorun ...\n"); |
2782 | while (!list_empty(&pending_raid_disks)) { | 2910 | while (!list_empty(&pending_raid_disks)) { |
2783 | dev_t dev; | 2911 | dev_t dev; |
2912 | LIST_HEAD(candidates); | ||
2784 | rdev0 = list_entry(pending_raid_disks.next, | 2913 | rdev0 = list_entry(pending_raid_disks.next, |
2785 | mdk_rdev_t, same_set); | 2914 | mdk_rdev_t, same_set); |
2786 | 2915 | ||
@@ -3427,11 +3556,18 @@ static int set_array_info(mddev_t * mddev, mdu_array_info_t *info) | |||
3427 | mddev->default_bitmap_offset = MD_SB_BYTES >> 9; | 3556 | mddev->default_bitmap_offset = MD_SB_BYTES >> 9; |
3428 | mddev->bitmap_offset = 0; | 3557 | mddev->bitmap_offset = 0; |
3429 | 3558 | ||
3559 | mddev->reshape_position = MaxSector; | ||
3560 | |||
3430 | /* | 3561 | /* |
3431 | * Generate a 128 bit UUID | 3562 | * Generate a 128 bit UUID |
3432 | */ | 3563 | */ |
3433 | get_random_bytes(mddev->uuid, 16); | 3564 | get_random_bytes(mddev->uuid, 16); |
3434 | 3565 | ||
3566 | mddev->new_level = mddev->level; | ||
3567 | mddev->new_chunk = mddev->chunk_size; | ||
3568 | mddev->new_layout = mddev->layout; | ||
3569 | mddev->delta_disks = 0; | ||
3570 | |||
3435 | return 0; | 3571 | return 0; |
3436 | } | 3572 | } |
3437 | 3573 | ||
@@ -3440,6 +3576,7 @@ static int update_size(mddev_t *mddev, unsigned long size) | |||
3440 | mdk_rdev_t * rdev; | 3576 | mdk_rdev_t * rdev; |
3441 | int rv; | 3577 | int rv; |
3442 | struct list_head *tmp; | 3578 | struct list_head *tmp; |
3579 | int fit = (size == 0); | ||
3443 | 3580 | ||
3444 | if (mddev->pers->resize == NULL) | 3581 | if (mddev->pers->resize == NULL) |
3445 | return -EINVAL; | 3582 | return -EINVAL; |
@@ -3457,7 +3594,6 @@ static int update_size(mddev_t *mddev, unsigned long size) | |||
3457 | return -EBUSY; | 3594 | return -EBUSY; |
3458 | ITERATE_RDEV(mddev,rdev,tmp) { | 3595 | ITERATE_RDEV(mddev,rdev,tmp) { |
3459 | sector_t avail; | 3596 | sector_t avail; |
3460 | int fit = (size == 0); | ||
3461 | if (rdev->sb_offset > rdev->data_offset) | 3597 | if (rdev->sb_offset > rdev->data_offset) |
3462 | avail = (rdev->sb_offset*2) - rdev->data_offset; | 3598 | avail = (rdev->sb_offset*2) - rdev->data_offset; |
3463 | else | 3599 | else |
@@ -3487,14 +3623,16 @@ static int update_raid_disks(mddev_t *mddev, int raid_disks) | |||
3487 | { | 3623 | { |
3488 | int rv; | 3624 | int rv; |
3489 | /* change the number of raid disks */ | 3625 | /* change the number of raid disks */ |
3490 | if (mddev->pers->reshape == NULL) | 3626 | if (mddev->pers->check_reshape == NULL) |
3491 | return -EINVAL; | 3627 | return -EINVAL; |
3492 | if (raid_disks <= 0 || | 3628 | if (raid_disks <= 0 || |
3493 | raid_disks >= mddev->max_disks) | 3629 | raid_disks >= mddev->max_disks) |
3494 | return -EINVAL; | 3630 | return -EINVAL; |
3495 | if (mddev->sync_thread) | 3631 | if (mddev->sync_thread || mddev->reshape_position != MaxSector) |
3496 | return -EBUSY; | 3632 | return -EBUSY; |
3497 | rv = mddev->pers->reshape(mddev, raid_disks); | 3633 | mddev->delta_disks = raid_disks - mddev->raid_disks; |
3634 | |||
3635 | rv = mddev->pers->check_reshape(mddev); | ||
3498 | return rv; | 3636 | return rv; |
3499 | } | 3637 | } |
3500 | 3638 | ||
@@ -4041,7 +4179,10 @@ static void status_unused(struct seq_file *seq) | |||
4041 | 4179 | ||
4042 | static void status_resync(struct seq_file *seq, mddev_t * mddev) | 4180 | static void status_resync(struct seq_file *seq, mddev_t * mddev) |
4043 | { | 4181 | { |
4044 | unsigned long max_blocks, resync, res, dt, db, rt; | 4182 | sector_t max_blocks, resync, res; |
4183 | unsigned long dt, db, rt; | ||
4184 | int scale; | ||
4185 | unsigned int per_milli; | ||
4045 | 4186 | ||
4046 | resync = (mddev->curr_resync - atomic_read(&mddev->recovery_active))/2; | 4187 | resync = (mddev->curr_resync - atomic_read(&mddev->recovery_active))/2; |
4047 | 4188 | ||
@@ -4057,9 +4198,22 @@ static void status_resync(struct seq_file *seq, mddev_t * mddev) | |||
4057 | MD_BUG(); | 4198 | MD_BUG(); |
4058 | return; | 4199 | return; |
4059 | } | 4200 | } |
4060 | res = (resync/1024)*1000/(max_blocks/1024 + 1); | 4201 | /* Pick 'scale' such that (resync>>scale)*1000 will fit |
4202 | * in a sector_t, and (max_blocks>>scale) will fit in a | ||
4203 | * u32, as those are the requirements for sector_div. | ||
4204 | * Thus 'scale' must be at least 10 | ||
4205 | */ | ||
4206 | scale = 10; | ||
4207 | if (sizeof(sector_t) > sizeof(unsigned long)) { | ||
4208 | while ( max_blocks/2 > (1ULL<<(scale+32))) | ||
4209 | scale++; | ||
4210 | } | ||
4211 | res = (resync>>scale)*1000; | ||
4212 | sector_div(res, (u32)((max_blocks>>scale)+1)); | ||
4213 | |||
4214 | per_milli = res; | ||
4061 | { | 4215 | { |
4062 | int i, x = res/50, y = 20-x; | 4216 | int i, x = per_milli/50, y = 20-x; |
4063 | seq_printf(seq, "["); | 4217 | seq_printf(seq, "["); |
4064 | for (i = 0; i < x; i++) | 4218 | for (i = 0; i < x; i++) |
4065 | seq_printf(seq, "="); | 4219 | seq_printf(seq, "="); |
@@ -4068,10 +4222,14 @@ static void status_resync(struct seq_file *seq, mddev_t * mddev) | |||
4068 | seq_printf(seq, "."); | 4222 | seq_printf(seq, "."); |
4069 | seq_printf(seq, "] "); | 4223 | seq_printf(seq, "] "); |
4070 | } | 4224 | } |
4071 | seq_printf(seq, " %s =%3lu.%lu%% (%lu/%lu)", | 4225 | seq_printf(seq, " %s =%3u.%u%% (%llu/%llu)", |
4226 | (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)? | ||
4227 | "reshape" : | ||
4072 | (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ? | 4228 | (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) ? |
4073 | "resync" : "recovery"), | 4229 | "resync" : "recovery")), |
4074 | res/10, res % 10, resync, max_blocks); | 4230 | per_milli/10, per_milli % 10, |
4231 | (unsigned long long) resync, | ||
4232 | (unsigned long long) max_blocks); | ||
4075 | 4233 | ||
4076 | /* | 4234 | /* |
4077 | * We do not want to overflow, so the order of operands and | 4235 | * We do not want to overflow, so the order of operands and |
@@ -4085,7 +4243,7 @@ static void status_resync(struct seq_file *seq, mddev_t * mddev) | |||
4085 | dt = ((jiffies - mddev->resync_mark) / HZ); | 4243 | dt = ((jiffies - mddev->resync_mark) / HZ); |
4086 | if (!dt) dt++; | 4244 | if (!dt) dt++; |
4087 | db = resync - (mddev->resync_mark_cnt/2); | 4245 | db = resync - (mddev->resync_mark_cnt/2); |
4088 | rt = (dt * ((max_blocks-resync) / (db/100+1)))/100; | 4246 | rt = (dt * ((unsigned long)(max_blocks-resync) / (db/100+1)))/100; |
4089 | 4247 | ||
4090 | seq_printf(seq, " finish=%lu.%lumin", rt / 60, (rt % 60)/6); | 4248 | seq_printf(seq, " finish=%lu.%lumin", rt / 60, (rt % 60)/6); |
4091 | 4249 | ||
@@ -4442,7 +4600,7 @@ static DECLARE_WAIT_QUEUE_HEAD(resync_wait); | |||
4442 | 4600 | ||
4443 | #define SYNC_MARKS 10 | 4601 | #define SYNC_MARKS 10 |
4444 | #define SYNC_MARK_STEP (3*HZ) | 4602 | #define SYNC_MARK_STEP (3*HZ) |
4445 | static void md_do_sync(mddev_t *mddev) | 4603 | void md_do_sync(mddev_t *mddev) |
4446 | { | 4604 | { |
4447 | mddev_t *mddev2; | 4605 | mddev_t *mddev2; |
4448 | unsigned int currspeed = 0, | 4606 | unsigned int currspeed = 0, |
@@ -4522,7 +4680,9 @@ static void md_do_sync(mddev_t *mddev) | |||
4522 | */ | 4680 | */ |
4523 | max_sectors = mddev->resync_max_sectors; | 4681 | max_sectors = mddev->resync_max_sectors; |
4524 | mddev->resync_mismatches = 0; | 4682 | mddev->resync_mismatches = 0; |
4525 | } else | 4683 | } else if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) |
4684 | max_sectors = mddev->size << 1; | ||
4685 | else | ||
4526 | /* recovery follows the physical size of devices */ | 4686 | /* recovery follows the physical size of devices */ |
4527 | max_sectors = mddev->size << 1; | 4687 | max_sectors = mddev->size << 1; |
4528 | 4688 | ||
@@ -4658,6 +4818,8 @@ static void md_do_sync(mddev_t *mddev) | |||
4658 | mddev->pers->sync_request(mddev, max_sectors, &skipped, 1); | 4818 | mddev->pers->sync_request(mddev, max_sectors, &skipped, 1); |
4659 | 4819 | ||
4660 | if (!test_bit(MD_RECOVERY_ERR, &mddev->recovery) && | 4820 | if (!test_bit(MD_RECOVERY_ERR, &mddev->recovery) && |
4821 | test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && | ||
4822 | !test_bit(MD_RECOVERY_CHECK, &mddev->recovery) && | ||
4661 | mddev->curr_resync > 2 && | 4823 | mddev->curr_resync > 2 && |
4662 | mddev->curr_resync >= mddev->recovery_cp) { | 4824 | mddev->curr_resync >= mddev->recovery_cp) { |
4663 | if (test_bit(MD_RECOVERY_INTR, &mddev->recovery)) { | 4825 | if (test_bit(MD_RECOVERY_INTR, &mddev->recovery)) { |
@@ -4675,6 +4837,7 @@ static void md_do_sync(mddev_t *mddev) | |||
4675 | set_bit(MD_RECOVERY_DONE, &mddev->recovery); | 4837 | set_bit(MD_RECOVERY_DONE, &mddev->recovery); |
4676 | md_wakeup_thread(mddev->thread); | 4838 | md_wakeup_thread(mddev->thread); |
4677 | } | 4839 | } |
4840 | EXPORT_SYMBOL_GPL(md_do_sync); | ||
4678 | 4841 | ||
4679 | 4842 | ||
4680 | /* | 4843 | /* |
@@ -4730,7 +4893,7 @@ void md_check_recovery(mddev_t *mddev) | |||
4730 | )) | 4893 | )) |
4731 | return; | 4894 | return; |
4732 | 4895 | ||
4733 | if (mddev_trylock(mddev)==0) { | 4896 | if (mddev_trylock(mddev)) { |
4734 | int spares =0; | 4897 | int spares =0; |
4735 | 4898 | ||
4736 | spin_lock_irq(&mddev->write_lock); | 4899 | spin_lock_irq(&mddev->write_lock); |
@@ -4866,7 +5029,7 @@ static int md_notify_reboot(struct notifier_block *this, | |||
4866 | printk(KERN_INFO "md: stopping all md devices.\n"); | 5029 | printk(KERN_INFO "md: stopping all md devices.\n"); |
4867 | 5030 | ||
4868 | ITERATE_MDDEV(mddev,tmp) | 5031 | ITERATE_MDDEV(mddev,tmp) |
4869 | if (mddev_trylock(mddev)==0) | 5032 | if (mddev_trylock(mddev)) |
4870 | do_md_stop (mddev, 1); | 5033 | do_md_stop (mddev, 1); |
4871 | /* | 5034 | /* |
4872 | * certain more exotic SCSI devices are known to be | 5035 | * certain more exotic SCSI devices are known to be |
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 5d88329e3c7a..3cb0872a845d 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -1402,6 +1402,9 @@ static void raid1d(mddev_t *mddev) | |||
1402 | clear_bit(R1BIO_BarrierRetry, &r1_bio->state); | 1402 | clear_bit(R1BIO_BarrierRetry, &r1_bio->state); |
1403 | clear_bit(R1BIO_Barrier, &r1_bio->state); | 1403 | clear_bit(R1BIO_Barrier, &r1_bio->state); |
1404 | for (i=0; i < conf->raid_disks; i++) | 1404 | for (i=0; i < conf->raid_disks; i++) |
1405 | if (r1_bio->bios[i]) | ||
1406 | atomic_inc(&r1_bio->remaining); | ||
1407 | for (i=0; i < conf->raid_disks; i++) | ||
1405 | if (r1_bio->bios[i]) { | 1408 | if (r1_bio->bios[i]) { |
1406 | struct bio_vec *bvec; | 1409 | struct bio_vec *bvec; |
1407 | int j; | 1410 | int j; |
@@ -1789,6 +1792,11 @@ static int run(mddev_t *mddev) | |||
1789 | mdname(mddev), mddev->level); | 1792 | mdname(mddev), mddev->level); |
1790 | goto out; | 1793 | goto out; |
1791 | } | 1794 | } |
1795 | if (mddev->reshape_position != MaxSector) { | ||
1796 | printk("raid1: %s: reshape_position set but not supported\n", | ||
1797 | mdname(mddev)); | ||
1798 | goto out; | ||
1799 | } | ||
1792 | /* | 1800 | /* |
1793 | * copy the already verified devices into our private RAID1 | 1801 | * copy the already verified devices into our private RAID1 |
1794 | * bookkeeping area. [whatever we allocate in run(), | 1802 | * bookkeeping area. [whatever we allocate in run(), |
@@ -1971,7 +1979,7 @@ static int raid1_resize(mddev_t *mddev, sector_t sectors) | |||
1971 | return 0; | 1979 | return 0; |
1972 | } | 1980 | } |
1973 | 1981 | ||
1974 | static int raid1_reshape(mddev_t *mddev, int raid_disks) | 1982 | static int raid1_reshape(mddev_t *mddev) |
1975 | { | 1983 | { |
1976 | /* We need to: | 1984 | /* We need to: |
1977 | * 1/ resize the r1bio_pool | 1985 | * 1/ resize the r1bio_pool |
@@ -1988,10 +1996,22 @@ static int raid1_reshape(mddev_t *mddev, int raid_disks) | |||
1988 | struct pool_info *newpoolinfo; | 1996 | struct pool_info *newpoolinfo; |
1989 | mirror_info_t *newmirrors; | 1997 | mirror_info_t *newmirrors; |
1990 | conf_t *conf = mddev_to_conf(mddev); | 1998 | conf_t *conf = mddev_to_conf(mddev); |
1991 | int cnt; | 1999 | int cnt, raid_disks; |
1992 | 2000 | ||
1993 | int d, d2; | 2001 | int d, d2; |
1994 | 2002 | ||
2003 | /* Cannot change chunk_size, layout, or level */ | ||
2004 | if (mddev->chunk_size != mddev->new_chunk || | ||
2005 | mddev->layout != mddev->new_layout || | ||
2006 | mddev->level != mddev->new_level) { | ||
2007 | mddev->new_chunk = mddev->chunk_size; | ||
2008 | mddev->new_layout = mddev->layout; | ||
2009 | mddev->new_level = mddev->level; | ||
2010 | return -EINVAL; | ||
2011 | } | ||
2012 | |||
2013 | raid_disks = mddev->raid_disks + mddev->delta_disks; | ||
2014 | |||
1995 | if (raid_disks < conf->raid_disks) { | 2015 | if (raid_disks < conf->raid_disks) { |
1996 | cnt=0; | 2016 | cnt=0; |
1997 | for (d= 0; d < conf->raid_disks; d++) | 2017 | for (d= 0; d < conf->raid_disks; d++) |
@@ -2038,6 +2058,7 @@ static int raid1_reshape(mddev_t *mddev, int raid_disks) | |||
2038 | 2058 | ||
2039 | mddev->degraded += (raid_disks - conf->raid_disks); | 2059 | mddev->degraded += (raid_disks - conf->raid_disks); |
2040 | conf->raid_disks = mddev->raid_disks = raid_disks; | 2060 | conf->raid_disks = mddev->raid_disks = raid_disks; |
2061 | mddev->delta_disks = 0; | ||
2041 | 2062 | ||
2042 | conf->last_used = 0; /* just make sure it is in-range */ | 2063 | conf->last_used = 0; /* just make sure it is in-range */ |
2043 | lower_barrier(conf); | 2064 | lower_barrier(conf); |
@@ -2079,7 +2100,7 @@ static struct mdk_personality raid1_personality = | |||
2079 | .spare_active = raid1_spare_active, | 2100 | .spare_active = raid1_spare_active, |
2080 | .sync_request = sync_request, | 2101 | .sync_request = sync_request, |
2081 | .resize = raid1_resize, | 2102 | .resize = raid1_resize, |
2082 | .reshape = raid1_reshape, | 2103 | .check_reshape = raid1_reshape, |
2083 | .quiesce = raid1_quiesce, | 2104 | .quiesce = raid1_quiesce, |
2084 | }; | 2105 | }; |
2085 | 2106 | ||
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 2dba305daf3c..dae740adaf65 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/raid/raid5.h> | 22 | #include <linux/raid/raid5.h> |
23 | #include <linux/highmem.h> | 23 | #include <linux/highmem.h> |
24 | #include <linux/bitops.h> | 24 | #include <linux/bitops.h> |
25 | #include <linux/kthread.h> | ||
25 | #include <asm/atomic.h> | 26 | #include <asm/atomic.h> |
26 | 27 | ||
27 | #include <linux/raid/bitmap.h> | 28 | #include <linux/raid/bitmap.h> |
@@ -93,11 +94,11 @@ static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh) | |||
93 | if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) | 94 | if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) |
94 | md_wakeup_thread(conf->mddev->thread); | 95 | md_wakeup_thread(conf->mddev->thread); |
95 | } | 96 | } |
96 | list_add_tail(&sh->lru, &conf->inactive_list); | ||
97 | atomic_dec(&conf->active_stripes); | 97 | atomic_dec(&conf->active_stripes); |
98 | if (!conf->inactive_blocked || | 98 | if (!test_bit(STRIPE_EXPANDING, &sh->state)) { |
99 | atomic_read(&conf->active_stripes) < (conf->max_nr_stripes*3/4)) | 99 | list_add_tail(&sh->lru, &conf->inactive_list); |
100 | wake_up(&conf->wait_for_stripe); | 100 | wake_up(&conf->wait_for_stripe); |
101 | } | ||
101 | } | 102 | } |
102 | } | 103 | } |
103 | } | 104 | } |
@@ -178,10 +179,10 @@ static int grow_buffers(struct stripe_head *sh, int num) | |||
178 | 179 | ||
179 | static void raid5_build_block (struct stripe_head *sh, int i); | 180 | static void raid5_build_block (struct stripe_head *sh, int i); |
180 | 181 | ||
181 | static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx) | 182 | static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx, int disks) |
182 | { | 183 | { |
183 | raid5_conf_t *conf = sh->raid_conf; | 184 | raid5_conf_t *conf = sh->raid_conf; |
184 | int disks = conf->raid_disks, i; | 185 | int i; |
185 | 186 | ||
186 | if (atomic_read(&sh->count) != 0) | 187 | if (atomic_read(&sh->count) != 0) |
187 | BUG(); | 188 | BUG(); |
@@ -198,7 +199,9 @@ static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx) | |||
198 | sh->pd_idx = pd_idx; | 199 | sh->pd_idx = pd_idx; |
199 | sh->state = 0; | 200 | sh->state = 0; |
200 | 201 | ||
201 | for (i=disks; i--; ) { | 202 | sh->disks = disks; |
203 | |||
204 | for (i = sh->disks; i--; ) { | ||
202 | struct r5dev *dev = &sh->dev[i]; | 205 | struct r5dev *dev = &sh->dev[i]; |
203 | 206 | ||
204 | if (dev->toread || dev->towrite || dev->written || | 207 | if (dev->toread || dev->towrite || dev->written || |
@@ -215,7 +218,7 @@ static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx) | |||
215 | insert_hash(conf, sh); | 218 | insert_hash(conf, sh); |
216 | } | 219 | } |
217 | 220 | ||
218 | static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector) | 221 | static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks) |
219 | { | 222 | { |
220 | struct stripe_head *sh; | 223 | struct stripe_head *sh; |
221 | struct hlist_node *hn; | 224 | struct hlist_node *hn; |
@@ -223,7 +226,7 @@ static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector) | |||
223 | CHECK_DEVLOCK(); | 226 | CHECK_DEVLOCK(); |
224 | PRINTK("__find_stripe, sector %llu\n", (unsigned long long)sector); | 227 | PRINTK("__find_stripe, sector %llu\n", (unsigned long long)sector); |
225 | hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash) | 228 | hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash) |
226 | if (sh->sector == sector) | 229 | if (sh->sector == sector && sh->disks == disks) |
227 | return sh; | 230 | return sh; |
228 | PRINTK("__stripe %llu not in cache\n", (unsigned long long)sector); | 231 | PRINTK("__stripe %llu not in cache\n", (unsigned long long)sector); |
229 | return NULL; | 232 | return NULL; |
@@ -232,8 +235,8 @@ static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector) | |||
232 | static void unplug_slaves(mddev_t *mddev); | 235 | static void unplug_slaves(mddev_t *mddev); |
233 | static void raid5_unplug_device(request_queue_t *q); | 236 | static void raid5_unplug_device(request_queue_t *q); |
234 | 237 | ||
235 | static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, | 238 | static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, int disks, |
236 | int pd_idx, int noblock) | 239 | int pd_idx, int noblock) |
237 | { | 240 | { |
238 | struct stripe_head *sh; | 241 | struct stripe_head *sh; |
239 | 242 | ||
@@ -245,7 +248,7 @@ static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector | |||
245 | wait_event_lock_irq(conf->wait_for_stripe, | 248 | wait_event_lock_irq(conf->wait_for_stripe, |
246 | conf->quiesce == 0, | 249 | conf->quiesce == 0, |
247 | conf->device_lock, /* nothing */); | 250 | conf->device_lock, /* nothing */); |
248 | sh = __find_stripe(conf, sector); | 251 | sh = __find_stripe(conf, sector, disks); |
249 | if (!sh) { | 252 | if (!sh) { |
250 | if (!conf->inactive_blocked) | 253 | if (!conf->inactive_blocked) |
251 | sh = get_free_stripe(conf); | 254 | sh = get_free_stripe(conf); |
@@ -259,11 +262,11 @@ static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector | |||
259 | < (conf->max_nr_stripes *3/4) | 262 | < (conf->max_nr_stripes *3/4) |
260 | || !conf->inactive_blocked), | 263 | || !conf->inactive_blocked), |
261 | conf->device_lock, | 264 | conf->device_lock, |
262 | unplug_slaves(conf->mddev); | 265 | unplug_slaves(conf->mddev) |
263 | ); | 266 | ); |
264 | conf->inactive_blocked = 0; | 267 | conf->inactive_blocked = 0; |
265 | } else | 268 | } else |
266 | init_stripe(sh, sector, pd_idx); | 269 | init_stripe(sh, sector, pd_idx, disks); |
267 | } else { | 270 | } else { |
268 | if (atomic_read(&sh->count)) { | 271 | if (atomic_read(&sh->count)) { |
269 | if (!list_empty(&sh->lru)) | 272 | if (!list_empty(&sh->lru)) |
@@ -271,9 +274,8 @@ static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector | |||
271 | } else { | 274 | } else { |
272 | if (!test_bit(STRIPE_HANDLE, &sh->state)) | 275 | if (!test_bit(STRIPE_HANDLE, &sh->state)) |
273 | atomic_inc(&conf->active_stripes); | 276 | atomic_inc(&conf->active_stripes); |
274 | if (list_empty(&sh->lru)) | 277 | if (!list_empty(&sh->lru)) |
275 | BUG(); | 278 | list_del_init(&sh->lru); |
276 | list_del_init(&sh->lru); | ||
277 | } | 279 | } |
278 | } | 280 | } |
279 | } while (sh == NULL); | 281 | } while (sh == NULL); |
@@ -300,6 +302,7 @@ static int grow_one_stripe(raid5_conf_t *conf) | |||
300 | kmem_cache_free(conf->slab_cache, sh); | 302 | kmem_cache_free(conf->slab_cache, sh); |
301 | return 0; | 303 | return 0; |
302 | } | 304 | } |
305 | sh->disks = conf->raid_disks; | ||
303 | /* we just created an active stripe so... */ | 306 | /* we just created an active stripe so... */ |
304 | atomic_set(&sh->count, 1); | 307 | atomic_set(&sh->count, 1); |
305 | atomic_inc(&conf->active_stripes); | 308 | atomic_inc(&conf->active_stripes); |
@@ -313,14 +316,16 @@ static int grow_stripes(raid5_conf_t *conf, int num) | |||
313 | kmem_cache_t *sc; | 316 | kmem_cache_t *sc; |
314 | int devs = conf->raid_disks; | 317 | int devs = conf->raid_disks; |
315 | 318 | ||
316 | sprintf(conf->cache_name, "raid5/%s", mdname(conf->mddev)); | 319 | sprintf(conf->cache_name[0], "raid5/%s", mdname(conf->mddev)); |
317 | 320 | sprintf(conf->cache_name[1], "raid5/%s-alt", mdname(conf->mddev)); | |
318 | sc = kmem_cache_create(conf->cache_name, | 321 | conf->active_name = 0; |
322 | sc = kmem_cache_create(conf->cache_name[conf->active_name], | ||
319 | sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev), | 323 | sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev), |
320 | 0, 0, NULL, NULL); | 324 | 0, 0, NULL, NULL); |
321 | if (!sc) | 325 | if (!sc) |
322 | return 1; | 326 | return 1; |
323 | conf->slab_cache = sc; | 327 | conf->slab_cache = sc; |
328 | conf->pool_size = devs; | ||
324 | while (num--) { | 329 | while (num--) { |
325 | if (!grow_one_stripe(conf)) | 330 | if (!grow_one_stripe(conf)) |
326 | return 1; | 331 | return 1; |
@@ -328,6 +333,129 @@ static int grow_stripes(raid5_conf_t *conf, int num) | |||
328 | return 0; | 333 | return 0; |
329 | } | 334 | } |
330 | 335 | ||
336 | #ifdef CONFIG_MD_RAID5_RESHAPE | ||
337 | static int resize_stripes(raid5_conf_t *conf, int newsize) | ||
338 | { | ||
339 | /* Make all the stripes able to hold 'newsize' devices. | ||
340 | * New slots in each stripe get 'page' set to a new page. | ||
341 | * | ||
342 | * This happens in stages: | ||
343 | * 1/ create a new kmem_cache and allocate the required number of | ||
344 | * stripe_heads. | ||
345 | * 2/ gather all the old stripe_heads and tranfer the pages across | ||
346 | * to the new stripe_heads. This will have the side effect of | ||
347 | * freezing the array as once all stripe_heads have been collected, | ||
348 | * no IO will be possible. Old stripe heads are freed once their | ||
349 | * pages have been transferred over, and the old kmem_cache is | ||
350 | * freed when all stripes are done. | ||
351 | * 3/ reallocate conf->disks to be suitable bigger. If this fails, | ||
352 | * we simple return a failre status - no need to clean anything up. | ||
353 | * 4/ allocate new pages for the new slots in the new stripe_heads. | ||
354 | * If this fails, we don't bother trying the shrink the | ||
355 | * stripe_heads down again, we just leave them as they are. | ||
356 | * As each stripe_head is processed the new one is released into | ||
357 | * active service. | ||
358 | * | ||
359 | * Once step2 is started, we cannot afford to wait for a write, | ||
360 | * so we use GFP_NOIO allocations. | ||
361 | */ | ||
362 | struct stripe_head *osh, *nsh; | ||
363 | LIST_HEAD(newstripes); | ||
364 | struct disk_info *ndisks; | ||
365 | int err = 0; | ||
366 | kmem_cache_t *sc; | ||
367 | int i; | ||
368 | |||
369 | if (newsize <= conf->pool_size) | ||
370 | return 0; /* never bother to shrink */ | ||
371 | |||
372 | /* Step 1 */ | ||
373 | sc = kmem_cache_create(conf->cache_name[1-conf->active_name], | ||
374 | sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev), | ||
375 | 0, 0, NULL, NULL); | ||
376 | if (!sc) | ||
377 | return -ENOMEM; | ||
378 | |||
379 | for (i = conf->max_nr_stripes; i; i--) { | ||
380 | nsh = kmem_cache_alloc(sc, GFP_KERNEL); | ||
381 | if (!nsh) | ||
382 | break; | ||
383 | |||
384 | memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev)); | ||
385 | |||
386 | nsh->raid_conf = conf; | ||
387 | spin_lock_init(&nsh->lock); | ||
388 | |||
389 | list_add(&nsh->lru, &newstripes); | ||
390 | } | ||
391 | if (i) { | ||
392 | /* didn't get enough, give up */ | ||
393 | while (!list_empty(&newstripes)) { | ||
394 | nsh = list_entry(newstripes.next, struct stripe_head, lru); | ||
395 | list_del(&nsh->lru); | ||
396 | kmem_cache_free(sc, nsh); | ||
397 | } | ||
398 | kmem_cache_destroy(sc); | ||
399 | return -ENOMEM; | ||
400 | } | ||
401 | /* Step 2 - Must use GFP_NOIO now. | ||
402 | * OK, we have enough stripes, start collecting inactive | ||
403 | * stripes and copying them over | ||
404 | */ | ||
405 | list_for_each_entry(nsh, &newstripes, lru) { | ||
406 | spin_lock_irq(&conf->device_lock); | ||
407 | wait_event_lock_irq(conf->wait_for_stripe, | ||
408 | !list_empty(&conf->inactive_list), | ||
409 | conf->device_lock, | ||
410 | unplug_slaves(conf->mddev) | ||
411 | ); | ||
412 | osh = get_free_stripe(conf); | ||
413 | spin_unlock_irq(&conf->device_lock); | ||
414 | atomic_set(&nsh->count, 1); | ||
415 | for(i=0; i<conf->pool_size; i++) | ||
416 | nsh->dev[i].page = osh->dev[i].page; | ||
417 | for( ; i<newsize; i++) | ||
418 | nsh->dev[i].page = NULL; | ||
419 | kmem_cache_free(conf->slab_cache, osh); | ||
420 | } | ||
421 | kmem_cache_destroy(conf->slab_cache); | ||
422 | |||
423 | /* Step 3. | ||
424 | * At this point, we are holding all the stripes so the array | ||
425 | * is completely stalled, so now is a good time to resize | ||
426 | * conf->disks. | ||
427 | */ | ||
428 | ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO); | ||
429 | if (ndisks) { | ||
430 | for (i=0; i<conf->raid_disks; i++) | ||
431 | ndisks[i] = conf->disks[i]; | ||
432 | kfree(conf->disks); | ||
433 | conf->disks = ndisks; | ||
434 | } else | ||
435 | err = -ENOMEM; | ||
436 | |||
437 | /* Step 4, return new stripes to service */ | ||
438 | while(!list_empty(&newstripes)) { | ||
439 | nsh = list_entry(newstripes.next, struct stripe_head, lru); | ||
440 | list_del_init(&nsh->lru); | ||
441 | for (i=conf->raid_disks; i < newsize; i++) | ||
442 | if (nsh->dev[i].page == NULL) { | ||
443 | struct page *p = alloc_page(GFP_NOIO); | ||
444 | nsh->dev[i].page = p; | ||
445 | if (!p) | ||
446 | err = -ENOMEM; | ||
447 | } | ||
448 | release_stripe(nsh); | ||
449 | } | ||
450 | /* critical section pass, GFP_NOIO no longer needed */ | ||
451 | |||
452 | conf->slab_cache = sc; | ||
453 | conf->active_name = 1-conf->active_name; | ||
454 | conf->pool_size = newsize; | ||
455 | return err; | ||
456 | } | ||
457 | #endif | ||
458 | |||
331 | static int drop_one_stripe(raid5_conf_t *conf) | 459 | static int drop_one_stripe(raid5_conf_t *conf) |
332 | { | 460 | { |
333 | struct stripe_head *sh; | 461 | struct stripe_head *sh; |
@@ -339,7 +467,7 @@ static int drop_one_stripe(raid5_conf_t *conf) | |||
339 | return 0; | 467 | return 0; |
340 | if (atomic_read(&sh->count)) | 468 | if (atomic_read(&sh->count)) |
341 | BUG(); | 469 | BUG(); |
342 | shrink_buffers(sh, conf->raid_disks); | 470 | shrink_buffers(sh, conf->pool_size); |
343 | kmem_cache_free(conf->slab_cache, sh); | 471 | kmem_cache_free(conf->slab_cache, sh); |
344 | atomic_dec(&conf->active_stripes); | 472 | atomic_dec(&conf->active_stripes); |
345 | return 1; | 473 | return 1; |
@@ -360,7 +488,7 @@ static int raid5_end_read_request(struct bio * bi, unsigned int bytes_done, | |||
360 | { | 488 | { |
361 | struct stripe_head *sh = bi->bi_private; | 489 | struct stripe_head *sh = bi->bi_private; |
362 | raid5_conf_t *conf = sh->raid_conf; | 490 | raid5_conf_t *conf = sh->raid_conf; |
363 | int disks = conf->raid_disks, i; | 491 | int disks = sh->disks, i; |
364 | int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); | 492 | int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); |
365 | 493 | ||
366 | if (bi->bi_size) | 494 | if (bi->bi_size) |
@@ -458,7 +586,7 @@ static int raid5_end_write_request (struct bio *bi, unsigned int bytes_done, | |||
458 | { | 586 | { |
459 | struct stripe_head *sh = bi->bi_private; | 587 | struct stripe_head *sh = bi->bi_private; |
460 | raid5_conf_t *conf = sh->raid_conf; | 588 | raid5_conf_t *conf = sh->raid_conf; |
461 | int disks = conf->raid_disks, i; | 589 | int disks = sh->disks, i; |
462 | unsigned long flags; | 590 | unsigned long flags; |
463 | int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); | 591 | int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags); |
464 | 592 | ||
@@ -612,7 +740,7 @@ static sector_t raid5_compute_sector(sector_t r_sector, unsigned int raid_disks, | |||
612 | static sector_t compute_blocknr(struct stripe_head *sh, int i) | 740 | static sector_t compute_blocknr(struct stripe_head *sh, int i) |
613 | { | 741 | { |
614 | raid5_conf_t *conf = sh->raid_conf; | 742 | raid5_conf_t *conf = sh->raid_conf; |
615 | int raid_disks = conf->raid_disks, data_disks = raid_disks - 1; | 743 | int raid_disks = sh->disks, data_disks = raid_disks - 1; |
616 | sector_t new_sector = sh->sector, check; | 744 | sector_t new_sector = sh->sector, check; |
617 | int sectors_per_chunk = conf->chunk_size >> 9; | 745 | int sectors_per_chunk = conf->chunk_size >> 9; |
618 | sector_t stripe; | 746 | sector_t stripe; |
@@ -713,8 +841,7 @@ static void copy_data(int frombio, struct bio *bio, | |||
713 | 841 | ||
714 | static void compute_block(struct stripe_head *sh, int dd_idx) | 842 | static void compute_block(struct stripe_head *sh, int dd_idx) |
715 | { | 843 | { |
716 | raid5_conf_t *conf = sh->raid_conf; | 844 | int i, count, disks = sh->disks; |
717 | int i, count, disks = conf->raid_disks; | ||
718 | void *ptr[MAX_XOR_BLOCKS], *p; | 845 | void *ptr[MAX_XOR_BLOCKS], *p; |
719 | 846 | ||
720 | PRINTK("compute_block, stripe %llu, idx %d\n", | 847 | PRINTK("compute_block, stripe %llu, idx %d\n", |
@@ -744,7 +871,7 @@ static void compute_block(struct stripe_head *sh, int dd_idx) | |||
744 | static void compute_parity(struct stripe_head *sh, int method) | 871 | static void compute_parity(struct stripe_head *sh, int method) |
745 | { | 872 | { |
746 | raid5_conf_t *conf = sh->raid_conf; | 873 | raid5_conf_t *conf = sh->raid_conf; |
747 | int i, pd_idx = sh->pd_idx, disks = conf->raid_disks, count; | 874 | int i, pd_idx = sh->pd_idx, disks = sh->disks, count; |
748 | void *ptr[MAX_XOR_BLOCKS]; | 875 | void *ptr[MAX_XOR_BLOCKS]; |
749 | struct bio *chosen; | 876 | struct bio *chosen; |
750 | 877 | ||
@@ -910,6 +1037,20 @@ static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, in | |||
910 | return 0; | 1037 | return 0; |
911 | } | 1038 | } |
912 | 1039 | ||
1040 | static void end_reshape(raid5_conf_t *conf); | ||
1041 | |||
1042 | static int stripe_to_pdidx(sector_t stripe, raid5_conf_t *conf, int disks) | ||
1043 | { | ||
1044 | int sectors_per_chunk = conf->chunk_size >> 9; | ||
1045 | sector_t x = stripe; | ||
1046 | int pd_idx, dd_idx; | ||
1047 | int chunk_offset = sector_div(x, sectors_per_chunk); | ||
1048 | stripe = x; | ||
1049 | raid5_compute_sector(stripe*(disks-1)*sectors_per_chunk | ||
1050 | + chunk_offset, disks, disks-1, &dd_idx, &pd_idx, conf); | ||
1051 | return pd_idx; | ||
1052 | } | ||
1053 | |||
913 | 1054 | ||
914 | /* | 1055 | /* |
915 | * handle_stripe - do things to a stripe. | 1056 | * handle_stripe - do things to a stripe. |
@@ -932,11 +1073,11 @@ static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, in | |||
932 | static void handle_stripe(struct stripe_head *sh) | 1073 | static void handle_stripe(struct stripe_head *sh) |
933 | { | 1074 | { |
934 | raid5_conf_t *conf = sh->raid_conf; | 1075 | raid5_conf_t *conf = sh->raid_conf; |
935 | int disks = conf->raid_disks; | 1076 | int disks = sh->disks; |
936 | struct bio *return_bi= NULL; | 1077 | struct bio *return_bi= NULL; |
937 | struct bio *bi; | 1078 | struct bio *bi; |
938 | int i; | 1079 | int i; |
939 | int syncing; | 1080 | int syncing, expanding, expanded; |
940 | int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0; | 1081 | int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0; |
941 | int non_overwrite = 0; | 1082 | int non_overwrite = 0; |
942 | int failed_num=0; | 1083 | int failed_num=0; |
@@ -951,6 +1092,8 @@ static void handle_stripe(struct stripe_head *sh) | |||
951 | clear_bit(STRIPE_DELAYED, &sh->state); | 1092 | clear_bit(STRIPE_DELAYED, &sh->state); |
952 | 1093 | ||
953 | syncing = test_bit(STRIPE_SYNCING, &sh->state); | 1094 | syncing = test_bit(STRIPE_SYNCING, &sh->state); |
1095 | expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state); | ||
1096 | expanded = test_bit(STRIPE_EXPAND_READY, &sh->state); | ||
954 | /* Now to look around and see what can be done */ | 1097 | /* Now to look around and see what can be done */ |
955 | 1098 | ||
956 | rcu_read_lock(); | 1099 | rcu_read_lock(); |
@@ -1143,13 +1286,14 @@ static void handle_stripe(struct stripe_head *sh) | |||
1143 | * parity, or to satisfy requests | 1286 | * parity, or to satisfy requests |
1144 | * or to load a block that is being partially written. | 1287 | * or to load a block that is being partially written. |
1145 | */ | 1288 | */ |
1146 | if (to_read || non_overwrite || (syncing && (uptodate < disks))) { | 1289 | if (to_read || non_overwrite || (syncing && (uptodate < disks)) || expanding) { |
1147 | for (i=disks; i--;) { | 1290 | for (i=disks; i--;) { |
1148 | dev = &sh->dev[i]; | 1291 | dev = &sh->dev[i]; |
1149 | if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) && | 1292 | if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) && |
1150 | (dev->toread || | 1293 | (dev->toread || |
1151 | (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) || | 1294 | (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) || |
1152 | syncing || | 1295 | syncing || |
1296 | expanding || | ||
1153 | (failed && (sh->dev[failed_num].toread || | 1297 | (failed && (sh->dev[failed_num].toread || |
1154 | (sh->dev[failed_num].towrite && !test_bit(R5_OVERWRITE, &sh->dev[failed_num].flags)))) | 1298 | (sh->dev[failed_num].towrite && !test_bit(R5_OVERWRITE, &sh->dev[failed_num].flags)))) |
1155 | ) | 1299 | ) |
@@ -1339,13 +1483,77 @@ static void handle_stripe(struct stripe_head *sh) | |||
1339 | set_bit(R5_Wantwrite, &dev->flags); | 1483 | set_bit(R5_Wantwrite, &dev->flags); |
1340 | set_bit(R5_ReWrite, &dev->flags); | 1484 | set_bit(R5_ReWrite, &dev->flags); |
1341 | set_bit(R5_LOCKED, &dev->flags); | 1485 | set_bit(R5_LOCKED, &dev->flags); |
1486 | locked++; | ||
1342 | } else { | 1487 | } else { |
1343 | /* let's read it back */ | 1488 | /* let's read it back */ |
1344 | set_bit(R5_Wantread, &dev->flags); | 1489 | set_bit(R5_Wantread, &dev->flags); |
1345 | set_bit(R5_LOCKED, &dev->flags); | 1490 | set_bit(R5_LOCKED, &dev->flags); |
1491 | locked++; | ||
1346 | } | 1492 | } |
1347 | } | 1493 | } |
1348 | 1494 | ||
1495 | if (expanded && test_bit(STRIPE_EXPANDING, &sh->state)) { | ||
1496 | /* Need to write out all blocks after computing parity */ | ||
1497 | sh->disks = conf->raid_disks; | ||
1498 | sh->pd_idx = stripe_to_pdidx(sh->sector, conf, conf->raid_disks); | ||
1499 | compute_parity(sh, RECONSTRUCT_WRITE); | ||
1500 | for (i= conf->raid_disks; i--;) { | ||
1501 | set_bit(R5_LOCKED, &sh->dev[i].flags); | ||
1502 | locked++; | ||
1503 | set_bit(R5_Wantwrite, &sh->dev[i].flags); | ||
1504 | } | ||
1505 | clear_bit(STRIPE_EXPANDING, &sh->state); | ||
1506 | } else if (expanded) { | ||
1507 | clear_bit(STRIPE_EXPAND_READY, &sh->state); | ||
1508 | atomic_dec(&conf->reshape_stripes); | ||
1509 | wake_up(&conf->wait_for_overlap); | ||
1510 | md_done_sync(conf->mddev, STRIPE_SECTORS, 1); | ||
1511 | } | ||
1512 | |||
1513 | if (expanding && locked == 0) { | ||
1514 | /* We have read all the blocks in this stripe and now we need to | ||
1515 | * copy some of them into a target stripe for expand. | ||
1516 | */ | ||
1517 | clear_bit(STRIPE_EXPAND_SOURCE, &sh->state); | ||
1518 | for (i=0; i< sh->disks; i++) | ||
1519 | if (i != sh->pd_idx) { | ||
1520 | int dd_idx, pd_idx, j; | ||
1521 | struct stripe_head *sh2; | ||
1522 | |||
1523 | sector_t bn = compute_blocknr(sh, i); | ||
1524 | sector_t s = raid5_compute_sector(bn, conf->raid_disks, | ||
1525 | conf->raid_disks-1, | ||
1526 | &dd_idx, &pd_idx, conf); | ||
1527 | sh2 = get_active_stripe(conf, s, conf->raid_disks, pd_idx, 1); | ||
1528 | if (sh2 == NULL) | ||
1529 | /* so far only the early blocks of this stripe | ||
1530 | * have been requested. When later blocks | ||
1531 | * get requested, we will try again | ||
1532 | */ | ||
1533 | continue; | ||
1534 | if(!test_bit(STRIPE_EXPANDING, &sh2->state) || | ||
1535 | test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) { | ||
1536 | /* must have already done this block */ | ||
1537 | release_stripe(sh2); | ||
1538 | continue; | ||
1539 | } | ||
1540 | memcpy(page_address(sh2->dev[dd_idx].page), | ||
1541 | page_address(sh->dev[i].page), | ||
1542 | STRIPE_SIZE); | ||
1543 | set_bit(R5_Expanded, &sh2->dev[dd_idx].flags); | ||
1544 | set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags); | ||
1545 | for (j=0; j<conf->raid_disks; j++) | ||
1546 | if (j != sh2->pd_idx && | ||
1547 | !test_bit(R5_Expanded, &sh2->dev[j].flags)) | ||
1548 | break; | ||
1549 | if (j == conf->raid_disks) { | ||
1550 | set_bit(STRIPE_EXPAND_READY, &sh2->state); | ||
1551 | set_bit(STRIPE_HANDLE, &sh2->state); | ||
1552 | } | ||
1553 | release_stripe(sh2); | ||
1554 | } | ||
1555 | } | ||
1556 | |||
1349 | spin_unlock(&sh->lock); | 1557 | spin_unlock(&sh->lock); |
1350 | 1558 | ||
1351 | while ((bi=return_bi)) { | 1559 | while ((bi=return_bi)) { |
@@ -1384,7 +1592,7 @@ static void handle_stripe(struct stripe_head *sh) | |||
1384 | rcu_read_unlock(); | 1592 | rcu_read_unlock(); |
1385 | 1593 | ||
1386 | if (rdev) { | 1594 | if (rdev) { |
1387 | if (syncing) | 1595 | if (syncing || expanding || expanded) |
1388 | md_sync_acct(rdev->bdev, STRIPE_SECTORS); | 1596 | md_sync_acct(rdev->bdev, STRIPE_SECTORS); |
1389 | 1597 | ||
1390 | bi->bi_bdev = rdev->bdev; | 1598 | bi->bi_bdev = rdev->bdev; |
@@ -1526,17 +1734,16 @@ static inline void raid5_plug_device(raid5_conf_t *conf) | |||
1526 | spin_unlock_irq(&conf->device_lock); | 1734 | spin_unlock_irq(&conf->device_lock); |
1527 | } | 1735 | } |
1528 | 1736 | ||
1529 | static int make_request (request_queue_t *q, struct bio * bi) | 1737 | static int make_request(request_queue_t *q, struct bio * bi) |
1530 | { | 1738 | { |
1531 | mddev_t *mddev = q->queuedata; | 1739 | mddev_t *mddev = q->queuedata; |
1532 | raid5_conf_t *conf = mddev_to_conf(mddev); | 1740 | raid5_conf_t *conf = mddev_to_conf(mddev); |
1533 | const unsigned int raid_disks = conf->raid_disks; | ||
1534 | const unsigned int data_disks = raid_disks - 1; | ||
1535 | unsigned int dd_idx, pd_idx; | 1741 | unsigned int dd_idx, pd_idx; |
1536 | sector_t new_sector; | 1742 | sector_t new_sector; |
1537 | sector_t logical_sector, last_sector; | 1743 | sector_t logical_sector, last_sector; |
1538 | struct stripe_head *sh; | 1744 | struct stripe_head *sh; |
1539 | const int rw = bio_data_dir(bi); | 1745 | const int rw = bio_data_dir(bi); |
1746 | int remaining; | ||
1540 | 1747 | ||
1541 | if (unlikely(bio_barrier(bi))) { | 1748 | if (unlikely(bio_barrier(bi))) { |
1542 | bio_endio(bi, bi->bi_size, -EOPNOTSUPP); | 1749 | bio_endio(bi, bi->bi_size, -EOPNOTSUPP); |
@@ -1555,20 +1762,77 @@ static int make_request (request_queue_t *q, struct bio * bi) | |||
1555 | 1762 | ||
1556 | for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) { | 1763 | for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) { |
1557 | DEFINE_WAIT(w); | 1764 | DEFINE_WAIT(w); |
1558 | 1765 | int disks; | |
1559 | new_sector = raid5_compute_sector(logical_sector, | ||
1560 | raid_disks, data_disks, &dd_idx, &pd_idx, conf); | ||
1561 | 1766 | ||
1767 | retry: | ||
1768 | prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE); | ||
1769 | if (likely(conf->expand_progress == MaxSector)) | ||
1770 | disks = conf->raid_disks; | ||
1771 | else { | ||
1772 | /* spinlock is needed as expand_progress may be | ||
1773 | * 64bit on a 32bit platform, and so it might be | ||
1774 | * possible to see a half-updated value | ||
1775 | * Ofcourse expand_progress could change after | ||
1776 | * the lock is dropped, so once we get a reference | ||
1777 | * to the stripe that we think it is, we will have | ||
1778 | * to check again. | ||
1779 | */ | ||
1780 | spin_lock_irq(&conf->device_lock); | ||
1781 | disks = conf->raid_disks; | ||
1782 | if (logical_sector >= conf->expand_progress) | ||
1783 | disks = conf->previous_raid_disks; | ||
1784 | else { | ||
1785 | if (logical_sector >= conf->expand_lo) { | ||
1786 | spin_unlock_irq(&conf->device_lock); | ||
1787 | schedule(); | ||
1788 | goto retry; | ||
1789 | } | ||
1790 | } | ||
1791 | spin_unlock_irq(&conf->device_lock); | ||
1792 | } | ||
1793 | new_sector = raid5_compute_sector(logical_sector, disks, disks - 1, | ||
1794 | &dd_idx, &pd_idx, conf); | ||
1562 | PRINTK("raid5: make_request, sector %llu logical %llu\n", | 1795 | PRINTK("raid5: make_request, sector %llu logical %llu\n", |
1563 | (unsigned long long)new_sector, | 1796 | (unsigned long long)new_sector, |
1564 | (unsigned long long)logical_sector); | 1797 | (unsigned long long)logical_sector); |
1565 | 1798 | ||
1566 | retry: | 1799 | sh = get_active_stripe(conf, new_sector, disks, pd_idx, (bi->bi_rw&RWA_MASK)); |
1567 | prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE); | ||
1568 | sh = get_active_stripe(conf, new_sector, pd_idx, (bi->bi_rw&RWA_MASK)); | ||
1569 | if (sh) { | 1800 | if (sh) { |
1570 | if (!add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) { | 1801 | if (unlikely(conf->expand_progress != MaxSector)) { |
1571 | /* Add failed due to overlap. Flush everything | 1802 | /* expansion might have moved on while waiting for a |
1803 | * stripe, so we must do the range check again. | ||
1804 | * Expansion could still move past after this | ||
1805 | * test, but as we are holding a reference to | ||
1806 | * 'sh', we know that if that happens, | ||
1807 | * STRIPE_EXPANDING will get set and the expansion | ||
1808 | * won't proceed until we finish with the stripe. | ||
1809 | */ | ||
1810 | int must_retry = 0; | ||
1811 | spin_lock_irq(&conf->device_lock); | ||
1812 | if (logical_sector < conf->expand_progress && | ||
1813 | disks == conf->previous_raid_disks) | ||
1814 | /* mismatch, need to try again */ | ||
1815 | must_retry = 1; | ||
1816 | spin_unlock_irq(&conf->device_lock); | ||
1817 | if (must_retry) { | ||
1818 | release_stripe(sh); | ||
1819 | goto retry; | ||
1820 | } | ||
1821 | } | ||
1822 | /* FIXME what if we get a false positive because these | ||
1823 | * are being updated. | ||
1824 | */ | ||
1825 | if (logical_sector >= mddev->suspend_lo && | ||
1826 | logical_sector < mddev->suspend_hi) { | ||
1827 | release_stripe(sh); | ||
1828 | schedule(); | ||
1829 | goto retry; | ||
1830 | } | ||
1831 | |||
1832 | if (test_bit(STRIPE_EXPANDING, &sh->state) || | ||
1833 | !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) { | ||
1834 | /* Stripe is busy expanding or | ||
1835 | * add failed due to overlap. Flush everything | ||
1572 | * and wait a while | 1836 | * and wait a while |
1573 | */ | 1837 | */ |
1574 | raid5_unplug_device(mddev->queue); | 1838 | raid5_unplug_device(mddev->queue); |
@@ -1580,7 +1844,6 @@ static int make_request (request_queue_t *q, struct bio * bi) | |||
1580 | raid5_plug_device(conf); | 1844 | raid5_plug_device(conf); |
1581 | handle_stripe(sh); | 1845 | handle_stripe(sh); |
1582 | release_stripe(sh); | 1846 | release_stripe(sh); |
1583 | |||
1584 | } else { | 1847 | } else { |
1585 | /* cannot get stripe for read-ahead, just give-up */ | 1848 | /* cannot get stripe for read-ahead, just give-up */ |
1586 | clear_bit(BIO_UPTODATE, &bi->bi_flags); | 1849 | clear_bit(BIO_UPTODATE, &bi->bi_flags); |
@@ -1590,7 +1853,9 @@ static int make_request (request_queue_t *q, struct bio * bi) | |||
1590 | 1853 | ||
1591 | } | 1854 | } |
1592 | spin_lock_irq(&conf->device_lock); | 1855 | spin_lock_irq(&conf->device_lock); |
1593 | if (--bi->bi_phys_segments == 0) { | 1856 | remaining = --bi->bi_phys_segments; |
1857 | spin_unlock_irq(&conf->device_lock); | ||
1858 | if (remaining == 0) { | ||
1594 | int bytes = bi->bi_size; | 1859 | int bytes = bi->bi_size; |
1595 | 1860 | ||
1596 | if ( bio_data_dir(bi) == WRITE ) | 1861 | if ( bio_data_dir(bi) == WRITE ) |
@@ -1598,7 +1863,6 @@ static int make_request (request_queue_t *q, struct bio * bi) | |||
1598 | bi->bi_size = 0; | 1863 | bi->bi_size = 0; |
1599 | bi->bi_end_io(bi, bytes, 0); | 1864 | bi->bi_end_io(bi, bytes, 0); |
1600 | } | 1865 | } |
1601 | spin_unlock_irq(&conf->device_lock); | ||
1602 | return 0; | 1866 | return 0; |
1603 | } | 1867 | } |
1604 | 1868 | ||
@@ -1607,12 +1871,8 @@ static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, i | |||
1607 | { | 1871 | { |
1608 | raid5_conf_t *conf = (raid5_conf_t *) mddev->private; | 1872 | raid5_conf_t *conf = (raid5_conf_t *) mddev->private; |
1609 | struct stripe_head *sh; | 1873 | struct stripe_head *sh; |
1610 | int sectors_per_chunk = conf->chunk_size >> 9; | 1874 | int pd_idx; |
1611 | sector_t x; | 1875 | sector_t first_sector, last_sector; |
1612 | unsigned long stripe; | ||
1613 | int chunk_offset; | ||
1614 | int dd_idx, pd_idx; | ||
1615 | sector_t first_sector; | ||
1616 | int raid_disks = conf->raid_disks; | 1876 | int raid_disks = conf->raid_disks; |
1617 | int data_disks = raid_disks-1; | 1877 | int data_disks = raid_disks-1; |
1618 | sector_t max_sector = mddev->size << 1; | 1878 | sector_t max_sector = mddev->size << 1; |
@@ -1621,6 +1881,10 @@ static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, i | |||
1621 | if (sector_nr >= max_sector) { | 1881 | if (sector_nr >= max_sector) { |
1622 | /* just being told to finish up .. nothing much to do */ | 1882 | /* just being told to finish up .. nothing much to do */ |
1623 | unplug_slaves(mddev); | 1883 | unplug_slaves(mddev); |
1884 | if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) { | ||
1885 | end_reshape(conf); | ||
1886 | return 0; | ||
1887 | } | ||
1624 | 1888 | ||
1625 | if (mddev->curr_resync < max_sector) /* aborted */ | 1889 | if (mddev->curr_resync < max_sector) /* aborted */ |
1626 | bitmap_end_sync(mddev->bitmap, mddev->curr_resync, | 1890 | bitmap_end_sync(mddev->bitmap, mddev->curr_resync, |
@@ -1631,6 +1895,123 @@ static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, i | |||
1631 | 1895 | ||
1632 | return 0; | 1896 | return 0; |
1633 | } | 1897 | } |
1898 | |||
1899 | if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) { | ||
1900 | /* reshaping is quite different to recovery/resync so it is | ||
1901 | * handled quite separately ... here. | ||
1902 | * | ||
1903 | * On each call to sync_request, we gather one chunk worth of | ||
1904 | * destination stripes and flag them as expanding. | ||
1905 | * Then we find all the source stripes and request reads. | ||
1906 | * As the reads complete, handle_stripe will copy the data | ||
1907 | * into the destination stripe and release that stripe. | ||
1908 | */ | ||
1909 | int i; | ||
1910 | int dd_idx; | ||
1911 | sector_t writepos, safepos, gap; | ||
1912 | |||
1913 | if (sector_nr == 0 && | ||
1914 | conf->expand_progress != 0) { | ||
1915 | /* restarting in the middle, skip the initial sectors */ | ||
1916 | sector_nr = conf->expand_progress; | ||
1917 | sector_div(sector_nr, conf->raid_disks-1); | ||
1918 | *skipped = 1; | ||
1919 | return sector_nr; | ||
1920 | } | ||
1921 | |||
1922 | /* we update the metadata when there is more than 3Meg | ||
1923 | * in the block range (that is rather arbitrary, should | ||
1924 | * probably be time based) or when the data about to be | ||
1925 | * copied would over-write the source of the data at | ||
1926 | * the front of the range. | ||
1927 | * i.e. one new_stripe forward from expand_progress new_maps | ||
1928 | * to after where expand_lo old_maps to | ||
1929 | */ | ||
1930 | writepos = conf->expand_progress + | ||
1931 | conf->chunk_size/512*(conf->raid_disks-1); | ||
1932 | sector_div(writepos, conf->raid_disks-1); | ||
1933 | safepos = conf->expand_lo; | ||
1934 | sector_div(safepos, conf->previous_raid_disks-1); | ||
1935 | gap = conf->expand_progress - conf->expand_lo; | ||
1936 | |||
1937 | if (writepos >= safepos || | ||
1938 | gap > (conf->raid_disks-1)*3000*2 /*3Meg*/) { | ||
1939 | /* Cannot proceed until we've updated the superblock... */ | ||
1940 | wait_event(conf->wait_for_overlap, | ||
1941 | atomic_read(&conf->reshape_stripes)==0); | ||
1942 | mddev->reshape_position = conf->expand_progress; | ||
1943 | mddev->sb_dirty = 1; | ||
1944 | md_wakeup_thread(mddev->thread); | ||
1945 | wait_event(mddev->sb_wait, mddev->sb_dirty == 0 || | ||
1946 | kthread_should_stop()); | ||
1947 | spin_lock_irq(&conf->device_lock); | ||
1948 | conf->expand_lo = mddev->reshape_position; | ||
1949 | spin_unlock_irq(&conf->device_lock); | ||
1950 | wake_up(&conf->wait_for_overlap); | ||
1951 | } | ||
1952 | |||
1953 | for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) { | ||
1954 | int j; | ||
1955 | int skipped = 0; | ||
1956 | pd_idx = stripe_to_pdidx(sector_nr+i, conf, conf->raid_disks); | ||
1957 | sh = get_active_stripe(conf, sector_nr+i, | ||
1958 | conf->raid_disks, pd_idx, 0); | ||
1959 | set_bit(STRIPE_EXPANDING, &sh->state); | ||
1960 | atomic_inc(&conf->reshape_stripes); | ||
1961 | /* If any of this stripe is beyond the end of the old | ||
1962 | * array, then we need to zero those blocks | ||
1963 | */ | ||
1964 | for (j=sh->disks; j--;) { | ||
1965 | sector_t s; | ||
1966 | if (j == sh->pd_idx) | ||
1967 | continue; | ||
1968 | s = compute_blocknr(sh, j); | ||
1969 | if (s < (mddev->array_size<<1)) { | ||
1970 | skipped = 1; | ||
1971 | continue; | ||
1972 | } | ||
1973 | memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE); | ||
1974 | set_bit(R5_Expanded, &sh->dev[j].flags); | ||
1975 | set_bit(R5_UPTODATE, &sh->dev[j].flags); | ||
1976 | } | ||
1977 | if (!skipped) { | ||
1978 | set_bit(STRIPE_EXPAND_READY, &sh->state); | ||
1979 | set_bit(STRIPE_HANDLE, &sh->state); | ||
1980 | } | ||
1981 | release_stripe(sh); | ||
1982 | } | ||
1983 | spin_lock_irq(&conf->device_lock); | ||
1984 | conf->expand_progress = (sector_nr + i)*(conf->raid_disks-1); | ||
1985 | spin_unlock_irq(&conf->device_lock); | ||
1986 | /* Ok, those stripe are ready. We can start scheduling | ||
1987 | * reads on the source stripes. | ||
1988 | * The source stripes are determined by mapping the first and last | ||
1989 | * block on the destination stripes. | ||
1990 | */ | ||
1991 | raid_disks = conf->previous_raid_disks; | ||
1992 | data_disks = raid_disks - 1; | ||
1993 | first_sector = | ||
1994 | raid5_compute_sector(sector_nr*(conf->raid_disks-1), | ||
1995 | raid_disks, data_disks, | ||
1996 | &dd_idx, &pd_idx, conf); | ||
1997 | last_sector = | ||
1998 | raid5_compute_sector((sector_nr+conf->chunk_size/512) | ||
1999 | *(conf->raid_disks-1) -1, | ||
2000 | raid_disks, data_disks, | ||
2001 | &dd_idx, &pd_idx, conf); | ||
2002 | if (last_sector >= (mddev->size<<1)) | ||
2003 | last_sector = (mddev->size<<1)-1; | ||
2004 | while (first_sector <= last_sector) { | ||
2005 | pd_idx = stripe_to_pdidx(first_sector, conf, conf->previous_raid_disks); | ||
2006 | sh = get_active_stripe(conf, first_sector, | ||
2007 | conf->previous_raid_disks, pd_idx, 0); | ||
2008 | set_bit(STRIPE_EXPAND_SOURCE, &sh->state); | ||
2009 | set_bit(STRIPE_HANDLE, &sh->state); | ||
2010 | release_stripe(sh); | ||
2011 | first_sector += STRIPE_SECTORS; | ||
2012 | } | ||
2013 | return conf->chunk_size>>9; | ||
2014 | } | ||
1634 | /* if there is 1 or more failed drives and we are trying | 2015 | /* if there is 1 or more failed drives and we are trying |
1635 | * to resync, then assert that we are finished, because there is | 2016 | * to resync, then assert that we are finished, because there is |
1636 | * nothing we can do. | 2017 | * nothing we can do. |
@@ -1649,16 +2030,10 @@ static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, i | |||
1649 | return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */ | 2030 | return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */ |
1650 | } | 2031 | } |
1651 | 2032 | ||
1652 | x = sector_nr; | 2033 | pd_idx = stripe_to_pdidx(sector_nr, conf, raid_disks); |
1653 | chunk_offset = sector_div(x, sectors_per_chunk); | 2034 | sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 1); |
1654 | stripe = x; | ||
1655 | BUG_ON(x != stripe); | ||
1656 | |||
1657 | first_sector = raid5_compute_sector((sector_t)stripe*data_disks*sectors_per_chunk | ||
1658 | + chunk_offset, raid_disks, data_disks, &dd_idx, &pd_idx, conf); | ||
1659 | sh = get_active_stripe(conf, sector_nr, pd_idx, 1); | ||
1660 | if (sh == NULL) { | 2035 | if (sh == NULL) { |
1661 | sh = get_active_stripe(conf, sector_nr, pd_idx, 0); | 2036 | sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 0); |
1662 | /* make sure we don't swamp the stripe cache if someone else | 2037 | /* make sure we don't swamp the stripe cache if someone else |
1663 | * is trying to get access | 2038 | * is trying to get access |
1664 | */ | 2039 | */ |
@@ -1822,11 +2197,64 @@ static int run(mddev_t *mddev) | |||
1822 | return -EIO; | 2197 | return -EIO; |
1823 | } | 2198 | } |
1824 | 2199 | ||
1825 | mddev->private = kzalloc(sizeof (raid5_conf_t) | 2200 | if (mddev->reshape_position != MaxSector) { |
1826 | + mddev->raid_disks * sizeof(struct disk_info), | 2201 | /* Check that we can continue the reshape. |
1827 | GFP_KERNEL); | 2202 | * Currently only disks can change, it must |
2203 | * increase, and we must be past the point where | ||
2204 | * a stripe over-writes itself | ||
2205 | */ | ||
2206 | sector_t here_new, here_old; | ||
2207 | int old_disks; | ||
2208 | |||
2209 | if (mddev->new_level != mddev->level || | ||
2210 | mddev->new_layout != mddev->layout || | ||
2211 | mddev->new_chunk != mddev->chunk_size) { | ||
2212 | printk(KERN_ERR "raid5: %s: unsupported reshape required - aborting.\n", | ||
2213 | mdname(mddev)); | ||
2214 | return -EINVAL; | ||
2215 | } | ||
2216 | if (mddev->delta_disks <= 0) { | ||
2217 | printk(KERN_ERR "raid5: %s: unsupported reshape (reduce disks) required - aborting.\n", | ||
2218 | mdname(mddev)); | ||
2219 | return -EINVAL; | ||
2220 | } | ||
2221 | old_disks = mddev->raid_disks - mddev->delta_disks; | ||
2222 | /* reshape_position must be on a new-stripe boundary, and one | ||
2223 | * further up in new geometry must map after here in old geometry. | ||
2224 | */ | ||
2225 | here_new = mddev->reshape_position; | ||
2226 | if (sector_div(here_new, (mddev->chunk_size>>9)*(mddev->raid_disks-1))) { | ||
2227 | printk(KERN_ERR "raid5: reshape_position not on a stripe boundary\n"); | ||
2228 | return -EINVAL; | ||
2229 | } | ||
2230 | /* here_new is the stripe we will write to */ | ||
2231 | here_old = mddev->reshape_position; | ||
2232 | sector_div(here_old, (mddev->chunk_size>>9)*(old_disks-1)); | ||
2233 | /* here_old is the first stripe that we might need to read from */ | ||
2234 | if (here_new >= here_old) { | ||
2235 | /* Reading from the same stripe as writing to - bad */ | ||
2236 | printk(KERN_ERR "raid5: reshape_position too early for auto-recovery - aborting.\n"); | ||
2237 | return -EINVAL; | ||
2238 | } | ||
2239 | printk(KERN_INFO "raid5: reshape will continue\n"); | ||
2240 | /* OK, we should be able to continue; */ | ||
2241 | } | ||
2242 | |||
2243 | |||
2244 | mddev->private = kzalloc(sizeof (raid5_conf_t), GFP_KERNEL); | ||
1828 | if ((conf = mddev->private) == NULL) | 2245 | if ((conf = mddev->private) == NULL) |
1829 | goto abort; | 2246 | goto abort; |
2247 | if (mddev->reshape_position == MaxSector) { | ||
2248 | conf->previous_raid_disks = conf->raid_disks = mddev->raid_disks; | ||
2249 | } else { | ||
2250 | conf->raid_disks = mddev->raid_disks; | ||
2251 | conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks; | ||
2252 | } | ||
2253 | |||
2254 | conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info), | ||
2255 | GFP_KERNEL); | ||
2256 | if (!conf->disks) | ||
2257 | goto abort; | ||
1830 | 2258 | ||
1831 | conf->mddev = mddev; | 2259 | conf->mddev = mddev; |
1832 | 2260 | ||
@@ -1847,7 +2275,7 @@ static int run(mddev_t *mddev) | |||
1847 | 2275 | ||
1848 | ITERATE_RDEV(mddev,rdev,tmp) { | 2276 | ITERATE_RDEV(mddev,rdev,tmp) { |
1849 | raid_disk = rdev->raid_disk; | 2277 | raid_disk = rdev->raid_disk; |
1850 | if (raid_disk >= mddev->raid_disks | 2278 | if (raid_disk >= conf->raid_disks |
1851 | || raid_disk < 0) | 2279 | || raid_disk < 0) |
1852 | continue; | 2280 | continue; |
1853 | disk = conf->disks + raid_disk; | 2281 | disk = conf->disks + raid_disk; |
@@ -1863,7 +2291,6 @@ static int run(mddev_t *mddev) | |||
1863 | } | 2291 | } |
1864 | } | 2292 | } |
1865 | 2293 | ||
1866 | conf->raid_disks = mddev->raid_disks; | ||
1867 | /* | 2294 | /* |
1868 | * 0 for a fully functional array, 1 for a degraded array. | 2295 | * 0 for a fully functional array, 1 for a degraded array. |
1869 | */ | 2296 | */ |
@@ -1873,6 +2300,7 @@ static int run(mddev_t *mddev) | |||
1873 | conf->level = mddev->level; | 2300 | conf->level = mddev->level; |
1874 | conf->algorithm = mddev->layout; | 2301 | conf->algorithm = mddev->layout; |
1875 | conf->max_nr_stripes = NR_STRIPES; | 2302 | conf->max_nr_stripes = NR_STRIPES; |
2303 | conf->expand_progress = mddev->reshape_position; | ||
1876 | 2304 | ||
1877 | /* device size must be a multiple of chunk size */ | 2305 | /* device size must be a multiple of chunk size */ |
1878 | mddev->size &= ~(mddev->chunk_size/1024 -1); | 2306 | mddev->size &= ~(mddev->chunk_size/1024 -1); |
@@ -1945,6 +2373,21 @@ static int run(mddev_t *mddev) | |||
1945 | 2373 | ||
1946 | print_raid5_conf(conf); | 2374 | print_raid5_conf(conf); |
1947 | 2375 | ||
2376 | if (conf->expand_progress != MaxSector) { | ||
2377 | printk("...ok start reshape thread\n"); | ||
2378 | conf->expand_lo = conf->expand_progress; | ||
2379 | atomic_set(&conf->reshape_stripes, 0); | ||
2380 | clear_bit(MD_RECOVERY_SYNC, &mddev->recovery); | ||
2381 | clear_bit(MD_RECOVERY_CHECK, &mddev->recovery); | ||
2382 | set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery); | ||
2383 | set_bit(MD_RECOVERY_RUNNING, &mddev->recovery); | ||
2384 | mddev->sync_thread = md_register_thread(md_do_sync, mddev, | ||
2385 | "%s_reshape"); | ||
2386 | /* FIXME if md_register_thread fails?? */ | ||
2387 | md_wakeup_thread(mddev->sync_thread); | ||
2388 | |||
2389 | } | ||
2390 | |||
1948 | /* read-ahead size must cover two whole stripes, which is | 2391 | /* read-ahead size must cover two whole stripes, which is |
1949 | * 2 * (n-1) * chunksize where 'n' is the number of raid devices | 2392 | * 2 * (n-1) * chunksize where 'n' is the number of raid devices |
1950 | */ | 2393 | */ |
@@ -1960,12 +2403,13 @@ static int run(mddev_t *mddev) | |||
1960 | 2403 | ||
1961 | mddev->queue->unplug_fn = raid5_unplug_device; | 2404 | mddev->queue->unplug_fn = raid5_unplug_device; |
1962 | mddev->queue->issue_flush_fn = raid5_issue_flush; | 2405 | mddev->queue->issue_flush_fn = raid5_issue_flush; |
2406 | mddev->array_size = mddev->size * (conf->previous_raid_disks - 1); | ||
1963 | 2407 | ||
1964 | mddev->array_size = mddev->size * (mddev->raid_disks - 1); | ||
1965 | return 0; | 2408 | return 0; |
1966 | abort: | 2409 | abort: |
1967 | if (conf) { | 2410 | if (conf) { |
1968 | print_raid5_conf(conf); | 2411 | print_raid5_conf(conf); |
2412 | kfree(conf->disks); | ||
1969 | kfree(conf->stripe_hashtbl); | 2413 | kfree(conf->stripe_hashtbl); |
1970 | kfree(conf); | 2414 | kfree(conf); |
1971 | } | 2415 | } |
@@ -1986,6 +2430,7 @@ static int stop(mddev_t *mddev) | |||
1986 | kfree(conf->stripe_hashtbl); | 2430 | kfree(conf->stripe_hashtbl); |
1987 | blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/ | 2431 | blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/ |
1988 | sysfs_remove_group(&mddev->kobj, &raid5_attrs_group); | 2432 | sysfs_remove_group(&mddev->kobj, &raid5_attrs_group); |
2433 | kfree(conf->disks); | ||
1989 | kfree(conf); | 2434 | kfree(conf); |
1990 | mddev->private = NULL; | 2435 | mddev->private = NULL; |
1991 | return 0; | 2436 | return 0; |
@@ -2001,7 +2446,7 @@ static void print_sh (struct stripe_head *sh) | |||
2001 | printk("sh %llu, count %d.\n", | 2446 | printk("sh %llu, count %d.\n", |
2002 | (unsigned long long)sh->sector, atomic_read(&sh->count)); | 2447 | (unsigned long long)sh->sector, atomic_read(&sh->count)); |
2003 | printk("sh %llu, ", (unsigned long long)sh->sector); | 2448 | printk("sh %llu, ", (unsigned long long)sh->sector); |
2004 | for (i = 0; i < sh->raid_conf->raid_disks; i++) { | 2449 | for (i = 0; i < sh->disks; i++) { |
2005 | printk("(cache%d: %p %ld) ", | 2450 | printk("(cache%d: %p %ld) ", |
2006 | i, sh->dev[i].page, sh->dev[i].flags); | 2451 | i, sh->dev[i].page, sh->dev[i].flags); |
2007 | } | 2452 | } |
@@ -2132,7 +2577,7 @@ static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev) | |||
2132 | /* | 2577 | /* |
2133 | * find the disk ... | 2578 | * find the disk ... |
2134 | */ | 2579 | */ |
2135 | for (disk=0; disk < mddev->raid_disks; disk++) | 2580 | for (disk=0; disk < conf->raid_disks; disk++) |
2136 | if ((p=conf->disks + disk)->rdev == NULL) { | 2581 | if ((p=conf->disks + disk)->rdev == NULL) { |
2137 | clear_bit(In_sync, &rdev->flags); | 2582 | clear_bit(In_sync, &rdev->flags); |
2138 | rdev->raid_disk = disk; | 2583 | rdev->raid_disk = disk; |
@@ -2168,11 +2613,146 @@ static int raid5_resize(mddev_t *mddev, sector_t sectors) | |||
2168 | return 0; | 2613 | return 0; |
2169 | } | 2614 | } |
2170 | 2615 | ||
2616 | #ifdef CONFIG_MD_RAID5_RESHAPE | ||
2617 | static int raid5_check_reshape(mddev_t *mddev) | ||
2618 | { | ||
2619 | raid5_conf_t *conf = mddev_to_conf(mddev); | ||
2620 | int err; | ||
2621 | |||
2622 | if (mddev->delta_disks < 0 || | ||
2623 | mddev->new_level != mddev->level) | ||
2624 | return -EINVAL; /* Cannot shrink array or change level yet */ | ||
2625 | if (mddev->delta_disks == 0) | ||
2626 | return 0; /* nothing to do */ | ||
2627 | |||
2628 | /* Can only proceed if there are plenty of stripe_heads. | ||
2629 | * We need a minimum of one full stripe,, and for sensible progress | ||
2630 | * it is best to have about 4 times that. | ||
2631 | * If we require 4 times, then the default 256 4K stripe_heads will | ||
2632 | * allow for chunk sizes up to 256K, which is probably OK. | ||
2633 | * If the chunk size is greater, user-space should request more | ||
2634 | * stripe_heads first. | ||
2635 | */ | ||
2636 | if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes || | ||
2637 | (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) { | ||
2638 | printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n", | ||
2639 | (mddev->chunk_size / STRIPE_SIZE)*4); | ||
2640 | return -ENOSPC; | ||
2641 | } | ||
2642 | |||
2643 | err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks); | ||
2644 | if (err) | ||
2645 | return err; | ||
2646 | |||
2647 | /* looks like we might be able to manage this */ | ||
2648 | return 0; | ||
2649 | } | ||
2650 | |||
2651 | static int raid5_start_reshape(mddev_t *mddev) | ||
2652 | { | ||
2653 | raid5_conf_t *conf = mddev_to_conf(mddev); | ||
2654 | mdk_rdev_t *rdev; | ||
2655 | struct list_head *rtmp; | ||
2656 | int spares = 0; | ||
2657 | int added_devices = 0; | ||
2658 | |||
2659 | if (mddev->degraded || | ||
2660 | test_bit(MD_RECOVERY_RUNNING, &mddev->recovery)) | ||
2661 | return -EBUSY; | ||
2662 | |||
2663 | ITERATE_RDEV(mddev, rdev, rtmp) | ||
2664 | if (rdev->raid_disk < 0 && | ||
2665 | !test_bit(Faulty, &rdev->flags)) | ||
2666 | spares++; | ||
2667 | |||
2668 | if (spares < mddev->delta_disks-1) | ||
2669 | /* Not enough devices even to make a degraded array | ||
2670 | * of that size | ||
2671 | */ | ||
2672 | return -EINVAL; | ||
2673 | |||
2674 | atomic_set(&conf->reshape_stripes, 0); | ||
2675 | spin_lock_irq(&conf->device_lock); | ||
2676 | conf->previous_raid_disks = conf->raid_disks; | ||
2677 | conf->raid_disks += mddev->delta_disks; | ||
2678 | conf->expand_progress = 0; | ||
2679 | conf->expand_lo = 0; | ||
2680 | spin_unlock_irq(&conf->device_lock); | ||
2681 | |||
2682 | /* Add some new drives, as many as will fit. | ||
2683 | * We know there are enough to make the newly sized array work. | ||
2684 | */ | ||
2685 | ITERATE_RDEV(mddev, rdev, rtmp) | ||
2686 | if (rdev->raid_disk < 0 && | ||
2687 | !test_bit(Faulty, &rdev->flags)) { | ||
2688 | if (raid5_add_disk(mddev, rdev)) { | ||
2689 | char nm[20]; | ||
2690 | set_bit(In_sync, &rdev->flags); | ||
2691 | conf->working_disks++; | ||
2692 | added_devices++; | ||
2693 | sprintf(nm, "rd%d", rdev->raid_disk); | ||
2694 | sysfs_create_link(&mddev->kobj, &rdev->kobj, nm); | ||
2695 | } else | ||
2696 | break; | ||
2697 | } | ||
2698 | |||
2699 | mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices; | ||
2700 | mddev->raid_disks = conf->raid_disks; | ||
2701 | mddev->reshape_position = 0; | ||
2702 | mddev->sb_dirty = 1; | ||
2703 | |||
2704 | clear_bit(MD_RECOVERY_SYNC, &mddev->recovery); | ||
2705 | clear_bit(MD_RECOVERY_CHECK, &mddev->recovery); | ||
2706 | set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery); | ||
2707 | set_bit(MD_RECOVERY_RUNNING, &mddev->recovery); | ||
2708 | mddev->sync_thread = md_register_thread(md_do_sync, mddev, | ||
2709 | "%s_reshape"); | ||
2710 | if (!mddev->sync_thread) { | ||
2711 | mddev->recovery = 0; | ||
2712 | spin_lock_irq(&conf->device_lock); | ||
2713 | mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks; | ||
2714 | conf->expand_progress = MaxSector; | ||
2715 | spin_unlock_irq(&conf->device_lock); | ||
2716 | return -EAGAIN; | ||
2717 | } | ||
2718 | md_wakeup_thread(mddev->sync_thread); | ||
2719 | md_new_event(mddev); | ||
2720 | return 0; | ||
2721 | } | ||
2722 | #endif | ||
2723 | |||
2724 | static void end_reshape(raid5_conf_t *conf) | ||
2725 | { | ||
2726 | struct block_device *bdev; | ||
2727 | |||
2728 | if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) { | ||
2729 | conf->mddev->array_size = conf->mddev->size * (conf->raid_disks-1); | ||
2730 | set_capacity(conf->mddev->gendisk, conf->mddev->array_size << 1); | ||
2731 | conf->mddev->changed = 1; | ||
2732 | |||
2733 | bdev = bdget_disk(conf->mddev->gendisk, 0); | ||
2734 | if (bdev) { | ||
2735 | mutex_lock(&bdev->bd_inode->i_mutex); | ||
2736 | i_size_write(bdev->bd_inode, conf->mddev->array_size << 10); | ||
2737 | mutex_unlock(&bdev->bd_inode->i_mutex); | ||
2738 | bdput(bdev); | ||
2739 | } | ||
2740 | spin_lock_irq(&conf->device_lock); | ||
2741 | conf->expand_progress = MaxSector; | ||
2742 | spin_unlock_irq(&conf->device_lock); | ||
2743 | conf->mddev->reshape_position = MaxSector; | ||
2744 | } | ||
2745 | } | ||
2746 | |||
2171 | static void raid5_quiesce(mddev_t *mddev, int state) | 2747 | static void raid5_quiesce(mddev_t *mddev, int state) |
2172 | { | 2748 | { |
2173 | raid5_conf_t *conf = mddev_to_conf(mddev); | 2749 | raid5_conf_t *conf = mddev_to_conf(mddev); |
2174 | 2750 | ||
2175 | switch(state) { | 2751 | switch(state) { |
2752 | case 2: /* resume for a suspend */ | ||
2753 | wake_up(&conf->wait_for_overlap); | ||
2754 | break; | ||
2755 | |||
2176 | case 1: /* stop all writes */ | 2756 | case 1: /* stop all writes */ |
2177 | spin_lock_irq(&conf->device_lock); | 2757 | spin_lock_irq(&conf->device_lock); |
2178 | conf->quiesce = 1; | 2758 | conf->quiesce = 1; |
@@ -2186,6 +2766,7 @@ static void raid5_quiesce(mddev_t *mddev, int state) | |||
2186 | spin_lock_irq(&conf->device_lock); | 2766 | spin_lock_irq(&conf->device_lock); |
2187 | conf->quiesce = 0; | 2767 | conf->quiesce = 0; |
2188 | wake_up(&conf->wait_for_stripe); | 2768 | wake_up(&conf->wait_for_stripe); |
2769 | wake_up(&conf->wait_for_overlap); | ||
2189 | spin_unlock_irq(&conf->device_lock); | 2770 | spin_unlock_irq(&conf->device_lock); |
2190 | break; | 2771 | break; |
2191 | } | 2772 | } |
@@ -2206,6 +2787,10 @@ static struct mdk_personality raid5_personality = | |||
2206 | .spare_active = raid5_spare_active, | 2787 | .spare_active = raid5_spare_active, |
2207 | .sync_request = sync_request, | 2788 | .sync_request = sync_request, |
2208 | .resize = raid5_resize, | 2789 | .resize = raid5_resize, |
2790 | #ifdef CONFIG_MD_RAID5_RESHAPE | ||
2791 | .check_reshape = raid5_check_reshape, | ||
2792 | .start_reshape = raid5_start_reshape, | ||
2793 | #endif | ||
2209 | .quiesce = raid5_quiesce, | 2794 | .quiesce = raid5_quiesce, |
2210 | }; | 2795 | }; |
2211 | 2796 | ||
diff --git a/drivers/md/raid6main.c b/drivers/md/raid6main.c index cd477ebf2ee4..6df4930fddec 100644 --- a/drivers/md/raid6main.c +++ b/drivers/md/raid6main.c | |||
@@ -331,9 +331,9 @@ static int grow_stripes(raid6_conf_t *conf, int num) | |||
331 | kmem_cache_t *sc; | 331 | kmem_cache_t *sc; |
332 | int devs = conf->raid_disks; | 332 | int devs = conf->raid_disks; |
333 | 333 | ||
334 | sprintf(conf->cache_name, "raid6/%s", mdname(conf->mddev)); | 334 | sprintf(conf->cache_name[0], "raid6/%s", mdname(conf->mddev)); |
335 | 335 | ||
336 | sc = kmem_cache_create(conf->cache_name, | 336 | sc = kmem_cache_create(conf->cache_name[0], |
337 | sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev), | 337 | sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev), |
338 | 0, 0, NULL, NULL); | 338 | 0, 0, NULL, NULL); |
339 | if (!sc) | 339 | if (!sc) |
@@ -2006,11 +2006,14 @@ static int run(mddev_t *mddev) | |||
2006 | return -EIO; | 2006 | return -EIO; |
2007 | } | 2007 | } |
2008 | 2008 | ||
2009 | mddev->private = kzalloc(sizeof (raid6_conf_t) | 2009 | mddev->private = kzalloc(sizeof (raid6_conf_t), GFP_KERNEL); |
2010 | + mddev->raid_disks * sizeof(struct disk_info), | ||
2011 | GFP_KERNEL); | ||
2012 | if ((conf = mddev->private) == NULL) | 2010 | if ((conf = mddev->private) == NULL) |
2013 | goto abort; | 2011 | goto abort; |
2012 | conf->disks = kzalloc(mddev->raid_disks * sizeof(struct disk_info), | ||
2013 | GFP_KERNEL); | ||
2014 | if (!conf->disks) | ||
2015 | goto abort; | ||
2016 | |||
2014 | conf->mddev = mddev; | 2017 | conf->mddev = mddev; |
2015 | 2018 | ||
2016 | if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL) | 2019 | if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL) |
@@ -2158,6 +2161,7 @@ abort: | |||
2158 | print_raid6_conf(conf); | 2161 | print_raid6_conf(conf); |
2159 | safe_put_page(conf->spare_page); | 2162 | safe_put_page(conf->spare_page); |
2160 | kfree(conf->stripe_hashtbl); | 2163 | kfree(conf->stripe_hashtbl); |
2164 | kfree(conf->disks); | ||
2161 | kfree(conf); | 2165 | kfree(conf); |
2162 | } | 2166 | } |
2163 | mddev->private = NULL; | 2167 | mddev->private = NULL; |
diff --git a/drivers/media/dvb/dvb-core/dvbdev.c b/drivers/media/dvb/dvb-core/dvbdev.c index 54f8b95717b0..96fe0ecae250 100644 --- a/drivers/media/dvb/dvb-core/dvbdev.c +++ b/drivers/media/dvb/dvb-core/dvbdev.c | |||
@@ -86,7 +86,7 @@ static int dvb_device_open(struct inode *inode, struct file *file) | |||
86 | 86 | ||
87 | if (dvbdev && dvbdev->fops) { | 87 | if (dvbdev && dvbdev->fops) { |
88 | int err = 0; | 88 | int err = 0; |
89 | struct file_operations *old_fops; | 89 | const struct file_operations *old_fops; |
90 | 90 | ||
91 | file->private_data = dvbdev; | 91 | file->private_data = dvbdev; |
92 | old_fops = file->f_op; | 92 | old_fops = file->f_op; |
diff --git a/drivers/media/video/videodev.c b/drivers/media/video/videodev.c index 75e3d41382f2..5f87dd5f1d0b 100644 --- a/drivers/media/video/videodev.c +++ b/drivers/media/video/videodev.c | |||
@@ -97,7 +97,7 @@ static int video_open(struct inode *inode, struct file *file) | |||
97 | unsigned int minor = iminor(inode); | 97 | unsigned int minor = iminor(inode); |
98 | int err = 0; | 98 | int err = 0; |
99 | struct video_device *vfl; | 99 | struct video_device *vfl; |
100 | struct file_operations *old_fops; | 100 | const struct file_operations *old_fops; |
101 | 101 | ||
102 | if(minor>=VIDEO_NUM_DEVICES) | 102 | if(minor>=VIDEO_NUM_DEVICES) |
103 | return -ENODEV; | 103 | return -ENODEV; |
diff --git a/drivers/message/i2o/i2o_proc.c b/drivers/message/i2o/i2o_proc.c index 2a0c42b8cda5..3d2e76eea93e 100644 --- a/drivers/message/i2o/i2o_proc.c +++ b/drivers/message/i2o/i2o_proc.c | |||
@@ -56,7 +56,7 @@ | |||
56 | typedef struct _i2o_proc_entry_t { | 56 | typedef struct _i2o_proc_entry_t { |
57 | char *name; /* entry name */ | 57 | char *name; /* entry name */ |
58 | mode_t mode; /* mode */ | 58 | mode_t mode; /* mode */ |
59 | struct file_operations *fops; /* open function */ | 59 | const struct file_operations *fops; /* open function */ |
60 | } i2o_proc_entry; | 60 | } i2o_proc_entry; |
61 | 61 | ||
62 | /* global I2O /proc/i2o entry */ | 62 | /* global I2O /proc/i2o entry */ |
diff --git a/drivers/misc/ibmasm/heartbeat.c b/drivers/misc/ibmasm/heartbeat.c index f295401fac21..7fd7a43e38de 100644 --- a/drivers/misc/ibmasm/heartbeat.c +++ b/drivers/misc/ibmasm/heartbeat.c | |||
@@ -52,12 +52,13 @@ static struct notifier_block panic_notifier = { panic_happened, NULL, 1 }; | |||
52 | 52 | ||
53 | void ibmasm_register_panic_notifier(void) | 53 | void ibmasm_register_panic_notifier(void) |
54 | { | 54 | { |
55 | notifier_chain_register(&panic_notifier_list, &panic_notifier); | 55 | atomic_notifier_chain_register(&panic_notifier_list, &panic_notifier); |
56 | } | 56 | } |
57 | 57 | ||
58 | void ibmasm_unregister_panic_notifier(void) | 58 | void ibmasm_unregister_panic_notifier(void) |
59 | { | 59 | { |
60 | notifier_chain_unregister(&panic_notifier_list, &panic_notifier); | 60 | atomic_notifier_chain_unregister(&panic_notifier_list, |
61 | &panic_notifier); | ||
61 | } | 62 | } |
62 | 63 | ||
63 | 64 | ||
diff --git a/drivers/misc/ibmasm/ibmasmfs.c b/drivers/misc/ibmasm/ibmasmfs.c index 5c550fcac2c4..26a230b6ff80 100644 --- a/drivers/misc/ibmasm/ibmasmfs.c +++ b/drivers/misc/ibmasm/ibmasmfs.c | |||
@@ -101,7 +101,7 @@ static struct super_operations ibmasmfs_s_ops = { | |||
101 | .drop_inode = generic_delete_inode, | 101 | .drop_inode = generic_delete_inode, |
102 | }; | 102 | }; |
103 | 103 | ||
104 | static struct file_operations *ibmasmfs_dir_ops = &simple_dir_operations; | 104 | static const struct file_operations *ibmasmfs_dir_ops = &simple_dir_operations; |
105 | 105 | ||
106 | static struct file_system_type ibmasmfs_type = { | 106 | static struct file_system_type ibmasmfs_type = { |
107 | .owner = THIS_MODULE, | 107 | .owner = THIS_MODULE, |
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 2d0ac169a86c..f13a539dc169 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -3159,7 +3159,7 @@ static int bond_slave_netdev_event(unsigned long event, struct net_device *slave | |||
3159 | * bond_netdev_event: handle netdev notifier chain events. | 3159 | * bond_netdev_event: handle netdev notifier chain events. |
3160 | * | 3160 | * |
3161 | * This function receives events for the netdev chain. The caller (an | 3161 | * This function receives events for the netdev chain. The caller (an |
3162 | * ioctl handler calling notifier_call_chain) holds the necessary | 3162 | * ioctl handler calling blocking_notifier_call_chain) holds the necessary |
3163 | * locks for us to safely manipulate the slave devices (RTNL lock, | 3163 | * locks for us to safely manipulate the slave devices (RTNL lock, |
3164 | * dev_probe_lock). | 3164 | * dev_probe_lock). |
3165 | */ | 3165 | */ |
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index e7fc28b07e5a..7627a75f4f7c 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
@@ -134,6 +134,7 @@ | |||
134 | #include <linux/random.h> | 134 | #include <linux/random.h> |
135 | #include <linux/init.h> | 135 | #include <linux/init.h> |
136 | #include <linux/if_vlan.h> | 136 | #include <linux/if_vlan.h> |
137 | #include <linux/dma-mapping.h> | ||
137 | 138 | ||
138 | #include <asm/irq.h> | 139 | #include <asm/irq.h> |
139 | #include <asm/io.h> | 140 | #include <asm/io.h> |
@@ -2932,7 +2933,7 @@ static int __devinit nv_probe(struct pci_dev *pci_dev, const struct pci_device_i | |||
2932 | if (id->driver_data & DEV_HAS_HIGH_DMA) { | 2933 | if (id->driver_data & DEV_HAS_HIGH_DMA) { |
2933 | /* packet format 3: supports 40-bit addressing */ | 2934 | /* packet format 3: supports 40-bit addressing */ |
2934 | np->desc_ver = DESC_VER_3; | 2935 | np->desc_ver = DESC_VER_3; |
2935 | if (pci_set_dma_mask(pci_dev, 0x0000007fffffffffULL)) { | 2936 | if (pci_set_dma_mask(pci_dev, DMA_39BIT_MASK)) { |
2936 | printk(KERN_INFO "forcedeth: 64-bit DMA failed, using 32-bit addressing for device %s.\n", | 2937 | printk(KERN_INFO "forcedeth: 64-bit DMA failed, using 32-bit addressing for device %s.\n", |
2937 | pci_name(pci_dev)); | 2938 | pci_name(pci_dev)); |
2938 | } else { | 2939 | } else { |
diff --git a/drivers/net/ioc3-eth.c b/drivers/net/ioc3-eth.c index 9b8295ee06ef..ae71ed57c12d 100644 --- a/drivers/net/ioc3-eth.c +++ b/drivers/net/ioc3-eth.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/ip.h> | 44 | #include <linux/ip.h> |
45 | #include <linux/tcp.h> | 45 | #include <linux/tcp.h> |
46 | #include <linux/udp.h> | 46 | #include <linux/udp.h> |
47 | #include <linux/dma-mapping.h> | ||
47 | 48 | ||
48 | #ifdef CONFIG_SERIAL_8250 | 49 | #ifdef CONFIG_SERIAL_8250 |
49 | #include <linux/serial_core.h> | 50 | #include <linux/serial_core.h> |
@@ -1195,17 +1196,17 @@ static int ioc3_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
1195 | int err, pci_using_dac; | 1196 | int err, pci_using_dac; |
1196 | 1197 | ||
1197 | /* Configure DMA attributes. */ | 1198 | /* Configure DMA attributes. */ |
1198 | err = pci_set_dma_mask(pdev, 0xffffffffffffffffULL); | 1199 | err = pci_set_dma_mask(pdev, DMA_64BIT_MASK); |
1199 | if (!err) { | 1200 | if (!err) { |
1200 | pci_using_dac = 1; | 1201 | pci_using_dac = 1; |
1201 | err = pci_set_consistent_dma_mask(pdev, 0xffffffffffffffffULL); | 1202 | err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK); |
1202 | if (err < 0) { | 1203 | if (err < 0) { |
1203 | printk(KERN_ERR "%s: Unable to obtain 64 bit DMA " | 1204 | printk(KERN_ERR "%s: Unable to obtain 64 bit DMA " |
1204 | "for consistent allocations\n", pci_name(pdev)); | 1205 | "for consistent allocations\n", pci_name(pdev)); |
1205 | goto out; | 1206 | goto out; |
1206 | } | 1207 | } |
1207 | } else { | 1208 | } else { |
1208 | err = pci_set_dma_mask(pdev, 0xffffffffULL); | 1209 | err = pci_set_dma_mask(pdev, DMA_32BIT_MASK); |
1209 | if (err) { | 1210 | if (err) { |
1210 | printk(KERN_ERR "%s: No usable DMA configuration, " | 1211 | printk(KERN_ERR "%s: No usable DMA configuration, " |
1211 | "aborting.\n", pci_name(pdev)); | 1212 | "aborting.\n", pci_name(pdev)); |
diff --git a/drivers/net/irda/nsc-ircc.c b/drivers/net/irda/nsc-ircc.c index 83141a3ff546..cc7ff8f00e42 100644 --- a/drivers/net/irda/nsc-ircc.c +++ b/drivers/net/irda/nsc-ircc.c | |||
@@ -207,7 +207,7 @@ static int __init nsc_ircc_init(void) | |||
207 | /* Register with PnP subsystem to detect disable ports */ | 207 | /* Register with PnP subsystem to detect disable ports */ |
208 | ret = pnp_register_driver(&nsc_ircc_pnp_driver); | 208 | ret = pnp_register_driver(&nsc_ircc_pnp_driver); |
209 | 209 | ||
210 | if (ret >= 0) | 210 | if (!ret) |
211 | pnp_registered = 1; | 211 | pnp_registered = 1; |
212 | 212 | ||
213 | ret = -ENODEV; | 213 | ret = -ENODEV; |
@@ -812,7 +812,7 @@ static int nsc_ircc_init_39x(nsc_chip_t *chip, chipio_t *info) | |||
812 | int cfg_base = info->cfg_base; | 812 | int cfg_base = info->cfg_base; |
813 | int enabled; | 813 | int enabled; |
814 | 814 | ||
815 | /* User is shure about his config... accept it. */ | 815 | /* User is sure about his config... accept it. */ |
816 | IRDA_DEBUG(2, "%s(): nsc_ircc_init_39x (user settings): " | 816 | IRDA_DEBUG(2, "%s(): nsc_ircc_init_39x (user settings): " |
817 | "io=0x%04x, irq=%d, dma=%d\n", | 817 | "io=0x%04x, irq=%d, dma=%d\n", |
818 | __FUNCTION__, info->fir_base, info->irq, info->dma); | 818 | __FUNCTION__, info->fir_base, info->irq, info->dma); |
diff --git a/drivers/net/loopback.c b/drivers/net/loopback.c index 0c13795dca38..b79d6e8d3045 100644 --- a/drivers/net/loopback.c +++ b/drivers/net/loopback.c | |||
@@ -172,7 +172,7 @@ static struct net_device_stats *get_stats(struct net_device *dev) | |||
172 | 172 | ||
173 | memset(stats, 0, sizeof(struct net_device_stats)); | 173 | memset(stats, 0, sizeof(struct net_device_stats)); |
174 | 174 | ||
175 | for_each_cpu(i) { | 175 | for_each_possible_cpu(i) { |
176 | struct net_device_stats *lb_stats; | 176 | struct net_device_stats *lb_stats; |
177 | 177 | ||
178 | lb_stats = &per_cpu(loopback_stats, i); | 178 | lb_stats = &per_cpu(loopback_stats, i); |
diff --git a/drivers/net/ns83820.c b/drivers/net/ns83820.c index 0fede50abd3e..8e9b1a537dee 100644 --- a/drivers/net/ns83820.c +++ b/drivers/net/ns83820.c | |||
@@ -1828,10 +1828,10 @@ static int __devinit ns83820_init_one(struct pci_dev *pci_dev, const struct pci_ | |||
1828 | int using_dac = 0; | 1828 | int using_dac = 0; |
1829 | 1829 | ||
1830 | /* See if we can set the dma mask early on; failure is fatal. */ | 1830 | /* See if we can set the dma mask early on; failure is fatal. */ |
1831 | if (sizeof(dma_addr_t) == 8 && | 1831 | if (sizeof(dma_addr_t) == 8 && |
1832 | !pci_set_dma_mask(pci_dev, 0xffffffffffffffffULL)) { | 1832 | !pci_set_dma_mask(pci_dev, DMA_64BIT_MASK)) { |
1833 | using_dac = 1; | 1833 | using_dac = 1; |
1834 | } else if (!pci_set_dma_mask(pci_dev, 0xffffffff)) { | 1834 | } else if (!pci_set_dma_mask(pci_dev, DMA_32BIT_MASK)) { |
1835 | using_dac = 0; | 1835 | using_dac = 0; |
1836 | } else { | 1836 | } else { |
1837 | printk(KERN_WARNING "ns83820.c: pci_set_dma_mask failed!\n"); | 1837 | printk(KERN_WARNING "ns83820.c: pci_set_dma_mask failed!\n"); |
diff --git a/drivers/net/sis900.c b/drivers/net/sis900.c index 8429ceb01389..b82191d2bee1 100644 --- a/drivers/net/sis900.c +++ b/drivers/net/sis900.c | |||
@@ -2283,7 +2283,7 @@ static void set_rx_mode(struct net_device *net_dev) | |||
2283 | int i, table_entries; | 2283 | int i, table_entries; |
2284 | u32 rx_mode; | 2284 | u32 rx_mode; |
2285 | 2285 | ||
2286 | /* 635 Hash Table entires = 256(2^16) */ | 2286 | /* 635 Hash Table entries = 256(2^16) */ |
2287 | if((sis_priv->chipset_rev >= SIS635A_900_REV) || | 2287 | if((sis_priv->chipset_rev >= SIS635A_900_REV) || |
2288 | (sis_priv->chipset_rev == SIS900B_900_REV)) | 2288 | (sis_priv->chipset_rev == SIS900B_900_REV)) |
2289 | table_entries = 16; | 2289 | table_entries = 16; |
diff --git a/drivers/net/tulip/de4x5.c b/drivers/net/tulip/de4x5.c index 46d087c5467b..f56094102042 100644 --- a/drivers/net/tulip/de4x5.c +++ b/drivers/net/tulip/de4x5.c | |||
@@ -513,7 +513,7 @@ struct mii_phy { | |||
513 | u_char *rst; /* Start of reset sequence in SROM */ | 513 | u_char *rst; /* Start of reset sequence in SROM */ |
514 | u_int mc; /* Media Capabilities */ | 514 | u_int mc; /* Media Capabilities */ |
515 | u_int ana; /* NWay Advertisement */ | 515 | u_int ana; /* NWay Advertisement */ |
516 | u_int fdx; /* Full DupleX capabilites for each media */ | 516 | u_int fdx; /* Full DupleX capabilities for each media */ |
517 | u_int ttm; /* Transmit Threshold Mode for each media */ | 517 | u_int ttm; /* Transmit Threshold Mode for each media */ |
518 | u_int mci; /* 21142 MII Connector Interrupt info */ | 518 | u_int mci; /* 21142 MII Connector Interrupt info */ |
519 | }; | 519 | }; |
diff --git a/drivers/net/tulip/pnic2.c b/drivers/net/tulip/pnic2.c index 55f4a9a631bc..ab985023fcca 100644 --- a/drivers/net/tulip/pnic2.c +++ b/drivers/net/tulip/pnic2.c | |||
@@ -199,7 +199,7 @@ void pnic2_lnk_change(struct net_device *dev, int csr5) | |||
199 | /* negotiation ended successfully */ | 199 | /* negotiation ended successfully */ |
200 | 200 | ||
201 | /* get the link partners reply and mask out all but | 201 | /* get the link partners reply and mask out all but |
202 | * bits 24-21 which show the partners capabilites | 202 | * bits 24-21 which show the partners capabilities |
203 | * and match those to what we advertised | 203 | * and match those to what we advertised |
204 | * | 204 | * |
205 | * then begin to interpret the results of the negotiation. | 205 | * then begin to interpret the results of the negotiation. |
diff --git a/drivers/net/typhoon.c b/drivers/net/typhoon.c index cde35dd87906..c1ce87a5f8d3 100644 --- a/drivers/net/typhoon.c +++ b/drivers/net/typhoon.c | |||
@@ -208,7 +208,7 @@ static const struct typhoon_card_info typhoon_card_info[] __devinitdata = { | |||
208 | }; | 208 | }; |
209 | 209 | ||
210 | /* Notes on the new subsystem numbering scheme: | 210 | /* Notes on the new subsystem numbering scheme: |
211 | * bits 0-1 indicate crypto capabilites: (0) variable, (1) DES, or (2) 3DES | 211 | * bits 0-1 indicate crypto capabilities: (0) variable, (1) DES, or (2) 3DES |
212 | * bit 4 indicates if this card has secured firmware (we don't support it) | 212 | * bit 4 indicates if this card has secured firmware (we don't support it) |
213 | * bit 8 indicates if this is a (0) copper or (1) fiber card | 213 | * bit 8 indicates if this is a (0) copper or (1) fiber card |
214 | * bits 12-16 indicate card type: (0) client and (1) server | 214 | * bits 12-16 indicate card type: (0) client and (1) server |
@@ -788,7 +788,7 @@ typhoon_start_tx(struct sk_buff *skb, struct net_device *dev) | |||
788 | /* we have two rings to choose from, but we only use txLo for now | 788 | /* we have two rings to choose from, but we only use txLo for now |
789 | * If we start using the Hi ring as well, we'll need to update | 789 | * If we start using the Hi ring as well, we'll need to update |
790 | * typhoon_stop_runtime(), typhoon_interrupt(), typhoon_num_free_tx(), | 790 | * typhoon_stop_runtime(), typhoon_interrupt(), typhoon_num_free_tx(), |
791 | * and TXHI_ENTIRES to match, as well as update the TSO code below | 791 | * and TXHI_ENTRIES to match, as well as update the TSO code below |
792 | * to get the right DMA address | 792 | * to get the right DMA address |
793 | */ | 793 | */ |
794 | txRing = &tp->txLoRing; | 794 | txRing = &tp->txLoRing; |
diff --git a/drivers/net/wan/wanxl.c b/drivers/net/wan/wanxl.c index 9d3b51c3ef54..29a756dd979b 100644 --- a/drivers/net/wan/wanxl.c +++ b/drivers/net/wan/wanxl.c | |||
@@ -577,8 +577,8 @@ static int __devinit wanxl_pci_init_one(struct pci_dev *pdev, | |||
577 | We set both dma_mask and consistent_dma_mask to 28 bits | 577 | We set both dma_mask and consistent_dma_mask to 28 bits |
578 | and pray pci_alloc_consistent() will use this info. It should | 578 | and pray pci_alloc_consistent() will use this info. It should |
579 | work on most platforms */ | 579 | work on most platforms */ |
580 | if (pci_set_consistent_dma_mask(pdev, 0x0FFFFFFF) || | 580 | if (pci_set_consistent_dma_mask(pdev, DMA_28BIT_MASK) || |
581 | pci_set_dma_mask(pdev, 0x0FFFFFFF)) { | 581 | pci_set_dma_mask(pdev, DMA_28BIT_MASK)) { |
582 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); | 582 | printk(KERN_ERR "wanXL: No usable DMA configuration\n"); |
583 | return -EIO; | 583 | return -EIO; |
584 | } | 584 | } |
diff --git a/drivers/net/wireless/orinoco.c b/drivers/net/wireless/orinoco.c index 6fd0bf736830..8dfdfbd5966c 100644 --- a/drivers/net/wireless/orinoco.c +++ b/drivers/net/wireless/orinoco.c | |||
@@ -3858,7 +3858,7 @@ static int orinoco_ioctl_setscan(struct net_device *dev, | |||
3858 | unsigned long flags; | 3858 | unsigned long flags; |
3859 | 3859 | ||
3860 | /* Note : you may have realised that, as this is a SET operation, | 3860 | /* Note : you may have realised that, as this is a SET operation, |
3861 | * this is priviledged and therefore a normal user can't | 3861 | * this is privileged and therefore a normal user can't |
3862 | * perform scanning. | 3862 | * perform scanning. |
3863 | * This is not an error, while the device perform scanning, | 3863 | * This is not an error, while the device perform scanning, |
3864 | * traffic doesn't flow, so it's a perfect DoS... | 3864 | * traffic doesn't flow, so it's a perfect DoS... |
diff --git a/drivers/net/wireless/prism54/isl_ioctl.c b/drivers/net/wireless/prism54/isl_ioctl.c index e5bb9f5ae429..989599ad33ef 100644 --- a/drivers/net/wireless/prism54/isl_ioctl.c +++ b/drivers/net/wireless/prism54/isl_ioctl.c | |||
@@ -747,7 +747,7 @@ prism54_get_essid(struct net_device *ndev, struct iw_request_info *info, | |||
747 | 747 | ||
748 | if (essid->length) { | 748 | if (essid->length) { |
749 | dwrq->flags = 1; /* set ESSID to ON for Wireless Extensions */ | 749 | dwrq->flags = 1; /* set ESSID to ON for Wireless Extensions */ |
750 | /* if it is to big, trunk it */ | 750 | /* if it is too big, trunk it */ |
751 | dwrq->length = min((u8)IW_ESSID_MAX_SIZE, essid->length); | 751 | dwrq->length = min((u8)IW_ESSID_MAX_SIZE, essid->length); |
752 | } else { | 752 | } else { |
753 | dwrq->flags = 0; | 753 | dwrq->flags = 0; |
diff --git a/drivers/net/wireless/prism54/islpci_hotplug.c b/drivers/net/wireless/prism54/islpci_hotplug.c index b41d666fea3c..bfa0cc319a09 100644 --- a/drivers/net/wireless/prism54/islpci_hotplug.c +++ b/drivers/net/wireless/prism54/islpci_hotplug.c | |||
@@ -22,6 +22,7 @@ | |||
22 | #include <linux/pci.h> | 22 | #include <linux/pci.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/init.h> /* For __init, __exit */ | 24 | #include <linux/init.h> /* For __init, __exit */ |
25 | #include <linux/dma-mapping.h> | ||
25 | 26 | ||
26 | #include "prismcompat.h" | 27 | #include "prismcompat.h" |
27 | #include "islpci_dev.h" | 28 | #include "islpci_dev.h" |
@@ -124,7 +125,7 @@ prism54_probe(struct pci_dev *pdev, const struct pci_device_id *id) | |||
124 | } | 125 | } |
125 | 126 | ||
126 | /* enable PCI DMA */ | 127 | /* enable PCI DMA */ |
127 | if (pci_set_dma_mask(pdev, 0xffffffff)) { | 128 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { |
128 | printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME); | 129 | printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME); |
129 | goto do_pci_disable_device; | 130 | goto do_pci_disable_device; |
130 | } | 131 | } |
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index 330d3869b41e..fc4bc9b94c74 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
@@ -217,11 +217,10 @@ static void oprofile_end_trace(struct oprofile_cpu_buffer * cpu_buf) | |||
217 | cpu_buf->tracing = 0; | 217 | cpu_buf->tracing = 0; |
218 | } | 218 | } |
219 | 219 | ||
220 | void oprofile_add_sample(struct pt_regs * const regs, unsigned long event) | 220 | void oprofile_add_ext_sample(unsigned long pc, struct pt_regs * const regs, |
221 | unsigned long event, int is_kernel) | ||
221 | { | 222 | { |
222 | struct oprofile_cpu_buffer * cpu_buf = &cpu_buffer[smp_processor_id()]; | 223 | struct oprofile_cpu_buffer * cpu_buf = &cpu_buffer[smp_processor_id()]; |
223 | unsigned long pc = profile_pc(regs); | ||
224 | int is_kernel = !user_mode(regs); | ||
225 | 224 | ||
226 | if (!backtrace_depth) { | 225 | if (!backtrace_depth) { |
227 | log_sample(cpu_buf, pc, is_kernel, event); | 226 | log_sample(cpu_buf, pc, is_kernel, event); |
@@ -238,6 +237,14 @@ void oprofile_add_sample(struct pt_regs * const regs, unsigned long event) | |||
238 | oprofile_end_trace(cpu_buf); | 237 | oprofile_end_trace(cpu_buf); |
239 | } | 238 | } |
240 | 239 | ||
240 | void oprofile_add_sample(struct pt_regs * const regs, unsigned long event) | ||
241 | { | ||
242 | int is_kernel = !user_mode(regs); | ||
243 | unsigned long pc = profile_pc(regs); | ||
244 | |||
245 | oprofile_add_ext_sample(pc, regs, event, is_kernel); | ||
246 | } | ||
247 | |||
241 | void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event) | 248 | void oprofile_add_pc(unsigned long pc, int is_kernel, unsigned long event) |
242 | { | 249 | { |
243 | struct oprofile_cpu_buffer * cpu_buf = &cpu_buffer[smp_processor_id()]; | 250 | struct oprofile_cpu_buffer * cpu_buf = &cpu_buffer[smp_processor_id()]; |
diff --git a/drivers/oprofile/oprofile_stats.c b/drivers/oprofile/oprofile_stats.c index e94b1e4a2a84..f0acb661c253 100644 --- a/drivers/oprofile/oprofile_stats.c +++ b/drivers/oprofile/oprofile_stats.c | |||
@@ -22,7 +22,7 @@ void oprofile_reset_stats(void) | |||
22 | struct oprofile_cpu_buffer * cpu_buf; | 22 | struct oprofile_cpu_buffer * cpu_buf; |
23 | int i; | 23 | int i; |
24 | 24 | ||
25 | for_each_cpu(i) { | 25 | for_each_possible_cpu(i) { |
26 | cpu_buf = &cpu_buffer[i]; | 26 | cpu_buf = &cpu_buffer[i]; |
27 | cpu_buf->sample_received = 0; | 27 | cpu_buf->sample_received = 0; |
28 | cpu_buf->sample_lost_overflow = 0; | 28 | cpu_buf->sample_lost_overflow = 0; |
@@ -46,7 +46,7 @@ void oprofile_create_stats_files(struct super_block * sb, struct dentry * root) | |||
46 | if (!dir) | 46 | if (!dir) |
47 | return; | 47 | return; |
48 | 48 | ||
49 | for_each_cpu(i) { | 49 | for_each_possible_cpu(i) { |
50 | cpu_buf = &cpu_buffer[i]; | 50 | cpu_buf = &cpu_buffer[i]; |
51 | snprintf(buf, 10, "cpu%d", i); | 51 | snprintf(buf, 10, "cpu%d", i); |
52 | cpudir = oprofilefs_mkdir(sb, dir, buf); | 52 | cpudir = oprofilefs_mkdir(sb, dir, buf); |
diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c index d6bae699749a..b62da9b0cbf0 100644 --- a/drivers/oprofile/oprofilefs.c +++ b/drivers/oprofile/oprofilefs.c | |||
@@ -130,7 +130,7 @@ static struct file_operations ulong_ro_fops = { | |||
130 | 130 | ||
131 | 131 | ||
132 | static struct dentry * __oprofilefs_create_file(struct super_block * sb, | 132 | static struct dentry * __oprofilefs_create_file(struct super_block * sb, |
133 | struct dentry * root, char const * name, struct file_operations * fops, | 133 | struct dentry * root, char const * name, const struct file_operations * fops, |
134 | int perm) | 134 | int perm) |
135 | { | 135 | { |
136 | struct dentry * dentry; | 136 | struct dentry * dentry; |
@@ -203,7 +203,7 @@ int oprofilefs_create_ro_atomic(struct super_block * sb, struct dentry * root, | |||
203 | 203 | ||
204 | 204 | ||
205 | int oprofilefs_create_file(struct super_block * sb, struct dentry * root, | 205 | int oprofilefs_create_file(struct super_block * sb, struct dentry * root, |
206 | char const * name, struct file_operations * fops) | 206 | char const * name, const struct file_operations * fops) |
207 | { | 207 | { |
208 | if (!__oprofilefs_create_file(sb, root, name, fops, 0644)) | 208 | if (!__oprofilefs_create_file(sb, root, name, fops, 0644)) |
209 | return -EFAULT; | 209 | return -EFAULT; |
@@ -212,7 +212,7 @@ int oprofilefs_create_file(struct super_block * sb, struct dentry * root, | |||
212 | 212 | ||
213 | 213 | ||
214 | int oprofilefs_create_file_perm(struct super_block * sb, struct dentry * root, | 214 | int oprofilefs_create_file_perm(struct super_block * sb, struct dentry * root, |
215 | char const * name, struct file_operations * fops, int perm) | 215 | char const * name, const struct file_operations * fops, int perm) |
216 | { | 216 | { |
217 | if (!__oprofilefs_create_file(sb, root, name, fops, perm)) | 217 | if (!__oprofilefs_create_file(sb, root, name, fops, perm)) |
218 | return -EFAULT; | 218 | return -EFAULT; |
diff --git a/drivers/parisc/led.c b/drivers/parisc/led.c index 3627a2d7f79f..298f2ddb2c17 100644 --- a/drivers/parisc/led.c +++ b/drivers/parisc/led.c | |||
@@ -499,11 +499,16 @@ static int led_halt(struct notifier_block *, unsigned long, void *); | |||
499 | static struct notifier_block led_notifier = { | 499 | static struct notifier_block led_notifier = { |
500 | .notifier_call = led_halt, | 500 | .notifier_call = led_halt, |
501 | }; | 501 | }; |
502 | static int notifier_disabled = 0; | ||
502 | 503 | ||
503 | static int led_halt(struct notifier_block *nb, unsigned long event, void *buf) | 504 | static int led_halt(struct notifier_block *nb, unsigned long event, void *buf) |
504 | { | 505 | { |
505 | char *txt; | 506 | char *txt; |
506 | 507 | ||
508 | if (notifier_disabled) | ||
509 | return NOTIFY_OK; | ||
510 | |||
511 | notifier_disabled = 1; | ||
507 | switch (event) { | 512 | switch (event) { |
508 | case SYS_RESTART: txt = "SYSTEM RESTART"; | 513 | case SYS_RESTART: txt = "SYSTEM RESTART"; |
509 | break; | 514 | break; |
@@ -527,7 +532,6 @@ static int led_halt(struct notifier_block *nb, unsigned long event, void *buf) | |||
527 | if (led_func_ptr) | 532 | if (led_func_ptr) |
528 | led_func_ptr(0xff); /* turn all LEDs ON */ | 533 | led_func_ptr(0xff); /* turn all LEDs ON */ |
529 | 534 | ||
530 | unregister_reboot_notifier(&led_notifier); | ||
531 | return NOTIFY_OK; | 535 | return NOTIFY_OK; |
532 | } | 536 | } |
533 | 537 | ||
@@ -758,6 +762,12 @@ not_found: | |||
758 | return 1; | 762 | return 1; |
759 | } | 763 | } |
760 | 764 | ||
765 | static void __exit led_exit(void) | ||
766 | { | ||
767 | unregister_reboot_notifier(&led_notifier); | ||
768 | return; | ||
769 | } | ||
770 | |||
761 | #ifdef CONFIG_PROC_FS | 771 | #ifdef CONFIG_PROC_FS |
762 | module_init(led_create_procfs) | 772 | module_init(led_create_procfs) |
763 | #endif | 773 | #endif |
diff --git a/drivers/parisc/power.c b/drivers/parisc/power.c index 54b2b7f20b96..0bcab83b4080 100644 --- a/drivers/parisc/power.c +++ b/drivers/parisc/power.c | |||
@@ -251,7 +251,8 @@ static int __init power_init(void) | |||
251 | } | 251 | } |
252 | 252 | ||
253 | /* Register a call for panic conditions. */ | 253 | /* Register a call for panic conditions. */ |
254 | notifier_chain_register(&panic_notifier_list, &parisc_panic_block); | 254 | atomic_notifier_chain_register(&panic_notifier_list, |
255 | &parisc_panic_block); | ||
255 | 256 | ||
256 | tasklet_enable(&power_tasklet); | 257 | tasklet_enable(&power_tasklet); |
257 | 258 | ||
@@ -264,7 +265,8 @@ static void __exit power_exit(void) | |||
264 | return; | 265 | return; |
265 | 266 | ||
266 | tasklet_disable(&power_tasklet); | 267 | tasklet_disable(&power_tasklet); |
267 | notifier_chain_unregister(&panic_notifier_list, &parisc_panic_block); | 268 | atomic_notifier_chain_unregister(&panic_notifier_list, |
269 | &parisc_panic_block); | ||
268 | power_tasklet.func = NULL; | 270 | power_tasklet.func = NULL; |
269 | pdc_soft_power_button(0); | 271 | pdc_soft_power_button(0); |
270 | } | 272 | } |
diff --git a/drivers/parport/parport_pc.c b/drivers/parport/parport_pc.c index 9302b8fd7461..d5890027f8af 100644 --- a/drivers/parport/parport_pc.c +++ b/drivers/parport/parport_pc.c | |||
@@ -3126,9 +3126,9 @@ parport_pc_find_isa_ports (int autoirq, int autodma) | |||
3126 | * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY | 3126 | * autoirq is PARPORT_IRQ_NONE, PARPORT_IRQ_AUTO, or PARPORT_IRQ_PROBEONLY |
3127 | * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO | 3127 | * autodma is PARPORT_DMA_NONE or PARPORT_DMA_AUTO |
3128 | */ | 3128 | */ |
3129 | static int __init parport_pc_find_ports (int autoirq, int autodma) | 3129 | static void __init parport_pc_find_ports (int autoirq, int autodma) |
3130 | { | 3130 | { |
3131 | int count = 0, r; | 3131 | int count = 0, err; |
3132 | 3132 | ||
3133 | #ifdef CONFIG_PARPORT_PC_SUPERIO | 3133 | #ifdef CONFIG_PARPORT_PC_SUPERIO |
3134 | detect_and_report_winbond (); | 3134 | detect_and_report_winbond (); |
@@ -3140,23 +3140,17 @@ static int __init parport_pc_find_ports (int autoirq, int autodma) | |||
3140 | 3140 | ||
3141 | /* PnP ports, skip detection if SuperIO already found them */ | 3141 | /* PnP ports, skip detection if SuperIO already found them */ |
3142 | if (!count) { | 3142 | if (!count) { |
3143 | r = pnp_register_driver (&parport_pc_pnp_driver); | 3143 | err = pnp_register_driver (&parport_pc_pnp_driver); |
3144 | if (r >= 0) { | 3144 | if (!err) |
3145 | pnp_registered_parport = 1; | 3145 | pnp_registered_parport = 1; |
3146 | count += r; | ||
3147 | } | ||
3148 | } | 3146 | } |
3149 | 3147 | ||
3150 | /* ISA ports and whatever (see asm/parport.h). */ | 3148 | /* ISA ports and whatever (see asm/parport.h). */ |
3151 | count += parport_pc_find_nonpci_ports (autoirq, autodma); | 3149 | parport_pc_find_nonpci_ports (autoirq, autodma); |
3152 | |||
3153 | r = pci_register_driver (&parport_pc_pci_driver); | ||
3154 | if (r) | ||
3155 | return r; | ||
3156 | pci_registered_parport = 1; | ||
3157 | count += 1; | ||
3158 | 3150 | ||
3159 | return count; | 3151 | err = pci_register_driver (&parport_pc_pci_driver); |
3152 | if (!err) | ||
3153 | pci_registered_parport = 1; | ||
3160 | } | 3154 | } |
3161 | 3155 | ||
3162 | /* | 3156 | /* |
@@ -3381,8 +3375,6 @@ __setup("parport_init_mode=",parport_init_mode_setup); | |||
3381 | 3375 | ||
3382 | static int __init parport_pc_init(void) | 3376 | static int __init parport_pc_init(void) |
3383 | { | 3377 | { |
3384 | int count = 0; | ||
3385 | |||
3386 | if (parse_parport_params()) | 3378 | if (parse_parport_params()) |
3387 | return -EINVAL; | 3379 | return -EINVAL; |
3388 | 3380 | ||
@@ -3395,12 +3387,11 @@ static int __init parport_pc_init(void) | |||
3395 | break; | 3387 | break; |
3396 | if ((io_hi[i]) == PARPORT_IOHI_AUTO) | 3388 | if ((io_hi[i]) == PARPORT_IOHI_AUTO) |
3397 | io_hi[i] = 0x400 + io[i]; | 3389 | io_hi[i] = 0x400 + io[i]; |
3398 | if (parport_pc_probe_port(io[i], io_hi[i], | 3390 | parport_pc_probe_port(io[i], io_hi[i], |
3399 | irqval[i], dmaval[i], NULL)) | 3391 | irqval[i], dmaval[i], NULL); |
3400 | count++; | ||
3401 | } | 3392 | } |
3402 | } else | 3393 | } else |
3403 | count += parport_pc_find_ports (irqval[0], dmaval[0]); | 3394 | parport_pc_find_ports (irqval[0], dmaval[0]); |
3404 | 3395 | ||
3405 | return 0; | 3396 | return 0; |
3406 | } | 3397 | } |
diff --git a/drivers/pnp/card.c b/drivers/pnp/card.c index b68eef251614..bb19c64073c6 100644 --- a/drivers/pnp/card.c +++ b/drivers/pnp/card.c | |||
@@ -47,7 +47,7 @@ static void card_remove(struct pnp_dev * dev) | |||
47 | { | 47 | { |
48 | dev->card_link = NULL; | 48 | dev->card_link = NULL; |
49 | } | 49 | } |
50 | 50 | ||
51 | static void card_remove_first(struct pnp_dev * dev) | 51 | static void card_remove_first(struct pnp_dev * dev) |
52 | { | 52 | { |
53 | struct pnp_card_driver * drv = to_pnp_card_driver(dev->driver); | 53 | struct pnp_card_driver * drv = to_pnp_card_driver(dev->driver); |
@@ -361,7 +361,7 @@ static int card_resume(struct pnp_dev *dev) | |||
361 | 361 | ||
362 | int pnp_register_card_driver(struct pnp_card_driver * drv) | 362 | int pnp_register_card_driver(struct pnp_card_driver * drv) |
363 | { | 363 | { |
364 | int count; | 364 | int error; |
365 | struct list_head *pos, *temp; | 365 | struct list_head *pos, *temp; |
366 | 366 | ||
367 | drv->link.name = drv->name; | 367 | drv->link.name = drv->name; |
@@ -372,21 +372,19 @@ int pnp_register_card_driver(struct pnp_card_driver * drv) | |||
372 | drv->link.suspend = drv->suspend ? card_suspend : NULL; | 372 | drv->link.suspend = drv->suspend ? card_suspend : NULL; |
373 | drv->link.resume = drv->resume ? card_resume : NULL; | 373 | drv->link.resume = drv->resume ? card_resume : NULL; |
374 | 374 | ||
375 | count = pnp_register_driver(&drv->link); | 375 | error = pnp_register_driver(&drv->link); |
376 | if (count < 0) | 376 | if (error < 0) |
377 | return count; | 377 | return error; |
378 | 378 | ||
379 | spin_lock(&pnp_lock); | 379 | spin_lock(&pnp_lock); |
380 | list_add_tail(&drv->global_list, &pnp_card_drivers); | 380 | list_add_tail(&drv->global_list, &pnp_card_drivers); |
381 | spin_unlock(&pnp_lock); | 381 | spin_unlock(&pnp_lock); |
382 | 382 | ||
383 | count = 0; | ||
384 | |||
385 | list_for_each_safe(pos,temp,&pnp_cards){ | 383 | list_for_each_safe(pos,temp,&pnp_cards){ |
386 | struct pnp_card *card = list_entry(pos, struct pnp_card, global_list); | 384 | struct pnp_card *card = list_entry(pos, struct pnp_card, global_list); |
387 | count += card_probe(card,drv); | 385 | card_probe(card,drv); |
388 | } | 386 | } |
389 | return count; | 387 | return 0; |
390 | } | 388 | } |
391 | 389 | ||
392 | /** | 390 | /** |
diff --git a/drivers/pnp/driver.c b/drivers/pnp/driver.c index 7cafacdd12b0..e54c15383193 100644 --- a/drivers/pnp/driver.c +++ b/drivers/pnp/driver.c | |||
@@ -201,31 +201,14 @@ struct bus_type pnp_bus_type = { | |||
201 | .resume = pnp_bus_resume, | 201 | .resume = pnp_bus_resume, |
202 | }; | 202 | }; |
203 | 203 | ||
204 | |||
205 | static int count_devices(struct device * dev, void * c) | ||
206 | { | ||
207 | int * count = c; | ||
208 | (*count)++; | ||
209 | return 0; | ||
210 | } | ||
211 | |||
212 | int pnp_register_driver(struct pnp_driver *drv) | 204 | int pnp_register_driver(struct pnp_driver *drv) |
213 | { | 205 | { |
214 | int count; | ||
215 | |||
216 | pnp_dbg("the driver '%s' has been registered", drv->name); | 206 | pnp_dbg("the driver '%s' has been registered", drv->name); |
217 | 207 | ||
218 | drv->driver.name = drv->name; | 208 | drv->driver.name = drv->name; |
219 | drv->driver.bus = &pnp_bus_type; | 209 | drv->driver.bus = &pnp_bus_type; |
220 | 210 | ||
221 | count = driver_register(&drv->driver); | 211 | return driver_register(&drv->driver); |
222 | |||
223 | /* get the number of initial matches */ | ||
224 | if (count >= 0){ | ||
225 | count = 0; | ||
226 | driver_for_each_device(&drv->driver, NULL, &count, count_devices); | ||
227 | } | ||
228 | return count; | ||
229 | } | 212 | } |
230 | 213 | ||
231 | void pnp_unregister_driver(struct pnp_driver *drv) | 214 | void pnp_unregister_driver(struct pnp_driver *drv) |
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig new file mode 100644 index 000000000000..929dd8090578 --- /dev/null +++ b/drivers/rtc/Kconfig | |||
@@ -0,0 +1,165 @@ | |||
1 | \# | ||
2 | # RTC class/drivers configuration | ||
3 | # | ||
4 | |||
5 | menu "Real Time Clock" | ||
6 | |||
7 | config RTC_LIB | ||
8 | tristate | ||
9 | |||
10 | config RTC_CLASS | ||
11 | tristate "RTC class" | ||
12 | depends on EXPERIMENTAL | ||
13 | default n | ||
14 | select RTC_LIB | ||
15 | help | ||
16 | Generic RTC class support. If you say yes here, you will | ||
17 | be allowed to plug one or more RTCs to your system. You will | ||
18 | probably want to enable one of more of the interfaces below. | ||
19 | |||
20 | This driver can also be built as a module. If so, the module | ||
21 | will be called rtc-class. | ||
22 | |||
23 | config RTC_HCTOSYS | ||
24 | bool "Set system time from RTC on startup" | ||
25 | depends on RTC_CLASS = y | ||
26 | default y | ||
27 | help | ||
28 | If you say yes here, the system time will be set using | ||
29 | the value read from the specified RTC device. This is useful | ||
30 | in order to avoid unnecessary fschk runs. | ||
31 | |||
32 | config RTC_HCTOSYS_DEVICE | ||
33 | string "The RTC to read the time from" | ||
34 | depends on RTC_HCTOSYS = y | ||
35 | default "rtc0" | ||
36 | help | ||
37 | The RTC device that will be used as the source for | ||
38 | the system time, usually rtc0. | ||
39 | |||
40 | comment "RTC interfaces" | ||
41 | depends on RTC_CLASS | ||
42 | |||
43 | config RTC_INTF_SYSFS | ||
44 | tristate "sysfs" | ||
45 | depends on RTC_CLASS && SYSFS | ||
46 | default RTC_CLASS | ||
47 | help | ||
48 | Say yes here if you want to use your RTC using the sysfs | ||
49 | interface, /sys/class/rtc/rtcX . | ||
50 | |||
51 | This driver can also be built as a module. If so, the module | ||
52 | will be called rtc-sysfs. | ||
53 | |||
54 | config RTC_INTF_PROC | ||
55 | tristate "proc" | ||
56 | depends on RTC_CLASS && PROC_FS | ||
57 | default RTC_CLASS | ||
58 | help | ||
59 | Say yes here if you want to use your RTC using the proc | ||
60 | interface, /proc/driver/rtc . | ||
61 | |||
62 | This driver can also be built as a module. If so, the module | ||
63 | will be called rtc-proc. | ||
64 | |||
65 | config RTC_INTF_DEV | ||
66 | tristate "dev" | ||
67 | depends on RTC_CLASS | ||
68 | default RTC_CLASS | ||
69 | help | ||
70 | Say yes here if you want to use your RTC using the dev | ||
71 | interface, /dev/rtc . | ||
72 | |||
73 | This driver can also be built as a module. If so, the module | ||
74 | will be called rtc-dev. | ||
75 | |||
76 | comment "RTC drivers" | ||
77 | depends on RTC_CLASS | ||
78 | |||
79 | config RTC_DRV_X1205 | ||
80 | tristate "Xicor/Intersil X1205" | ||
81 | depends on RTC_CLASS && I2C | ||
82 | help | ||
83 | If you say yes here you get support for the | ||
84 | Xicor/Intersil X1205 RTC chip. | ||
85 | |||
86 | This driver can also be built as a module. If so, the module | ||
87 | will be called rtc-x1205. | ||
88 | |||
89 | config RTC_DRV_DS1672 | ||
90 | tristate "Dallas/Maxim DS1672" | ||
91 | depends on RTC_CLASS && I2C | ||
92 | help | ||
93 | If you say yes here you get support for the | ||
94 | Dallas/Maxim DS1672 timekeeping chip. | ||
95 | |||
96 | This driver can also be built as a module. If so, the module | ||
97 | will be called rtc-ds1672. | ||
98 | |||
99 | config RTC_DRV_PCF8563 | ||
100 | tristate "Philips PCF8563/Epson RTC8564" | ||
101 | depends on RTC_CLASS && I2C | ||
102 | help | ||
103 | If you say yes here you get support for the | ||
104 | Philips PCF8563 RTC chip. The Epson RTC8564 | ||
105 | should work as well. | ||
106 | |||
107 | This driver can also be built as a module. If so, the module | ||
108 | will be called rtc-pcf8563. | ||
109 | |||
110 | config RTC_DRV_RS5C372 | ||
111 | tristate "Ricoh RS5C372A/B" | ||
112 | depends on RTC_CLASS && I2C | ||
113 | help | ||
114 | If you say yes here you get support for the | ||
115 | Ricoh RS5C372A and RS5C372B RTC chips. | ||
116 | |||
117 | This driver can also be built as a module. If so, the module | ||
118 | will be called rtc-rs5c372. | ||
119 | |||
120 | config RTC_DRV_M48T86 | ||
121 | tristate "ST M48T86/Dallas DS12887" | ||
122 | depends on RTC_CLASS | ||
123 | help | ||
124 | If you say Y here you will get support for the | ||
125 | ST M48T86 and Dallas DS12887 RTC chips. | ||
126 | |||
127 | This driver can also be built as a module. If so, the module | ||
128 | will be called rtc-m48t86. | ||
129 | |||
130 | config RTC_DRV_EP93XX | ||
131 | tristate "Cirrus Logic EP93XX" | ||
132 | depends on RTC_CLASS && ARCH_EP93XX | ||
133 | help | ||
134 | If you say yes here you get support for the | ||
135 | RTC embedded in the Cirrus Logic EP93XX processors. | ||
136 | |||
137 | This driver can also be built as a module. If so, the module | ||
138 | will be called rtc-ep93xx. | ||
139 | |||
140 | config RTC_DRV_SA1100 | ||
141 | tristate "SA11x0/PXA2xx" | ||
142 | depends on RTC_CLASS && (ARCH_SA1100 || ARCH_PXA) | ||
143 | help | ||
144 | If you say Y here you will get access to the real time clock | ||
145 | built into your SA11x0 or PXA2xx CPU. | ||
146 | |||
147 | To compile this driver as a module, choose M here: the | ||
148 | module will be called rtc-sa1100. | ||
149 | |||
150 | config RTC_DRV_TEST | ||
151 | tristate "Test driver/device" | ||
152 | depends on RTC_CLASS | ||
153 | help | ||
154 | If you say yes here you get support for the | ||
155 | RTC test driver. It's a software RTC which can be | ||
156 | used to test the RTC subsystem APIs. It gets | ||
157 | the time from the system clock. | ||
158 | You want this driver only if you are doing development | ||
159 | on the RTC subsystem. Please read the source code | ||
160 | for further details. | ||
161 | |||
162 | This driver can also be built as a module. If so, the module | ||
163 | will be called rtc-test. | ||
164 | |||
165 | endmenu | ||
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile new file mode 100644 index 000000000000..8d4c7fe88d58 --- /dev/null +++ b/drivers/rtc/Makefile | |||
@@ -0,0 +1,21 @@ | |||
1 | # | ||
2 | # Makefile for RTC class/drivers. | ||
3 | # | ||
4 | |||
5 | obj-$(CONFIG_RTC_LIB) += rtc-lib.o | ||
6 | obj-$(CONFIG_RTC_HCTOSYS) += hctosys.o | ||
7 | obj-$(CONFIG_RTC_CLASS) += rtc-core.o | ||
8 | rtc-core-y := class.o interface.o | ||
9 | |||
10 | obj-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o | ||
11 | obj-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o | ||
12 | obj-$(CONFIG_RTC_INTF_DEV) += rtc-dev.o | ||
13 | |||
14 | obj-$(CONFIG_RTC_DRV_X1205) += rtc-x1205.o | ||
15 | obj-$(CONFIG_RTC_DRV_TEST) += rtc-test.o | ||
16 | obj-$(CONFIG_RTC_DRV_DS1672) += rtc-ds1672.o | ||
17 | obj-$(CONFIG_RTC_DRV_PCF8563) += rtc-pcf8563.o | ||
18 | obj-$(CONFIG_RTC_DRV_RS5C372) += rtc-rs5c372.o | ||
19 | obj-$(CONFIG_RTC_DRV_M48T86) += rtc-m48t86.o | ||
20 | obj-$(CONFIG_RTC_DRV_EP93XX) += rtc-ep93xx.o | ||
21 | obj-$(CONFIG_RTC_DRV_SA1100) += rtc-sa1100.o | ||
diff --git a/drivers/rtc/class.c b/drivers/rtc/class.c new file mode 100644 index 000000000000..8533936d50d8 --- /dev/null +++ b/drivers/rtc/class.c | |||
@@ -0,0 +1,145 @@ | |||
1 | /* | ||
2 | * RTC subsystem, base class | ||
3 | * | ||
4 | * Copyright (C) 2005 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * class skeleton from drivers/hwmon/hwmon.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/rtc.h> | ||
16 | #include <linux/kdev_t.h> | ||
17 | #include <linux/idr.h> | ||
18 | |||
19 | static DEFINE_IDR(rtc_idr); | ||
20 | static DEFINE_MUTEX(idr_lock); | ||
21 | struct class *rtc_class; | ||
22 | |||
23 | static void rtc_device_release(struct class_device *class_dev) | ||
24 | { | ||
25 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
26 | mutex_lock(&idr_lock); | ||
27 | idr_remove(&rtc_idr, rtc->id); | ||
28 | mutex_unlock(&idr_lock); | ||
29 | kfree(rtc); | ||
30 | } | ||
31 | |||
32 | /** | ||
33 | * rtc_device_register - register w/ RTC class | ||
34 | * @dev: the device to register | ||
35 | * | ||
36 | * rtc_device_unregister() must be called when the class device is no | ||
37 | * longer needed. | ||
38 | * | ||
39 | * Returns the pointer to the new struct class device. | ||
40 | */ | ||
41 | struct rtc_device *rtc_device_register(const char *name, struct device *dev, | ||
42 | struct rtc_class_ops *ops, | ||
43 | struct module *owner) | ||
44 | { | ||
45 | struct rtc_device *rtc; | ||
46 | int id, err; | ||
47 | |||
48 | if (idr_pre_get(&rtc_idr, GFP_KERNEL) == 0) { | ||
49 | err = -ENOMEM; | ||
50 | goto exit; | ||
51 | } | ||
52 | |||
53 | |||
54 | mutex_lock(&idr_lock); | ||
55 | err = idr_get_new(&rtc_idr, NULL, &id); | ||
56 | mutex_unlock(&idr_lock); | ||
57 | |||
58 | if (err < 0) | ||
59 | goto exit; | ||
60 | |||
61 | id = id & MAX_ID_MASK; | ||
62 | |||
63 | rtc = kzalloc(sizeof(struct rtc_device), GFP_KERNEL); | ||
64 | if (rtc == NULL) { | ||
65 | err = -ENOMEM; | ||
66 | goto exit_idr; | ||
67 | } | ||
68 | |||
69 | rtc->id = id; | ||
70 | rtc->ops = ops; | ||
71 | rtc->owner = owner; | ||
72 | rtc->class_dev.dev = dev; | ||
73 | rtc->class_dev.class = rtc_class; | ||
74 | rtc->class_dev.release = rtc_device_release; | ||
75 | |||
76 | mutex_init(&rtc->ops_lock); | ||
77 | spin_lock_init(&rtc->irq_lock); | ||
78 | spin_lock_init(&rtc->irq_task_lock); | ||
79 | |||
80 | strlcpy(rtc->name, name, RTC_DEVICE_NAME_SIZE); | ||
81 | snprintf(rtc->class_dev.class_id, BUS_ID_SIZE, "rtc%d", id); | ||
82 | |||
83 | err = class_device_register(&rtc->class_dev); | ||
84 | if (err) | ||
85 | goto exit_kfree; | ||
86 | |||
87 | dev_info(dev, "rtc core: registered %s as %s\n", | ||
88 | rtc->name, rtc->class_dev.class_id); | ||
89 | |||
90 | return rtc; | ||
91 | |||
92 | exit_kfree: | ||
93 | kfree(rtc); | ||
94 | |||
95 | exit_idr: | ||
96 | idr_remove(&rtc_idr, id); | ||
97 | |||
98 | exit: | ||
99 | return ERR_PTR(err); | ||
100 | } | ||
101 | EXPORT_SYMBOL_GPL(rtc_device_register); | ||
102 | |||
103 | |||
104 | /** | ||
105 | * rtc_device_unregister - removes the previously registered RTC class device | ||
106 | * | ||
107 | * @rtc: the RTC class device to destroy | ||
108 | */ | ||
109 | void rtc_device_unregister(struct rtc_device *rtc) | ||
110 | { | ||
111 | mutex_lock(&rtc->ops_lock); | ||
112 | rtc->ops = NULL; | ||
113 | mutex_unlock(&rtc->ops_lock); | ||
114 | class_device_unregister(&rtc->class_dev); | ||
115 | } | ||
116 | EXPORT_SYMBOL_GPL(rtc_device_unregister); | ||
117 | |||
118 | int rtc_interface_register(struct class_interface *intf) | ||
119 | { | ||
120 | intf->class = rtc_class; | ||
121 | return class_interface_register(intf); | ||
122 | } | ||
123 | EXPORT_SYMBOL_GPL(rtc_interface_register); | ||
124 | |||
125 | static int __init rtc_init(void) | ||
126 | { | ||
127 | rtc_class = class_create(THIS_MODULE, "rtc"); | ||
128 | if (IS_ERR(rtc_class)) { | ||
129 | printk(KERN_ERR "%s: couldn't create class\n", __FILE__); | ||
130 | return PTR_ERR(rtc_class); | ||
131 | } | ||
132 | return 0; | ||
133 | } | ||
134 | |||
135 | static void __exit rtc_exit(void) | ||
136 | { | ||
137 | class_destroy(rtc_class); | ||
138 | } | ||
139 | |||
140 | module_init(rtc_init); | ||
141 | module_exit(rtc_exit); | ||
142 | |||
143 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towerteh.it>"); | ||
144 | MODULE_DESCRIPTION("RTC class support"); | ||
145 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/hctosys.c b/drivers/rtc/hctosys.c new file mode 100644 index 000000000000..d02fe9a0001f --- /dev/null +++ b/drivers/rtc/hctosys.c | |||
@@ -0,0 +1,69 @@ | |||
1 | /* | ||
2 | * RTC subsystem, initialize system time on startup | ||
3 | * | ||
4 | * Copyright (C) 2005 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/rtc.h> | ||
13 | |||
14 | /* IMPORTANT: the RTC only stores whole seconds. It is arbitrary | ||
15 | * whether it stores the most close value or the value with partial | ||
16 | * seconds truncated. However, it is important that we use it to store | ||
17 | * the truncated value. This is because otherwise it is necessary, | ||
18 | * in an rtc sync function, to read both xtime.tv_sec and | ||
19 | * xtime.tv_nsec. On some processors (i.e. ARM), an atomic read | ||
20 | * of >32bits is not possible. So storing the most close value would | ||
21 | * slow down the sync API. So here we have the truncated value and | ||
22 | * the best guess is to add 0.5s. | ||
23 | */ | ||
24 | |||
25 | static int __init rtc_hctosys(void) | ||
26 | { | ||
27 | int err; | ||
28 | struct rtc_time tm; | ||
29 | struct class_device *class_dev = rtc_class_open(CONFIG_RTC_HCTOSYS_DEVICE); | ||
30 | |||
31 | if (class_dev == NULL) { | ||
32 | printk("%s: unable to open rtc device (%s)\n", | ||
33 | __FILE__, CONFIG_RTC_HCTOSYS_DEVICE); | ||
34 | return -ENODEV; | ||
35 | } | ||
36 | |||
37 | err = rtc_read_time(class_dev, &tm); | ||
38 | if (err == 0) { | ||
39 | err = rtc_valid_tm(&tm); | ||
40 | if (err == 0) { | ||
41 | struct timespec tv; | ||
42 | |||
43 | tv.tv_nsec = NSEC_PER_SEC >> 1; | ||
44 | |||
45 | rtc_tm_to_time(&tm, &tv.tv_sec); | ||
46 | |||
47 | do_settimeofday(&tv); | ||
48 | |||
49 | dev_info(class_dev->dev, | ||
50 | "setting the system clock to " | ||
51 | "%d-%02d-%02d %02d:%02d:%02d (%u)\n", | ||
52 | tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, | ||
53 | tm.tm_hour, tm.tm_min, tm.tm_sec, | ||
54 | (unsigned int) tv.tv_sec); | ||
55 | } | ||
56 | else | ||
57 | dev_err(class_dev->dev, | ||
58 | "hctosys: invalid date/time\n"); | ||
59 | } | ||
60 | else | ||
61 | dev_err(class_dev->dev, | ||
62 | "hctosys: unable to read the hardware clock\n"); | ||
63 | |||
64 | rtc_class_close(class_dev); | ||
65 | |||
66 | return 0; | ||
67 | } | ||
68 | |||
69 | late_initcall(rtc_hctosys); | ||
diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c new file mode 100644 index 000000000000..56e490709b87 --- /dev/null +++ b/drivers/rtc/interface.c | |||
@@ -0,0 +1,277 @@ | |||
1 | /* | ||
2 | * RTC subsystem, interface functions | ||
3 | * | ||
4 | * Copyright (C) 2005 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * based on arch/arm/common/rtctime.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/rtc.h> | ||
15 | |||
16 | int rtc_read_time(struct class_device *class_dev, struct rtc_time *tm) | ||
17 | { | ||
18 | int err; | ||
19 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
20 | |||
21 | err = mutex_lock_interruptible(&rtc->ops_lock); | ||
22 | if (err) | ||
23 | return -EBUSY; | ||
24 | |||
25 | if (!rtc->ops) | ||
26 | err = -ENODEV; | ||
27 | else if (!rtc->ops->read_time) | ||
28 | err = -EINVAL; | ||
29 | else { | ||
30 | memset(tm, 0, sizeof(struct rtc_time)); | ||
31 | err = rtc->ops->read_time(class_dev->dev, tm); | ||
32 | } | ||
33 | |||
34 | mutex_unlock(&rtc->ops_lock); | ||
35 | return err; | ||
36 | } | ||
37 | EXPORT_SYMBOL_GPL(rtc_read_time); | ||
38 | |||
39 | int rtc_set_time(struct class_device *class_dev, struct rtc_time *tm) | ||
40 | { | ||
41 | int err; | ||
42 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
43 | |||
44 | err = rtc_valid_tm(tm); | ||
45 | if (err != 0) | ||
46 | return err; | ||
47 | |||
48 | err = mutex_lock_interruptible(&rtc->ops_lock); | ||
49 | if (err) | ||
50 | return -EBUSY; | ||
51 | |||
52 | if (!rtc->ops) | ||
53 | err = -ENODEV; | ||
54 | else if (!rtc->ops->set_time) | ||
55 | err = -EINVAL; | ||
56 | else | ||
57 | err = rtc->ops->set_time(class_dev->dev, tm); | ||
58 | |||
59 | mutex_unlock(&rtc->ops_lock); | ||
60 | return err; | ||
61 | } | ||
62 | EXPORT_SYMBOL_GPL(rtc_set_time); | ||
63 | |||
64 | int rtc_set_mmss(struct class_device *class_dev, unsigned long secs) | ||
65 | { | ||
66 | int err; | ||
67 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
68 | |||
69 | err = mutex_lock_interruptible(&rtc->ops_lock); | ||
70 | if (err) | ||
71 | return -EBUSY; | ||
72 | |||
73 | if (!rtc->ops) | ||
74 | err = -ENODEV; | ||
75 | else if (rtc->ops->set_mmss) | ||
76 | err = rtc->ops->set_mmss(class_dev->dev, secs); | ||
77 | else if (rtc->ops->read_time && rtc->ops->set_time) { | ||
78 | struct rtc_time new, old; | ||
79 | |||
80 | err = rtc->ops->read_time(class_dev->dev, &old); | ||
81 | if (err == 0) { | ||
82 | rtc_time_to_tm(secs, &new); | ||
83 | |||
84 | /* | ||
85 | * avoid writing when we're going to change the day of | ||
86 | * the month. We will retry in the next minute. This | ||
87 | * basically means that if the RTC must not drift | ||
88 | * by more than 1 minute in 11 minutes. | ||
89 | */ | ||
90 | if (!((old.tm_hour == 23 && old.tm_min == 59) || | ||
91 | (new.tm_hour == 23 && new.tm_min == 59))) | ||
92 | err = rtc->ops->set_time(class_dev->dev, &new); | ||
93 | } | ||
94 | } | ||
95 | else | ||
96 | err = -EINVAL; | ||
97 | |||
98 | mutex_unlock(&rtc->ops_lock); | ||
99 | |||
100 | return err; | ||
101 | } | ||
102 | EXPORT_SYMBOL_GPL(rtc_set_mmss); | ||
103 | |||
104 | int rtc_read_alarm(struct class_device *class_dev, struct rtc_wkalrm *alarm) | ||
105 | { | ||
106 | int err; | ||
107 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
108 | |||
109 | err = mutex_lock_interruptible(&rtc->ops_lock); | ||
110 | if (err) | ||
111 | return -EBUSY; | ||
112 | |||
113 | if (rtc->ops == NULL) | ||
114 | err = -ENODEV; | ||
115 | else if (!rtc->ops->read_alarm) | ||
116 | err = -EINVAL; | ||
117 | else { | ||
118 | memset(alarm, 0, sizeof(struct rtc_wkalrm)); | ||
119 | err = rtc->ops->read_alarm(class_dev->dev, alarm); | ||
120 | } | ||
121 | |||
122 | mutex_unlock(&rtc->ops_lock); | ||
123 | return err; | ||
124 | } | ||
125 | EXPORT_SYMBOL_GPL(rtc_read_alarm); | ||
126 | |||
127 | int rtc_set_alarm(struct class_device *class_dev, struct rtc_wkalrm *alarm) | ||
128 | { | ||
129 | int err; | ||
130 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
131 | |||
132 | err = mutex_lock_interruptible(&rtc->ops_lock); | ||
133 | if (err) | ||
134 | return -EBUSY; | ||
135 | |||
136 | if (!rtc->ops) | ||
137 | err = -ENODEV; | ||
138 | else if (!rtc->ops->set_alarm) | ||
139 | err = -EINVAL; | ||
140 | else | ||
141 | err = rtc->ops->set_alarm(class_dev->dev, alarm); | ||
142 | |||
143 | mutex_unlock(&rtc->ops_lock); | ||
144 | return err; | ||
145 | } | ||
146 | EXPORT_SYMBOL_GPL(rtc_set_alarm); | ||
147 | |||
148 | void rtc_update_irq(struct class_device *class_dev, | ||
149 | unsigned long num, unsigned long events) | ||
150 | { | ||
151 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
152 | |||
153 | spin_lock(&rtc->irq_lock); | ||
154 | rtc->irq_data = (rtc->irq_data + (num << 8)) | events; | ||
155 | spin_unlock(&rtc->irq_lock); | ||
156 | |||
157 | spin_lock(&rtc->irq_task_lock); | ||
158 | if (rtc->irq_task) | ||
159 | rtc->irq_task->func(rtc->irq_task->private_data); | ||
160 | spin_unlock(&rtc->irq_task_lock); | ||
161 | |||
162 | wake_up_interruptible(&rtc->irq_queue); | ||
163 | kill_fasync(&rtc->async_queue, SIGIO, POLL_IN); | ||
164 | } | ||
165 | EXPORT_SYMBOL_GPL(rtc_update_irq); | ||
166 | |||
167 | struct class_device *rtc_class_open(char *name) | ||
168 | { | ||
169 | struct class_device *class_dev = NULL, | ||
170 | *class_dev_tmp; | ||
171 | |||
172 | down(&rtc_class->sem); | ||
173 | list_for_each_entry(class_dev_tmp, &rtc_class->children, node) { | ||
174 | if (strncmp(class_dev_tmp->class_id, name, BUS_ID_SIZE) == 0) { | ||
175 | class_dev = class_dev_tmp; | ||
176 | break; | ||
177 | } | ||
178 | } | ||
179 | |||
180 | if (class_dev) { | ||
181 | if (!try_module_get(to_rtc_device(class_dev)->owner)) | ||
182 | class_dev = NULL; | ||
183 | } | ||
184 | up(&rtc_class->sem); | ||
185 | |||
186 | return class_dev; | ||
187 | } | ||
188 | EXPORT_SYMBOL_GPL(rtc_class_open); | ||
189 | |||
190 | void rtc_class_close(struct class_device *class_dev) | ||
191 | { | ||
192 | module_put(to_rtc_device(class_dev)->owner); | ||
193 | } | ||
194 | EXPORT_SYMBOL_GPL(rtc_class_close); | ||
195 | |||
196 | int rtc_irq_register(struct class_device *class_dev, struct rtc_task *task) | ||
197 | { | ||
198 | int retval = -EBUSY; | ||
199 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
200 | |||
201 | if (task == NULL || task->func == NULL) | ||
202 | return -EINVAL; | ||
203 | |||
204 | spin_lock(&rtc->irq_task_lock); | ||
205 | if (rtc->irq_task == NULL) { | ||
206 | rtc->irq_task = task; | ||
207 | retval = 0; | ||
208 | } | ||
209 | spin_unlock(&rtc->irq_task_lock); | ||
210 | |||
211 | return retval; | ||
212 | } | ||
213 | EXPORT_SYMBOL_GPL(rtc_irq_register); | ||
214 | |||
215 | void rtc_irq_unregister(struct class_device *class_dev, struct rtc_task *task) | ||
216 | { | ||
217 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
218 | |||
219 | spin_lock(&rtc->irq_task_lock); | ||
220 | if (rtc->irq_task == task) | ||
221 | rtc->irq_task = NULL; | ||
222 | spin_unlock(&rtc->irq_task_lock); | ||
223 | } | ||
224 | EXPORT_SYMBOL_GPL(rtc_irq_unregister); | ||
225 | |||
226 | int rtc_irq_set_state(struct class_device *class_dev, struct rtc_task *task, int enabled) | ||
227 | { | ||
228 | int err = 0; | ||
229 | unsigned long flags; | ||
230 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
231 | |||
232 | spin_lock_irqsave(&rtc->irq_task_lock, flags); | ||
233 | if (rtc->irq_task != task) | ||
234 | err = -ENXIO; | ||
235 | spin_unlock_irqrestore(&rtc->irq_task_lock, flags); | ||
236 | |||
237 | if (err == 0) | ||
238 | err = rtc->ops->irq_set_state(class_dev->dev, enabled); | ||
239 | |||
240 | return err; | ||
241 | } | ||
242 | EXPORT_SYMBOL_GPL(rtc_irq_set_state); | ||
243 | |||
244 | int rtc_irq_set_freq(struct class_device *class_dev, struct rtc_task *task, int freq) | ||
245 | { | ||
246 | int err = 0, tmp = 0; | ||
247 | unsigned long flags; | ||
248 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
249 | |||
250 | /* allowed range is 2-8192 */ | ||
251 | if (freq < 2 || freq > 8192) | ||
252 | return -EINVAL; | ||
253 | /* | ||
254 | FIXME: this does not belong here, will move where appropriate | ||
255 | at a later stage. It cannot hurt right now, trust me :) | ||
256 | if ((freq > rtc_max_user_freq) && (!capable(CAP_SYS_RESOURCE))) | ||
257 | return -EACCES; | ||
258 | */ | ||
259 | /* check if freq is a power of 2 */ | ||
260 | while (freq > (1 << tmp)) | ||
261 | tmp++; | ||
262 | |||
263 | if (freq != (1 << tmp)) | ||
264 | return -EINVAL; | ||
265 | |||
266 | spin_lock_irqsave(&rtc->irq_task_lock, flags); | ||
267 | if (rtc->irq_task != task) | ||
268 | err = -ENXIO; | ||
269 | spin_unlock_irqrestore(&rtc->irq_task_lock, flags); | ||
270 | |||
271 | if (err == 0) { | ||
272 | err = rtc->ops->irq_set_freq(class_dev->dev, freq); | ||
273 | if (err == 0) | ||
274 | rtc->irq_freq = freq; | ||
275 | } | ||
276 | return err; | ||
277 | } | ||
diff --git a/drivers/rtc/rtc-dev.c b/drivers/rtc/rtc-dev.c new file mode 100644 index 000000000000..b1e3e6179e56 --- /dev/null +++ b/drivers/rtc/rtc-dev.c | |||
@@ -0,0 +1,382 @@ | |||
1 | /* | ||
2 | * RTC subsystem, dev interface | ||
3 | * | ||
4 | * Copyright (C) 2005 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * based on arch/arm/common/rtctime.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/rtc.h> | ||
16 | |||
17 | static struct class *rtc_dev_class; | ||
18 | static dev_t rtc_devt; | ||
19 | |||
20 | #define RTC_DEV_MAX 16 /* 16 RTCs should be enough for everyone... */ | ||
21 | |||
22 | static int rtc_dev_open(struct inode *inode, struct file *file) | ||
23 | { | ||
24 | int err; | ||
25 | struct rtc_device *rtc = container_of(inode->i_cdev, | ||
26 | struct rtc_device, char_dev); | ||
27 | struct rtc_class_ops *ops = rtc->ops; | ||
28 | |||
29 | /* We keep the lock as long as the device is in use | ||
30 | * and return immediately if busy | ||
31 | */ | ||
32 | if (!(mutex_trylock(&rtc->char_lock))) | ||
33 | return -EBUSY; | ||
34 | |||
35 | file->private_data = &rtc->class_dev; | ||
36 | |||
37 | err = ops->open ? ops->open(rtc->class_dev.dev) : 0; | ||
38 | if (err == 0) { | ||
39 | spin_lock_irq(&rtc->irq_lock); | ||
40 | rtc->irq_data = 0; | ||
41 | spin_unlock_irq(&rtc->irq_lock); | ||
42 | |||
43 | return 0; | ||
44 | } | ||
45 | |||
46 | /* something has gone wrong, release the lock */ | ||
47 | mutex_unlock(&rtc->char_lock); | ||
48 | return err; | ||
49 | } | ||
50 | |||
51 | |||
52 | static ssize_t | ||
53 | rtc_dev_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | ||
54 | { | ||
55 | struct rtc_device *rtc = to_rtc_device(file->private_data); | ||
56 | |||
57 | DECLARE_WAITQUEUE(wait, current); | ||
58 | unsigned long data; | ||
59 | ssize_t ret; | ||
60 | |||
61 | if (count < sizeof(unsigned long)) | ||
62 | return -EINVAL; | ||
63 | |||
64 | add_wait_queue(&rtc->irq_queue, &wait); | ||
65 | do { | ||
66 | __set_current_state(TASK_INTERRUPTIBLE); | ||
67 | |||
68 | spin_lock_irq(&rtc->irq_lock); | ||
69 | data = rtc->irq_data; | ||
70 | rtc->irq_data = 0; | ||
71 | spin_unlock_irq(&rtc->irq_lock); | ||
72 | |||
73 | if (data != 0) { | ||
74 | ret = 0; | ||
75 | break; | ||
76 | } | ||
77 | if (file->f_flags & O_NONBLOCK) { | ||
78 | ret = -EAGAIN; | ||
79 | break; | ||
80 | } | ||
81 | if (signal_pending(current)) { | ||
82 | ret = -ERESTARTSYS; | ||
83 | break; | ||
84 | } | ||
85 | schedule(); | ||
86 | } while (1); | ||
87 | set_current_state(TASK_RUNNING); | ||
88 | remove_wait_queue(&rtc->irq_queue, &wait); | ||
89 | |||
90 | if (ret == 0) { | ||
91 | /* Check for any data updates */ | ||
92 | if (rtc->ops->read_callback) | ||
93 | data = rtc->ops->read_callback(rtc->class_dev.dev, data); | ||
94 | |||
95 | ret = put_user(data, (unsigned long __user *)buf); | ||
96 | if (ret == 0) | ||
97 | ret = sizeof(unsigned long); | ||
98 | } | ||
99 | return ret; | ||
100 | } | ||
101 | |||
102 | static unsigned int rtc_dev_poll(struct file *file, poll_table *wait) | ||
103 | { | ||
104 | struct rtc_device *rtc = to_rtc_device(file->private_data); | ||
105 | unsigned long data; | ||
106 | |||
107 | poll_wait(file, &rtc->irq_queue, wait); | ||
108 | |||
109 | data = rtc->irq_data; | ||
110 | |||
111 | return (data != 0) ? (POLLIN | POLLRDNORM) : 0; | ||
112 | } | ||
113 | |||
114 | static int rtc_dev_ioctl(struct inode *inode, struct file *file, | ||
115 | unsigned int cmd, unsigned long arg) | ||
116 | { | ||
117 | int err = 0; | ||
118 | struct class_device *class_dev = file->private_data; | ||
119 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
120 | struct rtc_class_ops *ops = rtc->ops; | ||
121 | struct rtc_time tm; | ||
122 | struct rtc_wkalrm alarm; | ||
123 | void __user *uarg = (void __user *) arg; | ||
124 | |||
125 | /* avoid conflicting IRQ users */ | ||
126 | if (cmd == RTC_PIE_ON || cmd == RTC_PIE_OFF || cmd == RTC_IRQP_SET) { | ||
127 | spin_lock(&rtc->irq_task_lock); | ||
128 | if (rtc->irq_task) | ||
129 | err = -EBUSY; | ||
130 | spin_unlock(&rtc->irq_task_lock); | ||
131 | |||
132 | if (err < 0) | ||
133 | return err; | ||
134 | } | ||
135 | |||
136 | /* try the driver's ioctl interface */ | ||
137 | if (ops->ioctl) { | ||
138 | err = ops->ioctl(class_dev->dev, cmd, arg); | ||
139 | if (err != -EINVAL) | ||
140 | return err; | ||
141 | } | ||
142 | |||
143 | /* if the driver does not provide the ioctl interface | ||
144 | * or if that particular ioctl was not implemented | ||
145 | * (-EINVAL), we will try to emulate here. | ||
146 | */ | ||
147 | |||
148 | switch (cmd) { | ||
149 | case RTC_ALM_READ: | ||
150 | err = rtc_read_alarm(class_dev, &alarm); | ||
151 | if (err < 0) | ||
152 | return err; | ||
153 | |||
154 | if (copy_to_user(uarg, &alarm.time, sizeof(tm))) | ||
155 | return -EFAULT; | ||
156 | break; | ||
157 | |||
158 | case RTC_ALM_SET: | ||
159 | if (copy_from_user(&alarm.time, uarg, sizeof(tm))) | ||
160 | return -EFAULT; | ||
161 | |||
162 | alarm.enabled = 0; | ||
163 | alarm.pending = 0; | ||
164 | alarm.time.tm_mday = -1; | ||
165 | alarm.time.tm_mon = -1; | ||
166 | alarm.time.tm_year = -1; | ||
167 | alarm.time.tm_wday = -1; | ||
168 | alarm.time.tm_yday = -1; | ||
169 | alarm.time.tm_isdst = -1; | ||
170 | err = rtc_set_alarm(class_dev, &alarm); | ||
171 | break; | ||
172 | |||
173 | case RTC_RD_TIME: | ||
174 | err = rtc_read_time(class_dev, &tm); | ||
175 | if (err < 0) | ||
176 | return err; | ||
177 | |||
178 | if (copy_to_user(uarg, &tm, sizeof(tm))) | ||
179 | return -EFAULT; | ||
180 | break; | ||
181 | |||
182 | case RTC_SET_TIME: | ||
183 | if (!capable(CAP_SYS_TIME)) | ||
184 | return -EACCES; | ||
185 | |||
186 | if (copy_from_user(&tm, uarg, sizeof(tm))) | ||
187 | return -EFAULT; | ||
188 | |||
189 | err = rtc_set_time(class_dev, &tm); | ||
190 | break; | ||
191 | #if 0 | ||
192 | case RTC_EPOCH_SET: | ||
193 | #ifndef rtc_epoch | ||
194 | /* | ||
195 | * There were no RTC clocks before 1900. | ||
196 | */ | ||
197 | if (arg < 1900) { | ||
198 | err = -EINVAL; | ||
199 | break; | ||
200 | } | ||
201 | if (!capable(CAP_SYS_TIME)) { | ||
202 | err = -EACCES; | ||
203 | break; | ||
204 | } | ||
205 | rtc_epoch = arg; | ||
206 | err = 0; | ||
207 | #endif | ||
208 | break; | ||
209 | |||
210 | case RTC_EPOCH_READ: | ||
211 | err = put_user(rtc_epoch, (unsigned long __user *)uarg); | ||
212 | break; | ||
213 | #endif | ||
214 | case RTC_WKALM_SET: | ||
215 | if (copy_from_user(&alarm, uarg, sizeof(alarm))) | ||
216 | return -EFAULT; | ||
217 | |||
218 | err = rtc_set_alarm(class_dev, &alarm); | ||
219 | break; | ||
220 | |||
221 | case RTC_WKALM_RD: | ||
222 | err = rtc_read_alarm(class_dev, &alarm); | ||
223 | if (err < 0) | ||
224 | return err; | ||
225 | |||
226 | if (copy_to_user(uarg, &alarm, sizeof(alarm))) | ||
227 | return -EFAULT; | ||
228 | break; | ||
229 | |||
230 | default: | ||
231 | err = -EINVAL; | ||
232 | break; | ||
233 | } | ||
234 | |||
235 | return err; | ||
236 | } | ||
237 | |||
238 | static int rtc_dev_release(struct inode *inode, struct file *file) | ||
239 | { | ||
240 | struct rtc_device *rtc = to_rtc_device(file->private_data); | ||
241 | |||
242 | if (rtc->ops->release) | ||
243 | rtc->ops->release(rtc->class_dev.dev); | ||
244 | |||
245 | mutex_unlock(&rtc->char_lock); | ||
246 | return 0; | ||
247 | } | ||
248 | |||
249 | static int rtc_dev_fasync(int fd, struct file *file, int on) | ||
250 | { | ||
251 | struct rtc_device *rtc = to_rtc_device(file->private_data); | ||
252 | return fasync_helper(fd, file, on, &rtc->async_queue); | ||
253 | } | ||
254 | |||
255 | static struct file_operations rtc_dev_fops = { | ||
256 | .owner = THIS_MODULE, | ||
257 | .llseek = no_llseek, | ||
258 | .read = rtc_dev_read, | ||
259 | .poll = rtc_dev_poll, | ||
260 | .ioctl = rtc_dev_ioctl, | ||
261 | .open = rtc_dev_open, | ||
262 | .release = rtc_dev_release, | ||
263 | .fasync = rtc_dev_fasync, | ||
264 | }; | ||
265 | |||
266 | /* insertion/removal hooks */ | ||
267 | |||
268 | static int rtc_dev_add_device(struct class_device *class_dev, | ||
269 | struct class_interface *class_intf) | ||
270 | { | ||
271 | int err = 0; | ||
272 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
273 | |||
274 | if (rtc->id >= RTC_DEV_MAX) { | ||
275 | dev_err(class_dev->dev, "too many RTCs\n"); | ||
276 | return -EINVAL; | ||
277 | } | ||
278 | |||
279 | mutex_init(&rtc->char_lock); | ||
280 | spin_lock_init(&rtc->irq_lock); | ||
281 | init_waitqueue_head(&rtc->irq_queue); | ||
282 | |||
283 | cdev_init(&rtc->char_dev, &rtc_dev_fops); | ||
284 | rtc->char_dev.owner = rtc->owner; | ||
285 | |||
286 | if (cdev_add(&rtc->char_dev, MKDEV(MAJOR(rtc_devt), rtc->id), 1)) { | ||
287 | cdev_del(&rtc->char_dev); | ||
288 | dev_err(class_dev->dev, | ||
289 | "failed to add char device %d:%d\n", | ||
290 | MAJOR(rtc_devt), rtc->id); | ||
291 | return -ENODEV; | ||
292 | } | ||
293 | |||
294 | rtc->rtc_dev = class_device_create(rtc_dev_class, NULL, | ||
295 | MKDEV(MAJOR(rtc_devt), rtc->id), | ||
296 | class_dev->dev, "rtc%d", rtc->id); | ||
297 | if (IS_ERR(rtc->rtc_dev)) { | ||
298 | dev_err(class_dev->dev, "cannot create rtc_dev device\n"); | ||
299 | err = PTR_ERR(rtc->rtc_dev); | ||
300 | goto err_cdev_del; | ||
301 | } | ||
302 | |||
303 | dev_info(class_dev->dev, "rtc intf: dev (%d:%d)\n", | ||
304 | MAJOR(rtc->rtc_dev->devt), | ||
305 | MINOR(rtc->rtc_dev->devt)); | ||
306 | |||
307 | return 0; | ||
308 | |||
309 | err_cdev_del: | ||
310 | |||
311 | cdev_del(&rtc->char_dev); | ||
312 | return err; | ||
313 | } | ||
314 | |||
315 | static void rtc_dev_remove_device(struct class_device *class_dev, | ||
316 | struct class_interface *class_intf) | ||
317 | { | ||
318 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
319 | |||
320 | if (rtc->rtc_dev) { | ||
321 | dev_dbg(class_dev->dev, "removing char %d:%d\n", | ||
322 | MAJOR(rtc->rtc_dev->devt), | ||
323 | MINOR(rtc->rtc_dev->devt)); | ||
324 | |||
325 | class_device_unregister(rtc->rtc_dev); | ||
326 | cdev_del(&rtc->char_dev); | ||
327 | } | ||
328 | } | ||
329 | |||
330 | /* interface registration */ | ||
331 | |||
332 | static struct class_interface rtc_dev_interface = { | ||
333 | .add = &rtc_dev_add_device, | ||
334 | .remove = &rtc_dev_remove_device, | ||
335 | }; | ||
336 | |||
337 | static int __init rtc_dev_init(void) | ||
338 | { | ||
339 | int err; | ||
340 | |||
341 | rtc_dev_class = class_create(THIS_MODULE, "rtc-dev"); | ||
342 | if (IS_ERR(rtc_dev_class)) | ||
343 | return PTR_ERR(rtc_dev_class); | ||
344 | |||
345 | err = alloc_chrdev_region(&rtc_devt, 0, RTC_DEV_MAX, "rtc"); | ||
346 | if (err < 0) { | ||
347 | printk(KERN_ERR "%s: failed to allocate char dev region\n", | ||
348 | __FILE__); | ||
349 | goto err_destroy_class; | ||
350 | } | ||
351 | |||
352 | err = rtc_interface_register(&rtc_dev_interface); | ||
353 | if (err < 0) { | ||
354 | printk(KERN_ERR "%s: failed to register the interface\n", | ||
355 | __FILE__); | ||
356 | goto err_unregister_chrdev; | ||
357 | } | ||
358 | |||
359 | return 0; | ||
360 | |||
361 | err_unregister_chrdev: | ||
362 | unregister_chrdev_region(rtc_devt, RTC_DEV_MAX); | ||
363 | |||
364 | err_destroy_class: | ||
365 | class_destroy(rtc_dev_class); | ||
366 | |||
367 | return err; | ||
368 | } | ||
369 | |||
370 | static void __exit rtc_dev_exit(void) | ||
371 | { | ||
372 | class_interface_unregister(&rtc_dev_interface); | ||
373 | class_destroy(rtc_dev_class); | ||
374 | unregister_chrdev_region(rtc_devt, RTC_DEV_MAX); | ||
375 | } | ||
376 | |||
377 | module_init(rtc_dev_init); | ||
378 | module_exit(rtc_dev_exit); | ||
379 | |||
380 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
381 | MODULE_DESCRIPTION("RTC class dev interface"); | ||
382 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-ds1672.c b/drivers/rtc/rtc-ds1672.c new file mode 100644 index 000000000000..358695a416f3 --- /dev/null +++ b/drivers/rtc/rtc-ds1672.c | |||
@@ -0,0 +1,233 @@ | |||
1 | /* | ||
2 | * An rtc/i2c driver for the Dallas DS1672 | ||
3 | * Copyright 2005 Alessandro Zummo | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License version 2 as | ||
7 | * published by the Free Software Foundation. | ||
8 | */ | ||
9 | |||
10 | #include <linux/module.h> | ||
11 | #include <linux/i2c.h> | ||
12 | #include <linux/rtc.h> | ||
13 | |||
14 | #define DRV_VERSION "0.2" | ||
15 | |||
16 | /* Addresses to scan: none. This chip cannot be detected. */ | ||
17 | static unsigned short normal_i2c[] = { I2C_CLIENT_END }; | ||
18 | |||
19 | /* Insmod parameters */ | ||
20 | I2C_CLIENT_INSMOD; | ||
21 | |||
22 | /* Registers */ | ||
23 | |||
24 | #define DS1672_REG_CNT_BASE 0 | ||
25 | #define DS1672_REG_CONTROL 4 | ||
26 | #define DS1672_REG_TRICKLE 5 | ||
27 | |||
28 | |||
29 | /* Prototypes */ | ||
30 | static int ds1672_probe(struct i2c_adapter *adapter, int address, int kind); | ||
31 | |||
32 | /* | ||
33 | * In the routines that deal directly with the ds1672 hardware, we use | ||
34 | * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch | ||
35 | * Epoch is initialized as 2000. Time is set to UTC. | ||
36 | */ | ||
37 | static int ds1672_get_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
38 | { | ||
39 | unsigned long time; | ||
40 | unsigned char addr = DS1672_REG_CNT_BASE; | ||
41 | unsigned char buf[4]; | ||
42 | |||
43 | struct i2c_msg msgs[] = { | ||
44 | { client->addr, 0, 1, &addr }, /* setup read ptr */ | ||
45 | { client->addr, I2C_M_RD, 4, buf }, /* read date */ | ||
46 | }; | ||
47 | |||
48 | /* read date registers */ | ||
49 | if ((i2c_transfer(client->adapter, &msgs[0], 2)) != 2) { | ||
50 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
51 | return -EIO; | ||
52 | } | ||
53 | |||
54 | dev_dbg(&client->dev, | ||
55 | "%s: raw read data - counters=%02x,%02x,%02x,%02x\n" | ||
56 | __FUNCTION__, | ||
57 | buf[0], buf[1], buf[2], buf[3]); | ||
58 | |||
59 | time = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]; | ||
60 | |||
61 | rtc_time_to_tm(time, tm); | ||
62 | |||
63 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | ||
64 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
65 | __FUNCTION__, | ||
66 | tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
67 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
68 | |||
69 | return 0; | ||
70 | } | ||
71 | |||
72 | static int ds1672_set_mmss(struct i2c_client *client, unsigned long secs) | ||
73 | { | ||
74 | int xfer; | ||
75 | unsigned char buf[5]; | ||
76 | |||
77 | buf[0] = DS1672_REG_CNT_BASE; | ||
78 | buf[1] = secs & 0x000000FF; | ||
79 | buf[2] = (secs & 0x0000FF00) >> 8; | ||
80 | buf[3] = (secs & 0x00FF0000) >> 16; | ||
81 | buf[4] = (secs & 0xFF000000) >> 24; | ||
82 | |||
83 | xfer = i2c_master_send(client, buf, 5); | ||
84 | if (xfer != 5) { | ||
85 | dev_err(&client->dev, "%s: send: %d\n", __FUNCTION__, xfer); | ||
86 | return -EIO; | ||
87 | } | ||
88 | |||
89 | return 0; | ||
90 | } | ||
91 | |||
92 | static int ds1672_set_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
93 | { | ||
94 | unsigned long secs; | ||
95 | |||
96 | dev_dbg(&client->dev, | ||
97 | "%s: secs=%d, mins=%d, hours=%d, ", | ||
98 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
99 | __FUNCTION__, | ||
100 | tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
101 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
102 | |||
103 | rtc_tm_to_time(tm, &secs); | ||
104 | |||
105 | return ds1672_set_mmss(client, secs); | ||
106 | } | ||
107 | |||
108 | static int ds1672_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
109 | { | ||
110 | return ds1672_get_datetime(to_i2c_client(dev), tm); | ||
111 | } | ||
112 | |||
113 | static int ds1672_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
114 | { | ||
115 | return ds1672_set_datetime(to_i2c_client(dev), tm); | ||
116 | } | ||
117 | |||
118 | static int ds1672_rtc_set_mmss(struct device *dev, unsigned long secs) | ||
119 | { | ||
120 | return ds1672_set_mmss(to_i2c_client(dev), secs); | ||
121 | } | ||
122 | |||
123 | static struct rtc_class_ops ds1672_rtc_ops = { | ||
124 | .read_time = ds1672_rtc_read_time, | ||
125 | .set_time = ds1672_rtc_set_time, | ||
126 | .set_mmss = ds1672_rtc_set_mmss, | ||
127 | }; | ||
128 | |||
129 | static int ds1672_attach(struct i2c_adapter *adapter) | ||
130 | { | ||
131 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
132 | return i2c_probe(adapter, &addr_data, ds1672_probe); | ||
133 | } | ||
134 | |||
135 | static int ds1672_detach(struct i2c_client *client) | ||
136 | { | ||
137 | int err; | ||
138 | struct rtc_device *rtc = i2c_get_clientdata(client); | ||
139 | |||
140 | dev_dbg(&client->dev, "%s\n", __FUNCTION__); | ||
141 | |||
142 | if (rtc) | ||
143 | rtc_device_unregister(rtc); | ||
144 | |||
145 | if ((err = i2c_detach_client(client))) | ||
146 | return err; | ||
147 | |||
148 | kfree(client); | ||
149 | |||
150 | return 0; | ||
151 | } | ||
152 | |||
153 | static struct i2c_driver ds1672_driver = { | ||
154 | .driver = { | ||
155 | .name = "ds1672", | ||
156 | }, | ||
157 | .id = I2C_DRIVERID_DS1672, | ||
158 | .attach_adapter = &ds1672_attach, | ||
159 | .detach_client = &ds1672_detach, | ||
160 | }; | ||
161 | |||
162 | static int ds1672_probe(struct i2c_adapter *adapter, int address, int kind) | ||
163 | { | ||
164 | int err = 0; | ||
165 | struct i2c_client *client; | ||
166 | struct rtc_device *rtc; | ||
167 | |||
168 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
169 | |||
170 | if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { | ||
171 | err = -ENODEV; | ||
172 | goto exit; | ||
173 | } | ||
174 | |||
175 | if (!(client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL))) { | ||
176 | err = -ENOMEM; | ||
177 | goto exit; | ||
178 | } | ||
179 | |||
180 | /* I2C client */ | ||
181 | client->addr = address; | ||
182 | client->driver = &ds1672_driver; | ||
183 | client->adapter = adapter; | ||
184 | |||
185 | strlcpy(client->name, ds1672_driver.driver.name, I2C_NAME_SIZE); | ||
186 | |||
187 | /* Inform the i2c layer */ | ||
188 | if ((err = i2c_attach_client(client))) | ||
189 | goto exit_kfree; | ||
190 | |||
191 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); | ||
192 | |||
193 | rtc = rtc_device_register(ds1672_driver.driver.name, &client->dev, | ||
194 | &ds1672_rtc_ops, THIS_MODULE); | ||
195 | |||
196 | if (IS_ERR(rtc)) { | ||
197 | err = PTR_ERR(rtc); | ||
198 | dev_err(&client->dev, | ||
199 | "unable to register the class device\n"); | ||
200 | goto exit_detach; | ||
201 | } | ||
202 | |||
203 | i2c_set_clientdata(client, rtc); | ||
204 | |||
205 | return 0; | ||
206 | |||
207 | exit_detach: | ||
208 | i2c_detach_client(client); | ||
209 | |||
210 | exit_kfree: | ||
211 | kfree(client); | ||
212 | |||
213 | exit: | ||
214 | return err; | ||
215 | } | ||
216 | |||
217 | static int __init ds1672_init(void) | ||
218 | { | ||
219 | return i2c_add_driver(&ds1672_driver); | ||
220 | } | ||
221 | |||
222 | static void __exit ds1672_exit(void) | ||
223 | { | ||
224 | i2c_del_driver(&ds1672_driver); | ||
225 | } | ||
226 | |||
227 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
228 | MODULE_DESCRIPTION("Dallas/Maxim DS1672 timekeeper driver"); | ||
229 | MODULE_LICENSE("GPL"); | ||
230 | MODULE_VERSION(DRV_VERSION); | ||
231 | |||
232 | module_init(ds1672_init); | ||
233 | module_exit(ds1672_exit); | ||
diff --git a/drivers/rtc/rtc-ep93xx.c b/drivers/rtc/rtc-ep93xx.c new file mode 100644 index 000000000000..0dd80ea686a9 --- /dev/null +++ b/drivers/rtc/rtc-ep93xx.c | |||
@@ -0,0 +1,162 @@ | |||
1 | /* | ||
2 | * A driver for the RTC embedded in the Cirrus Logic EP93XX processors | ||
3 | * Copyright (c) 2006 Tower Technologies | ||
4 | * | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/module.h> | ||
13 | #include <linux/rtc.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | #include <asm/hardware.h> | ||
16 | |||
17 | #define EP93XX_RTC_REG(x) (EP93XX_RTC_BASE + (x)) | ||
18 | #define EP93XX_RTC_DATA EP93XX_RTC_REG(0x0000) | ||
19 | #define EP93XX_RTC_LOAD EP93XX_RTC_REG(0x000C) | ||
20 | #define EP93XX_RTC_SWCOMP EP93XX_RTC_REG(0x0108) | ||
21 | |||
22 | #define DRV_VERSION "0.2" | ||
23 | |||
24 | static int ep93xx_get_swcomp(struct device *dev, unsigned short *preload, | ||
25 | unsigned short *delete) | ||
26 | { | ||
27 | unsigned short comp = __raw_readl(EP93XX_RTC_SWCOMP); | ||
28 | |||
29 | if (preload) | ||
30 | *preload = comp & 0xffff; | ||
31 | |||
32 | if (delete) | ||
33 | *delete = (comp >> 16) & 0x1f; | ||
34 | |||
35 | return 0; | ||
36 | } | ||
37 | |||
38 | static int ep93xx_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
39 | { | ||
40 | unsigned long time = __raw_readl(EP93XX_RTC_DATA); | ||
41 | |||
42 | rtc_time_to_tm(time, tm); | ||
43 | return 0; | ||
44 | } | ||
45 | |||
46 | static int ep93xx_rtc_set_mmss(struct device *dev, unsigned long secs) | ||
47 | { | ||
48 | __raw_writel(secs + 1, EP93XX_RTC_LOAD); | ||
49 | return 0; | ||
50 | } | ||
51 | |||
52 | static int ep93xx_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
53 | { | ||
54 | int err; | ||
55 | unsigned long secs; | ||
56 | |||
57 | err = rtc_tm_to_time(tm, &secs); | ||
58 | if (err != 0) | ||
59 | return err; | ||
60 | |||
61 | return ep93xx_rtc_set_mmss(dev, secs); | ||
62 | } | ||
63 | |||
64 | static int ep93xx_rtc_proc(struct device *dev, struct seq_file *seq) | ||
65 | { | ||
66 | unsigned short preload, delete; | ||
67 | |||
68 | ep93xx_get_swcomp(dev, &preload, &delete); | ||
69 | |||
70 | seq_printf(seq, "24hr\t\t: yes\n"); | ||
71 | seq_printf(seq, "preload\t\t: %d\n", preload); | ||
72 | seq_printf(seq, "delete\t\t: %d\n", delete); | ||
73 | |||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | static struct rtc_class_ops ep93xx_rtc_ops = { | ||
78 | .read_time = ep93xx_rtc_read_time, | ||
79 | .set_time = ep93xx_rtc_set_time, | ||
80 | .set_mmss = ep93xx_rtc_set_mmss, | ||
81 | .proc = ep93xx_rtc_proc, | ||
82 | }; | ||
83 | |||
84 | static ssize_t ep93xx_sysfs_show_comp_preload(struct device *dev, | ||
85 | struct device_attribute *attr, char *buf) | ||
86 | { | ||
87 | unsigned short preload; | ||
88 | |||
89 | ep93xx_get_swcomp(dev, &preload, NULL); | ||
90 | |||
91 | return sprintf(buf, "%d\n", preload); | ||
92 | } | ||
93 | static DEVICE_ATTR(comp_preload, S_IRUGO, ep93xx_sysfs_show_comp_preload, NULL); | ||
94 | |||
95 | static ssize_t ep93xx_sysfs_show_comp_delete(struct device *dev, | ||
96 | struct device_attribute *attr, char *buf) | ||
97 | { | ||
98 | unsigned short delete; | ||
99 | |||
100 | ep93xx_get_swcomp(dev, NULL, &delete); | ||
101 | |||
102 | return sprintf(buf, "%d\n", delete); | ||
103 | } | ||
104 | static DEVICE_ATTR(comp_delete, S_IRUGO, ep93xx_sysfs_show_comp_delete, NULL); | ||
105 | |||
106 | |||
107 | static int __devinit ep93xx_rtc_probe(struct platform_device *dev) | ||
108 | { | ||
109 | struct rtc_device *rtc = rtc_device_register("ep93xx", | ||
110 | &dev->dev, &ep93xx_rtc_ops, THIS_MODULE); | ||
111 | |||
112 | if (IS_ERR(rtc)) { | ||
113 | dev_err(&dev->dev, "unable to register\n"); | ||
114 | return PTR_ERR(rtc); | ||
115 | } | ||
116 | |||
117 | platform_set_drvdata(dev, rtc); | ||
118 | |||
119 | device_create_file(&dev->dev, &dev_attr_comp_preload); | ||
120 | device_create_file(&dev->dev, &dev_attr_comp_delete); | ||
121 | |||
122 | return 0; | ||
123 | } | ||
124 | |||
125 | static int __devexit ep93xx_rtc_remove(struct platform_device *dev) | ||
126 | { | ||
127 | struct rtc_device *rtc = platform_get_drvdata(dev); | ||
128 | |||
129 | if (rtc) | ||
130 | rtc_device_unregister(rtc); | ||
131 | |||
132 | platform_set_drvdata(dev, NULL); | ||
133 | |||
134 | return 0; | ||
135 | } | ||
136 | |||
137 | static struct platform_driver ep93xx_rtc_platform_driver = { | ||
138 | .driver = { | ||
139 | .name = "ep93xx-rtc", | ||
140 | .owner = THIS_MODULE, | ||
141 | }, | ||
142 | .probe = ep93xx_rtc_probe, | ||
143 | .remove = __devexit_p(ep93xx_rtc_remove), | ||
144 | }; | ||
145 | |||
146 | static int __init ep93xx_rtc_init(void) | ||
147 | { | ||
148 | return platform_driver_register(&ep93xx_rtc_platform_driver); | ||
149 | } | ||
150 | |||
151 | static void __exit ep93xx_rtc_exit(void) | ||
152 | { | ||
153 | platform_driver_unregister(&ep93xx_rtc_platform_driver); | ||
154 | } | ||
155 | |||
156 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
157 | MODULE_DESCRIPTION("EP93XX RTC driver"); | ||
158 | MODULE_LICENSE("GPL"); | ||
159 | MODULE_VERSION(DRV_VERSION); | ||
160 | |||
161 | module_init(ep93xx_rtc_init); | ||
162 | module_exit(ep93xx_rtc_exit); | ||
diff --git a/drivers/rtc/rtc-lib.c b/drivers/rtc/rtc-lib.c new file mode 100644 index 000000000000..cfedc1d28ee1 --- /dev/null +++ b/drivers/rtc/rtc-lib.c | |||
@@ -0,0 +1,101 @@ | |||
1 | /* | ||
2 | * rtc and date/time utility functions | ||
3 | * | ||
4 | * Copyright (C) 2005-06 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * based on arch/arm/common/rtctime.c and other bits | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/rtc.h> | ||
16 | |||
17 | static const unsigned char rtc_days_in_month[] = { | ||
18 | 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 | ||
19 | }; | ||
20 | |||
21 | #define LEAPS_THRU_END_OF(y) ((y)/4 - (y)/100 + (y)/400) | ||
22 | #define LEAP_YEAR(year) ((!(year % 4) && (year % 100)) || !(year % 400)) | ||
23 | |||
24 | int rtc_month_days(unsigned int month, unsigned int year) | ||
25 | { | ||
26 | return rtc_days_in_month[month] + (LEAP_YEAR(year) && month == 1); | ||
27 | } | ||
28 | EXPORT_SYMBOL(rtc_month_days); | ||
29 | |||
30 | /* | ||
31 | * Convert seconds since 01-01-1970 00:00:00 to Gregorian date. | ||
32 | */ | ||
33 | void rtc_time_to_tm(unsigned long time, struct rtc_time *tm) | ||
34 | { | ||
35 | register int days, month, year; | ||
36 | |||
37 | days = time / 86400; | ||
38 | time -= days * 86400; | ||
39 | |||
40 | /* day of the week, 1970-01-01 was a Thursday */ | ||
41 | tm->tm_wday = (days + 4) % 7; | ||
42 | |||
43 | year = 1970 + days / 365; | ||
44 | days -= (year - 1970) * 365 | ||
45 | + LEAPS_THRU_END_OF(year - 1) | ||
46 | - LEAPS_THRU_END_OF(1970 - 1); | ||
47 | if (days < 0) { | ||
48 | year -= 1; | ||
49 | days += 365 + LEAP_YEAR(year); | ||
50 | } | ||
51 | tm->tm_year = year - 1900; | ||
52 | tm->tm_yday = days + 1; | ||
53 | |||
54 | for (month = 0; month < 11; month++) { | ||
55 | int newdays; | ||
56 | |||
57 | newdays = days - rtc_month_days(month, year); | ||
58 | if (newdays < 0) | ||
59 | break; | ||
60 | days = newdays; | ||
61 | } | ||
62 | tm->tm_mon = month; | ||
63 | tm->tm_mday = days + 1; | ||
64 | |||
65 | tm->tm_hour = time / 3600; | ||
66 | time -= tm->tm_hour * 3600; | ||
67 | tm->tm_min = time / 60; | ||
68 | tm->tm_sec = time - tm->tm_min * 60; | ||
69 | } | ||
70 | EXPORT_SYMBOL(rtc_time_to_tm); | ||
71 | |||
72 | /* | ||
73 | * Does the rtc_time represent a valid date/time? | ||
74 | */ | ||
75 | int rtc_valid_tm(struct rtc_time *tm) | ||
76 | { | ||
77 | if (tm->tm_year < 70 | ||
78 | || tm->tm_mon >= 12 | ||
79 | || tm->tm_mday < 1 | ||
80 | || tm->tm_mday > rtc_month_days(tm->tm_mon, tm->tm_year + 1900) | ||
81 | || tm->tm_hour >= 24 | ||
82 | || tm->tm_min >= 60 | ||
83 | || tm->tm_sec >= 60) | ||
84 | return -EINVAL; | ||
85 | |||
86 | return 0; | ||
87 | } | ||
88 | EXPORT_SYMBOL(rtc_valid_tm); | ||
89 | |||
90 | /* | ||
91 | * Convert Gregorian date to seconds since 01-01-1970 00:00:00. | ||
92 | */ | ||
93 | int rtc_tm_to_time(struct rtc_time *tm, unsigned long *time) | ||
94 | { | ||
95 | *time = mktime(tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, | ||
96 | tm->tm_hour, tm->tm_min, tm->tm_sec); | ||
97 | return 0; | ||
98 | } | ||
99 | EXPORT_SYMBOL(rtc_tm_to_time); | ||
100 | |||
101 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c new file mode 100644 index 000000000000..db445c872b1b --- /dev/null +++ b/drivers/rtc/rtc-m48t86.c | |||
@@ -0,0 +1,209 @@ | |||
1 | /* | ||
2 | * ST M48T86 / Dallas DS12887 RTC driver | ||
3 | * Copyright (c) 2006 Tower Technologies | ||
4 | * | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | * | ||
11 | * This drivers only supports the clock running in BCD and 24H mode. | ||
12 | * If it will be ever adapted to binary and 12H mode, care must be taken | ||
13 | * to not introduce bugs. | ||
14 | */ | ||
15 | |||
16 | #include <linux/module.h> | ||
17 | #include <linux/rtc.h> | ||
18 | #include <linux/platform_device.h> | ||
19 | #include <linux/m48t86.h> | ||
20 | #include <linux/bcd.h> | ||
21 | |||
22 | #define M48T86_REG_SEC 0x00 | ||
23 | #define M48T86_REG_SECALRM 0x01 | ||
24 | #define M48T86_REG_MIN 0x02 | ||
25 | #define M48T86_REG_MINALRM 0x03 | ||
26 | #define M48T86_REG_HOUR 0x04 | ||
27 | #define M48T86_REG_HOURALRM 0x05 | ||
28 | #define M48T86_REG_DOW 0x06 /* 1 = sunday */ | ||
29 | #define M48T86_REG_DOM 0x07 | ||
30 | #define M48T86_REG_MONTH 0x08 /* 1 - 12 */ | ||
31 | #define M48T86_REG_YEAR 0x09 /* 0 - 99 */ | ||
32 | #define M48T86_REG_A 0x0A | ||
33 | #define M48T86_REG_B 0x0B | ||
34 | #define M48T86_REG_C 0x0C | ||
35 | #define M48T86_REG_D 0x0D | ||
36 | |||
37 | #define M48T86_REG_B_H24 (1 << 1) | ||
38 | #define M48T86_REG_B_DM (1 << 2) | ||
39 | #define M48T86_REG_B_SET (1 << 7) | ||
40 | #define M48T86_REG_D_VRT (1 << 7) | ||
41 | |||
42 | #define DRV_VERSION "0.1" | ||
43 | |||
44 | |||
45 | static int m48t86_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
46 | { | ||
47 | unsigned char reg; | ||
48 | struct platform_device *pdev = to_platform_device(dev); | ||
49 | struct m48t86_ops *ops = pdev->dev.platform_data; | ||
50 | |||
51 | reg = ops->readb(M48T86_REG_B); | ||
52 | |||
53 | if (reg & M48T86_REG_B_DM) { | ||
54 | /* data (binary) mode */ | ||
55 | tm->tm_sec = ops->readb(M48T86_REG_SEC); | ||
56 | tm->tm_min = ops->readb(M48T86_REG_MIN); | ||
57 | tm->tm_hour = ops->readb(M48T86_REG_HOUR) & 0x3F; | ||
58 | tm->tm_mday = ops->readb(M48T86_REG_DOM); | ||
59 | /* tm_mon is 0-11 */ | ||
60 | tm->tm_mon = ops->readb(M48T86_REG_MONTH) - 1; | ||
61 | tm->tm_year = ops->readb(M48T86_REG_YEAR) + 100; | ||
62 | tm->tm_wday = ops->readb(M48T86_REG_DOW); | ||
63 | } else { | ||
64 | /* bcd mode */ | ||
65 | tm->tm_sec = BCD2BIN(ops->readb(M48T86_REG_SEC)); | ||
66 | tm->tm_min = BCD2BIN(ops->readb(M48T86_REG_MIN)); | ||
67 | tm->tm_hour = BCD2BIN(ops->readb(M48T86_REG_HOUR) & 0x3F); | ||
68 | tm->tm_mday = BCD2BIN(ops->readb(M48T86_REG_DOM)); | ||
69 | /* tm_mon is 0-11 */ | ||
70 | tm->tm_mon = BCD2BIN(ops->readb(M48T86_REG_MONTH)) - 1; | ||
71 | tm->tm_year = BCD2BIN(ops->readb(M48T86_REG_YEAR)) + 100; | ||
72 | tm->tm_wday = BCD2BIN(ops->readb(M48T86_REG_DOW)); | ||
73 | } | ||
74 | |||
75 | /* correct the hour if the clock is in 12h mode */ | ||
76 | if (!(reg & M48T86_REG_B_H24)) | ||
77 | if (ops->readb(M48T86_REG_HOUR) & 0x80) | ||
78 | tm->tm_hour += 12; | ||
79 | |||
80 | return 0; | ||
81 | } | ||
82 | |||
83 | static int m48t86_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
84 | { | ||
85 | unsigned char reg; | ||
86 | struct platform_device *pdev = to_platform_device(dev); | ||
87 | struct m48t86_ops *ops = pdev->dev.platform_data; | ||
88 | |||
89 | reg = ops->readb(M48T86_REG_B); | ||
90 | |||
91 | /* update flag and 24h mode */ | ||
92 | reg |= M48T86_REG_B_SET | M48T86_REG_B_H24; | ||
93 | ops->writeb(reg, M48T86_REG_B); | ||
94 | |||
95 | if (reg & M48T86_REG_B_DM) { | ||
96 | /* data (binary) mode */ | ||
97 | ops->writeb(tm->tm_sec, M48T86_REG_SEC); | ||
98 | ops->writeb(tm->tm_min, M48T86_REG_MIN); | ||
99 | ops->writeb(tm->tm_hour, M48T86_REG_HOUR); | ||
100 | ops->writeb(tm->tm_mday, M48T86_REG_DOM); | ||
101 | ops->writeb(tm->tm_mon + 1, M48T86_REG_MONTH); | ||
102 | ops->writeb(tm->tm_year % 100, M48T86_REG_YEAR); | ||
103 | ops->writeb(tm->tm_wday, M48T86_REG_DOW); | ||
104 | } else { | ||
105 | /* bcd mode */ | ||
106 | ops->writeb(BIN2BCD(tm->tm_sec), M48T86_REG_SEC); | ||
107 | ops->writeb(BIN2BCD(tm->tm_min), M48T86_REG_MIN); | ||
108 | ops->writeb(BIN2BCD(tm->tm_hour), M48T86_REG_HOUR); | ||
109 | ops->writeb(BIN2BCD(tm->tm_mday), M48T86_REG_DOM); | ||
110 | ops->writeb(BIN2BCD(tm->tm_mon + 1), M48T86_REG_MONTH); | ||
111 | ops->writeb(BIN2BCD(tm->tm_year % 100), M48T86_REG_YEAR); | ||
112 | ops->writeb(BIN2BCD(tm->tm_wday), M48T86_REG_DOW); | ||
113 | } | ||
114 | |||
115 | /* update ended */ | ||
116 | reg &= ~M48T86_REG_B_SET; | ||
117 | ops->writeb(reg, M48T86_REG_B); | ||
118 | |||
119 | return 0; | ||
120 | } | ||
121 | |||
122 | static int m48t86_rtc_proc(struct device *dev, struct seq_file *seq) | ||
123 | { | ||
124 | unsigned char reg; | ||
125 | struct platform_device *pdev = to_platform_device(dev); | ||
126 | struct m48t86_ops *ops = pdev->dev.platform_data; | ||
127 | |||
128 | reg = ops->readb(M48T86_REG_B); | ||
129 | |||
130 | seq_printf(seq, "24hr\t\t: %s\n", | ||
131 | (reg & M48T86_REG_B_H24) ? "yes" : "no"); | ||
132 | |||
133 | seq_printf(seq, "mode\t\t: %s\n", | ||
134 | (reg & M48T86_REG_B_DM) ? "binary" : "bcd"); | ||
135 | |||
136 | reg = ops->readb(M48T86_REG_D); | ||
137 | |||
138 | seq_printf(seq, "battery\t\t: %s\n", | ||
139 | (reg & M48T86_REG_D_VRT) ? "ok" : "exhausted"); | ||
140 | |||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | static struct rtc_class_ops m48t86_rtc_ops = { | ||
145 | .read_time = m48t86_rtc_read_time, | ||
146 | .set_time = m48t86_rtc_set_time, | ||
147 | .proc = m48t86_rtc_proc, | ||
148 | }; | ||
149 | |||
150 | static int __devinit m48t86_rtc_probe(struct platform_device *dev) | ||
151 | { | ||
152 | unsigned char reg; | ||
153 | struct m48t86_ops *ops = dev->dev.platform_data; | ||
154 | struct rtc_device *rtc = rtc_device_register("m48t86", | ||
155 | &dev->dev, &m48t86_rtc_ops, THIS_MODULE); | ||
156 | |||
157 | if (IS_ERR(rtc)) { | ||
158 | dev_err(&dev->dev, "unable to register\n"); | ||
159 | return PTR_ERR(rtc); | ||
160 | } | ||
161 | |||
162 | platform_set_drvdata(dev, rtc); | ||
163 | |||
164 | /* read battery status */ | ||
165 | reg = ops->readb(M48T86_REG_D); | ||
166 | dev_info(&dev->dev, "battery %s\n", | ||
167 | (reg & M48T86_REG_D_VRT) ? "ok" : "exhausted"); | ||
168 | |||
169 | return 0; | ||
170 | } | ||
171 | |||
172 | static int __devexit m48t86_rtc_remove(struct platform_device *dev) | ||
173 | { | ||
174 | struct rtc_device *rtc = platform_get_drvdata(dev); | ||
175 | |||
176 | if (rtc) | ||
177 | rtc_device_unregister(rtc); | ||
178 | |||
179 | platform_set_drvdata(dev, NULL); | ||
180 | |||
181 | return 0; | ||
182 | } | ||
183 | |||
184 | static struct platform_driver m48t86_rtc_platform_driver = { | ||
185 | .driver = { | ||
186 | .name = "rtc-m48t86", | ||
187 | .owner = THIS_MODULE, | ||
188 | }, | ||
189 | .probe = m48t86_rtc_probe, | ||
190 | .remove = __devexit_p(m48t86_rtc_remove), | ||
191 | }; | ||
192 | |||
193 | static int __init m48t86_rtc_init(void) | ||
194 | { | ||
195 | return platform_driver_register(&m48t86_rtc_platform_driver); | ||
196 | } | ||
197 | |||
198 | static void __exit m48t86_rtc_exit(void) | ||
199 | { | ||
200 | platform_driver_unregister(&m48t86_rtc_platform_driver); | ||
201 | } | ||
202 | |||
203 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
204 | MODULE_DESCRIPTION("M48T86 RTC driver"); | ||
205 | MODULE_LICENSE("GPL"); | ||
206 | MODULE_VERSION(DRV_VERSION); | ||
207 | |||
208 | module_init(m48t86_rtc_init); | ||
209 | module_exit(m48t86_rtc_exit); | ||
diff --git a/drivers/rtc/rtc-pcf8563.c b/drivers/rtc/rtc-pcf8563.c new file mode 100644 index 000000000000..d857d45bdbe8 --- /dev/null +++ b/drivers/rtc/rtc-pcf8563.c | |||
@@ -0,0 +1,353 @@ | |||
1 | /* | ||
2 | * An I2C driver for the Philips PCF8563 RTC | ||
3 | * Copyright 2005-06 Tower Technologies | ||
4 | * | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * Maintainers: http://www.nslu2-linux.org/ | ||
7 | * | ||
8 | * based on the other drivers in this same directory. | ||
9 | * | ||
10 | * http://www.semiconductors.philips.com/acrobat/datasheets/PCF8563-04.pdf | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify | ||
13 | * it under the terms of the GNU General Public License version 2 as | ||
14 | * published by the Free Software Foundation. | ||
15 | */ | ||
16 | |||
17 | #include <linux/i2c.h> | ||
18 | #include <linux/bcd.h> | ||
19 | #include <linux/rtc.h> | ||
20 | |||
21 | #define DRV_VERSION "0.4.2" | ||
22 | |||
23 | /* Addresses to scan: none | ||
24 | * This chip cannot be reliably autodetected. An empty eeprom | ||
25 | * located at 0x51 will pass the validation routine due to | ||
26 | * the way the registers are implemented. | ||
27 | */ | ||
28 | static unsigned short normal_i2c[] = { I2C_CLIENT_END }; | ||
29 | |||
30 | /* Module parameters */ | ||
31 | I2C_CLIENT_INSMOD; | ||
32 | |||
33 | #define PCF8563_REG_ST1 0x00 /* status */ | ||
34 | #define PCF8563_REG_ST2 0x01 | ||
35 | |||
36 | #define PCF8563_REG_SC 0x02 /* datetime */ | ||
37 | #define PCF8563_REG_MN 0x03 | ||
38 | #define PCF8563_REG_HR 0x04 | ||
39 | #define PCF8563_REG_DM 0x05 | ||
40 | #define PCF8563_REG_DW 0x06 | ||
41 | #define PCF8563_REG_MO 0x07 | ||
42 | #define PCF8563_REG_YR 0x08 | ||
43 | |||
44 | #define PCF8563_REG_AMN 0x09 /* alarm */ | ||
45 | #define PCF8563_REG_AHR 0x0A | ||
46 | #define PCF8563_REG_ADM 0x0B | ||
47 | #define PCF8563_REG_ADW 0x0C | ||
48 | |||
49 | #define PCF8563_REG_CLKO 0x0D /* clock out */ | ||
50 | #define PCF8563_REG_TMRC 0x0E /* timer control */ | ||
51 | #define PCF8563_REG_TMR 0x0F /* timer */ | ||
52 | |||
53 | #define PCF8563_SC_LV 0x80 /* low voltage */ | ||
54 | #define PCF8563_MO_C 0x80 /* century */ | ||
55 | |||
56 | static int pcf8563_probe(struct i2c_adapter *adapter, int address, int kind); | ||
57 | static int pcf8563_detach(struct i2c_client *client); | ||
58 | |||
59 | /* | ||
60 | * In the routines that deal directly with the pcf8563 hardware, we use | ||
61 | * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch. | ||
62 | */ | ||
63 | static int pcf8563_get_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
64 | { | ||
65 | unsigned char buf[13] = { PCF8563_REG_ST1 }; | ||
66 | |||
67 | struct i2c_msg msgs[] = { | ||
68 | { client->addr, 0, 1, buf }, /* setup read ptr */ | ||
69 | { client->addr, I2C_M_RD, 13, buf }, /* read status + date */ | ||
70 | }; | ||
71 | |||
72 | /* read registers */ | ||
73 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { | ||
74 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
75 | return -EIO; | ||
76 | } | ||
77 | |||
78 | if (buf[PCF8563_REG_SC] & PCF8563_SC_LV) | ||
79 | dev_info(&client->dev, | ||
80 | "low voltage detected, date/time is not reliable.\n"); | ||
81 | |||
82 | dev_dbg(&client->dev, | ||
83 | "%s: raw data is st1=%02x, st2=%02x, sec=%02x, min=%02x, hr=%02x, " | ||
84 | "mday=%02x, wday=%02x, mon=%02x, year=%02x\n", | ||
85 | __FUNCTION__, | ||
86 | buf[0], buf[1], buf[2], buf[3], | ||
87 | buf[4], buf[5], buf[6], buf[7], | ||
88 | buf[8]); | ||
89 | |||
90 | |||
91 | tm->tm_sec = BCD2BIN(buf[PCF8563_REG_SC] & 0x7F); | ||
92 | tm->tm_min = BCD2BIN(buf[PCF8563_REG_MN] & 0x7F); | ||
93 | tm->tm_hour = BCD2BIN(buf[PCF8563_REG_HR] & 0x3F); /* rtc hr 0-23 */ | ||
94 | tm->tm_mday = BCD2BIN(buf[PCF8563_REG_DM] & 0x3F); | ||
95 | tm->tm_wday = buf[PCF8563_REG_DW] & 0x07; | ||
96 | tm->tm_mon = BCD2BIN(buf[PCF8563_REG_MO] & 0x1F) - 1; /* rtc mn 1-12 */ | ||
97 | tm->tm_year = BCD2BIN(buf[PCF8563_REG_YR]) | ||
98 | + (buf[PCF8563_REG_MO] & PCF8563_MO_C ? 100 : 0); | ||
99 | |||
100 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | ||
101 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
102 | __FUNCTION__, | ||
103 | tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
104 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
105 | |||
106 | /* the clock can give out invalid datetime, but we cannot return | ||
107 | * -EINVAL otherwise hwclock will refuse to set the time on bootup. | ||
108 | */ | ||
109 | if (rtc_valid_tm(tm) < 0) | ||
110 | dev_err(&client->dev, "retrieved date/time is not valid.\n"); | ||
111 | |||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | static int pcf8563_set_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
116 | { | ||
117 | int i, err; | ||
118 | unsigned char buf[9]; | ||
119 | |||
120 | dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, " | ||
121 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
122 | __FUNCTION__, | ||
123 | tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
124 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
125 | |||
126 | /* hours, minutes and seconds */ | ||
127 | buf[PCF8563_REG_SC] = BIN2BCD(tm->tm_sec); | ||
128 | buf[PCF8563_REG_MN] = BIN2BCD(tm->tm_min); | ||
129 | buf[PCF8563_REG_HR] = BIN2BCD(tm->tm_hour); | ||
130 | |||
131 | buf[PCF8563_REG_DM] = BIN2BCD(tm->tm_mday); | ||
132 | |||
133 | /* month, 1 - 12 */ | ||
134 | buf[PCF8563_REG_MO] = BIN2BCD(tm->tm_mon + 1); | ||
135 | |||
136 | /* year and century */ | ||
137 | buf[PCF8563_REG_YR] = BIN2BCD(tm->tm_year % 100); | ||
138 | if (tm->tm_year / 100) | ||
139 | buf[PCF8563_REG_MO] |= PCF8563_MO_C; | ||
140 | |||
141 | buf[PCF8563_REG_DW] = tm->tm_wday & 0x07; | ||
142 | |||
143 | /* write register's data */ | ||
144 | for (i = 0; i < 7; i++) { | ||
145 | unsigned char data[2] = { PCF8563_REG_SC + i, | ||
146 | buf[PCF8563_REG_SC + i] }; | ||
147 | |||
148 | err = i2c_master_send(client, data, sizeof(data)); | ||
149 | if (err != sizeof(data)) { | ||
150 | dev_err(&client->dev, | ||
151 | "%s: err=%d addr=%02x, data=%02x\n", | ||
152 | __FUNCTION__, err, data[0], data[1]); | ||
153 | return -EIO; | ||
154 | } | ||
155 | }; | ||
156 | |||
157 | return 0; | ||
158 | } | ||
159 | |||
160 | struct pcf8563_limit | ||
161 | { | ||
162 | unsigned char reg; | ||
163 | unsigned char mask; | ||
164 | unsigned char min; | ||
165 | unsigned char max; | ||
166 | }; | ||
167 | |||
168 | static int pcf8563_validate_client(struct i2c_client *client) | ||
169 | { | ||
170 | int i; | ||
171 | |||
172 | static const struct pcf8563_limit pattern[] = { | ||
173 | /* register, mask, min, max */ | ||
174 | { PCF8563_REG_SC, 0x7F, 0, 59 }, | ||
175 | { PCF8563_REG_MN, 0x7F, 0, 59 }, | ||
176 | { PCF8563_REG_HR, 0x3F, 0, 23 }, | ||
177 | { PCF8563_REG_DM, 0x3F, 0, 31 }, | ||
178 | { PCF8563_REG_MO, 0x1F, 0, 12 }, | ||
179 | }; | ||
180 | |||
181 | /* check limits (only registers with bcd values) */ | ||
182 | for (i = 0; i < ARRAY_SIZE(pattern); i++) { | ||
183 | int xfer; | ||
184 | unsigned char value; | ||
185 | unsigned char buf = pattern[i].reg; | ||
186 | |||
187 | struct i2c_msg msgs[] = { | ||
188 | { client->addr, 0, 1, &buf }, | ||
189 | { client->addr, I2C_M_RD, 1, &buf }, | ||
190 | }; | ||
191 | |||
192 | xfer = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs)); | ||
193 | |||
194 | if (xfer != ARRAY_SIZE(msgs)) { | ||
195 | dev_err(&client->adapter->dev, | ||
196 | "%s: could not read register 0x%02X\n", | ||
197 | __FUNCTION__, pattern[i].reg); | ||
198 | |||
199 | return -EIO; | ||
200 | } | ||
201 | |||
202 | value = BCD2BIN(buf & pattern[i].mask); | ||
203 | |||
204 | if (value > pattern[i].max || | ||
205 | value < pattern[i].min) { | ||
206 | dev_dbg(&client->adapter->dev, | ||
207 | "%s: pattern=%d, reg=%x, mask=0x%02x, min=%d, " | ||
208 | "max=%d, value=%d, raw=0x%02X\n", | ||
209 | __FUNCTION__, i, pattern[i].reg, pattern[i].mask, | ||
210 | pattern[i].min, pattern[i].max, | ||
211 | value, buf); | ||
212 | |||
213 | return -ENODEV; | ||
214 | } | ||
215 | } | ||
216 | |||
217 | return 0; | ||
218 | } | ||
219 | |||
220 | static int pcf8563_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
221 | { | ||
222 | return pcf8563_get_datetime(to_i2c_client(dev), tm); | ||
223 | } | ||
224 | |||
225 | static int pcf8563_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
226 | { | ||
227 | return pcf8563_set_datetime(to_i2c_client(dev), tm); | ||
228 | } | ||
229 | |||
230 | static int pcf8563_rtc_proc(struct device *dev, struct seq_file *seq) | ||
231 | { | ||
232 | seq_printf(seq, "24hr\t\t: yes\n"); | ||
233 | return 0; | ||
234 | } | ||
235 | |||
236 | static struct rtc_class_ops pcf8563_rtc_ops = { | ||
237 | .proc = pcf8563_rtc_proc, | ||
238 | .read_time = pcf8563_rtc_read_time, | ||
239 | .set_time = pcf8563_rtc_set_time, | ||
240 | }; | ||
241 | |||
242 | static int pcf8563_attach(struct i2c_adapter *adapter) | ||
243 | { | ||
244 | return i2c_probe(adapter, &addr_data, pcf8563_probe); | ||
245 | } | ||
246 | |||
247 | static struct i2c_driver pcf8563_driver = { | ||
248 | .driver = { | ||
249 | .name = "pcf8563", | ||
250 | }, | ||
251 | .id = I2C_DRIVERID_PCF8563, | ||
252 | .attach_adapter = &pcf8563_attach, | ||
253 | .detach_client = &pcf8563_detach, | ||
254 | }; | ||
255 | |||
256 | static int pcf8563_probe(struct i2c_adapter *adapter, int address, int kind) | ||
257 | { | ||
258 | struct i2c_client *client; | ||
259 | struct rtc_device *rtc; | ||
260 | |||
261 | int err = 0; | ||
262 | |||
263 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
264 | |||
265 | if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { | ||
266 | err = -ENODEV; | ||
267 | goto exit; | ||
268 | } | ||
269 | |||
270 | if (!(client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL))) { | ||
271 | err = -ENOMEM; | ||
272 | goto exit; | ||
273 | } | ||
274 | |||
275 | client->addr = address; | ||
276 | client->driver = &pcf8563_driver; | ||
277 | client->adapter = adapter; | ||
278 | |||
279 | strlcpy(client->name, pcf8563_driver.driver.name, I2C_NAME_SIZE); | ||
280 | |||
281 | /* Verify the chip is really an PCF8563 */ | ||
282 | if (kind < 0) { | ||
283 | if (pcf8563_validate_client(client) < 0) { | ||
284 | err = -ENODEV; | ||
285 | goto exit_kfree; | ||
286 | } | ||
287 | } | ||
288 | |||
289 | /* Inform the i2c layer */ | ||
290 | if ((err = i2c_attach_client(client))) | ||
291 | goto exit_kfree; | ||
292 | |||
293 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); | ||
294 | |||
295 | rtc = rtc_device_register(pcf8563_driver.driver.name, &client->dev, | ||
296 | &pcf8563_rtc_ops, THIS_MODULE); | ||
297 | |||
298 | if (IS_ERR(rtc)) { | ||
299 | err = PTR_ERR(rtc); | ||
300 | dev_err(&client->dev, | ||
301 | "unable to register the class device\n"); | ||
302 | goto exit_detach; | ||
303 | } | ||
304 | |||
305 | i2c_set_clientdata(client, rtc); | ||
306 | |||
307 | return 0; | ||
308 | |||
309 | exit_detach: | ||
310 | i2c_detach_client(client); | ||
311 | |||
312 | exit_kfree: | ||
313 | kfree(client); | ||
314 | |||
315 | exit: | ||
316 | return err; | ||
317 | } | ||
318 | |||
319 | static int pcf8563_detach(struct i2c_client *client) | ||
320 | { | ||
321 | int err; | ||
322 | struct rtc_device *rtc = i2c_get_clientdata(client); | ||
323 | |||
324 | dev_dbg(&client->dev, "%s\n", __FUNCTION__); | ||
325 | |||
326 | if (rtc) | ||
327 | rtc_device_unregister(rtc); | ||
328 | |||
329 | if ((err = i2c_detach_client(client))) | ||
330 | return err; | ||
331 | |||
332 | kfree(client); | ||
333 | |||
334 | return 0; | ||
335 | } | ||
336 | |||
337 | static int __init pcf8563_init(void) | ||
338 | { | ||
339 | return i2c_add_driver(&pcf8563_driver); | ||
340 | } | ||
341 | |||
342 | static void __exit pcf8563_exit(void) | ||
343 | { | ||
344 | i2c_del_driver(&pcf8563_driver); | ||
345 | } | ||
346 | |||
347 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
348 | MODULE_DESCRIPTION("Philips PCF8563/Epson RTC8564 RTC driver"); | ||
349 | MODULE_LICENSE("GPL"); | ||
350 | MODULE_VERSION(DRV_VERSION); | ||
351 | |||
352 | module_init(pcf8563_init); | ||
353 | module_exit(pcf8563_exit); | ||
diff --git a/drivers/rtc/rtc-proc.c b/drivers/rtc/rtc-proc.c new file mode 100644 index 000000000000..90b8a97a0919 --- /dev/null +++ b/drivers/rtc/rtc-proc.c | |||
@@ -0,0 +1,162 @@ | |||
1 | /* | ||
2 | * RTC subsystem, proc interface | ||
3 | * | ||
4 | * Copyright (C) 2005-06 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * based on arch/arm/common/rtctime.c | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/rtc.h> | ||
16 | #include <linux/proc_fs.h> | ||
17 | #include <linux/seq_file.h> | ||
18 | |||
19 | static struct class_device *rtc_dev = NULL; | ||
20 | static DEFINE_MUTEX(rtc_lock); | ||
21 | |||
22 | static int rtc_proc_show(struct seq_file *seq, void *offset) | ||
23 | { | ||
24 | int err; | ||
25 | struct class_device *class_dev = seq->private; | ||
26 | struct rtc_class_ops *ops = to_rtc_device(class_dev)->ops; | ||
27 | struct rtc_wkalrm alrm; | ||
28 | struct rtc_time tm; | ||
29 | |||
30 | err = rtc_read_time(class_dev, &tm); | ||
31 | if (err == 0) { | ||
32 | seq_printf(seq, | ||
33 | "rtc_time\t: %02d:%02d:%02d\n" | ||
34 | "rtc_date\t: %04d-%02d-%02d\n", | ||
35 | tm.tm_hour, tm.tm_min, tm.tm_sec, | ||
36 | tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday); | ||
37 | } | ||
38 | |||
39 | err = rtc_read_alarm(class_dev, &alrm); | ||
40 | if (err == 0) { | ||
41 | seq_printf(seq, "alrm_time\t: "); | ||
42 | if ((unsigned int)alrm.time.tm_hour <= 24) | ||
43 | seq_printf(seq, "%02d:", alrm.time.tm_hour); | ||
44 | else | ||
45 | seq_printf(seq, "**:"); | ||
46 | if ((unsigned int)alrm.time.tm_min <= 59) | ||
47 | seq_printf(seq, "%02d:", alrm.time.tm_min); | ||
48 | else | ||
49 | seq_printf(seq, "**:"); | ||
50 | if ((unsigned int)alrm.time.tm_sec <= 59) | ||
51 | seq_printf(seq, "%02d\n", alrm.time.tm_sec); | ||
52 | else | ||
53 | seq_printf(seq, "**\n"); | ||
54 | |||
55 | seq_printf(seq, "alrm_date\t: "); | ||
56 | if ((unsigned int)alrm.time.tm_year <= 200) | ||
57 | seq_printf(seq, "%04d-", alrm.time.tm_year + 1900); | ||
58 | else | ||
59 | seq_printf(seq, "****-"); | ||
60 | if ((unsigned int)alrm.time.tm_mon <= 11) | ||
61 | seq_printf(seq, "%02d-", alrm.time.tm_mon + 1); | ||
62 | else | ||
63 | seq_printf(seq, "**-"); | ||
64 | if ((unsigned int)alrm.time.tm_mday <= 31) | ||
65 | seq_printf(seq, "%02d\n", alrm.time.tm_mday); | ||
66 | else | ||
67 | seq_printf(seq, "**\n"); | ||
68 | seq_printf(seq, "alrm_wakeup\t: %s\n", | ||
69 | alrm.enabled ? "yes" : "no"); | ||
70 | seq_printf(seq, "alrm_pending\t: %s\n", | ||
71 | alrm.pending ? "yes" : "no"); | ||
72 | } | ||
73 | |||
74 | if (ops->proc) | ||
75 | ops->proc(class_dev->dev, seq); | ||
76 | |||
77 | return 0; | ||
78 | } | ||
79 | |||
80 | static int rtc_proc_open(struct inode *inode, struct file *file) | ||
81 | { | ||
82 | struct class_device *class_dev = PDE(inode)->data; | ||
83 | |||
84 | if (!try_module_get(THIS_MODULE)) | ||
85 | return -ENODEV; | ||
86 | |||
87 | return single_open(file, rtc_proc_show, class_dev); | ||
88 | } | ||
89 | |||
90 | static int rtc_proc_release(struct inode *inode, struct file *file) | ||
91 | { | ||
92 | int res = single_release(inode, file); | ||
93 | module_put(THIS_MODULE); | ||
94 | return res; | ||
95 | } | ||
96 | |||
97 | static struct file_operations rtc_proc_fops = { | ||
98 | .open = rtc_proc_open, | ||
99 | .read = seq_read, | ||
100 | .llseek = seq_lseek, | ||
101 | .release = rtc_proc_release, | ||
102 | }; | ||
103 | |||
104 | static int rtc_proc_add_device(struct class_device *class_dev, | ||
105 | struct class_interface *class_intf) | ||
106 | { | ||
107 | mutex_lock(&rtc_lock); | ||
108 | if (rtc_dev == NULL) { | ||
109 | struct proc_dir_entry *ent; | ||
110 | |||
111 | rtc_dev = class_dev; | ||
112 | |||
113 | ent = create_proc_entry("driver/rtc", 0, NULL); | ||
114 | if (ent) { | ||
115 | struct rtc_device *rtc = to_rtc_device(class_dev); | ||
116 | |||
117 | ent->proc_fops = &rtc_proc_fops; | ||
118 | ent->owner = rtc->owner; | ||
119 | ent->data = class_dev; | ||
120 | |||
121 | dev_info(class_dev->dev, "rtc intf: proc\n"); | ||
122 | } | ||
123 | else | ||
124 | rtc_dev = NULL; | ||
125 | } | ||
126 | mutex_unlock(&rtc_lock); | ||
127 | |||
128 | return 0; | ||
129 | } | ||
130 | |||
131 | static void rtc_proc_remove_device(struct class_device *class_dev, | ||
132 | struct class_interface *class_intf) | ||
133 | { | ||
134 | mutex_lock(&rtc_lock); | ||
135 | if (rtc_dev == class_dev) { | ||
136 | remove_proc_entry("driver/rtc", NULL); | ||
137 | rtc_dev = NULL; | ||
138 | } | ||
139 | mutex_unlock(&rtc_lock); | ||
140 | } | ||
141 | |||
142 | static struct class_interface rtc_proc_interface = { | ||
143 | .add = &rtc_proc_add_device, | ||
144 | .remove = &rtc_proc_remove_device, | ||
145 | }; | ||
146 | |||
147 | static int __init rtc_proc_init(void) | ||
148 | { | ||
149 | return rtc_interface_register(&rtc_proc_interface); | ||
150 | } | ||
151 | |||
152 | static void __exit rtc_proc_exit(void) | ||
153 | { | ||
154 | class_interface_unregister(&rtc_proc_interface); | ||
155 | } | ||
156 | |||
157 | module_init(rtc_proc_init); | ||
158 | module_exit(rtc_proc_exit); | ||
159 | |||
160 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
161 | MODULE_DESCRIPTION("RTC class proc interface"); | ||
162 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-rs5c372.c b/drivers/rtc/rtc-rs5c372.c new file mode 100644 index 000000000000..396c8681f66c --- /dev/null +++ b/drivers/rtc/rtc-rs5c372.c | |||
@@ -0,0 +1,294 @@ | |||
1 | /* | ||
2 | * An I2C driver for the Ricoh RS5C372 RTC | ||
3 | * | ||
4 | * Copyright (C) 2005 Pavel Mironchik <pmironchik@optifacio.net> | ||
5 | * Copyright (C) 2006 Tower Technologies | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/i2c.h> | ||
13 | #include <linux/rtc.h> | ||
14 | #include <linux/bcd.h> | ||
15 | |||
16 | #define DRV_VERSION "0.2" | ||
17 | |||
18 | /* Addresses to scan */ | ||
19 | static unsigned short normal_i2c[] = { /* 0x32,*/ I2C_CLIENT_END }; | ||
20 | |||
21 | /* Insmod parameters */ | ||
22 | I2C_CLIENT_INSMOD; | ||
23 | |||
24 | #define RS5C372_REG_SECS 0 | ||
25 | #define RS5C372_REG_MINS 1 | ||
26 | #define RS5C372_REG_HOURS 2 | ||
27 | #define RS5C372_REG_WDAY 3 | ||
28 | #define RS5C372_REG_DAY 4 | ||
29 | #define RS5C372_REG_MONTH 5 | ||
30 | #define RS5C372_REG_YEAR 6 | ||
31 | #define RS5C372_REG_TRIM 7 | ||
32 | |||
33 | #define RS5C372_TRIM_XSL 0x80 | ||
34 | #define RS5C372_TRIM_MASK 0x7F | ||
35 | |||
36 | #define RS5C372_REG_BASE 0 | ||
37 | |||
38 | static int rs5c372_attach(struct i2c_adapter *adapter); | ||
39 | static int rs5c372_detach(struct i2c_client *client); | ||
40 | static int rs5c372_probe(struct i2c_adapter *adapter, int address, int kind); | ||
41 | |||
42 | static struct i2c_driver rs5c372_driver = { | ||
43 | .driver = { | ||
44 | .name = "rs5c372", | ||
45 | }, | ||
46 | .attach_adapter = &rs5c372_attach, | ||
47 | .detach_client = &rs5c372_detach, | ||
48 | }; | ||
49 | |||
50 | static int rs5c372_get_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
51 | { | ||
52 | unsigned char buf[7] = { RS5C372_REG_BASE }; | ||
53 | |||
54 | /* this implements the 1st reading method, according | ||
55 | * to the datasheet. buf[0] is initialized with | ||
56 | * address ptr and transmission format register. | ||
57 | */ | ||
58 | struct i2c_msg msgs[] = { | ||
59 | { client->addr, 0, 1, buf }, | ||
60 | { client->addr, I2C_M_RD, 7, buf }, | ||
61 | }; | ||
62 | |||
63 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { | ||
64 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
65 | return -EIO; | ||
66 | } | ||
67 | |||
68 | tm->tm_sec = BCD2BIN(buf[RS5C372_REG_SECS] & 0x7f); | ||
69 | tm->tm_min = BCD2BIN(buf[RS5C372_REG_MINS] & 0x7f); | ||
70 | tm->tm_hour = BCD2BIN(buf[RS5C372_REG_HOURS] & 0x3f); | ||
71 | tm->tm_wday = BCD2BIN(buf[RS5C372_REG_WDAY] & 0x07); | ||
72 | tm->tm_mday = BCD2BIN(buf[RS5C372_REG_DAY] & 0x3f); | ||
73 | |||
74 | /* tm->tm_mon is zero-based */ | ||
75 | tm->tm_mon = BCD2BIN(buf[RS5C372_REG_MONTH] & 0x1f) - 1; | ||
76 | |||
77 | /* year is 1900 + tm->tm_year */ | ||
78 | tm->tm_year = BCD2BIN(buf[RS5C372_REG_YEAR]) + 100; | ||
79 | |||
80 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | ||
81 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
82 | __FUNCTION__, | ||
83 | tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
84 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
85 | |||
86 | return 0; | ||
87 | } | ||
88 | |||
89 | static int rs5c372_set_datetime(struct i2c_client *client, struct rtc_time *tm) | ||
90 | { | ||
91 | unsigned char buf[8] = { RS5C372_REG_BASE }; | ||
92 | |||
93 | dev_dbg(&client->dev, | ||
94 | "%s: secs=%d, mins=%d, hours=%d ", | ||
95 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
96 | __FUNCTION__, tm->tm_sec, tm->tm_min, tm->tm_hour, | ||
97 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
98 | |||
99 | buf[1] = BIN2BCD(tm->tm_sec); | ||
100 | buf[2] = BIN2BCD(tm->tm_min); | ||
101 | buf[3] = BIN2BCD(tm->tm_hour); | ||
102 | buf[4] = BIN2BCD(tm->tm_wday); | ||
103 | buf[5] = BIN2BCD(tm->tm_mday); | ||
104 | buf[6] = BIN2BCD(tm->tm_mon + 1); | ||
105 | buf[7] = BIN2BCD(tm->tm_year - 100); | ||
106 | |||
107 | if ((i2c_master_send(client, buf, 8)) != 8) { | ||
108 | dev_err(&client->dev, "%s: write error\n", __FUNCTION__); | ||
109 | return -EIO; | ||
110 | } | ||
111 | |||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | static int rs5c372_get_trim(struct i2c_client *client, int *osc, int *trim) | ||
116 | { | ||
117 | unsigned char buf = RS5C372_REG_TRIM; | ||
118 | |||
119 | struct i2c_msg msgs[] = { | ||
120 | { client->addr, 0, 1, &buf }, | ||
121 | { client->addr, I2C_M_RD, 1, &buf }, | ||
122 | }; | ||
123 | |||
124 | if ((i2c_transfer(client->adapter, msgs, 2)) != 2) { | ||
125 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
126 | return -EIO; | ||
127 | } | ||
128 | |||
129 | dev_dbg(&client->dev, "%s: raw trim=%x\n", __FUNCTION__, trim); | ||
130 | |||
131 | if (osc) | ||
132 | *osc = (buf & RS5C372_TRIM_XSL) ? 32000 : 32768; | ||
133 | |||
134 | if (trim) | ||
135 | *trim = buf & RS5C372_TRIM_MASK; | ||
136 | |||
137 | return 0; | ||
138 | } | ||
139 | |||
140 | static int rs5c372_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
141 | { | ||
142 | return rs5c372_get_datetime(to_i2c_client(dev), tm); | ||
143 | } | ||
144 | |||
145 | static int rs5c372_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
146 | { | ||
147 | return rs5c372_set_datetime(to_i2c_client(dev), tm); | ||
148 | } | ||
149 | |||
150 | static int rs5c372_rtc_proc(struct device *dev, struct seq_file *seq) | ||
151 | { | ||
152 | int err, osc, trim; | ||
153 | |||
154 | seq_printf(seq, "24hr\t\t: yes\n"); | ||
155 | |||
156 | if ((err = rs5c372_get_trim(to_i2c_client(dev), &osc, &trim)) == 0) { | ||
157 | seq_printf(seq, "%d.%03d KHz\n", osc / 1000, osc % 1000); | ||
158 | seq_printf(seq, "trim\t: %d\n", trim); | ||
159 | } | ||
160 | |||
161 | return 0; | ||
162 | } | ||
163 | |||
164 | static struct rtc_class_ops rs5c372_rtc_ops = { | ||
165 | .proc = rs5c372_rtc_proc, | ||
166 | .read_time = rs5c372_rtc_read_time, | ||
167 | .set_time = rs5c372_rtc_set_time, | ||
168 | }; | ||
169 | |||
170 | static ssize_t rs5c372_sysfs_show_trim(struct device *dev, | ||
171 | struct device_attribute *attr, char *buf) | ||
172 | { | ||
173 | int trim; | ||
174 | |||
175 | if (rs5c372_get_trim(to_i2c_client(dev), NULL, &trim) == 0) | ||
176 | return sprintf(buf, "0x%2x\n", trim); | ||
177 | |||
178 | return 0; | ||
179 | } | ||
180 | static DEVICE_ATTR(trim, S_IRUGO, rs5c372_sysfs_show_trim, NULL); | ||
181 | |||
182 | static ssize_t rs5c372_sysfs_show_osc(struct device *dev, | ||
183 | struct device_attribute *attr, char *buf) | ||
184 | { | ||
185 | int osc; | ||
186 | |||
187 | if (rs5c372_get_trim(to_i2c_client(dev), &osc, NULL) == 0) | ||
188 | return sprintf(buf, "%d.%03d KHz\n", osc / 1000, osc % 1000); | ||
189 | |||
190 | return 0; | ||
191 | } | ||
192 | static DEVICE_ATTR(osc, S_IRUGO, rs5c372_sysfs_show_osc, NULL); | ||
193 | |||
194 | static int rs5c372_attach(struct i2c_adapter *adapter) | ||
195 | { | ||
196 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
197 | return i2c_probe(adapter, &addr_data, rs5c372_probe); | ||
198 | } | ||
199 | |||
200 | static int rs5c372_probe(struct i2c_adapter *adapter, int address, int kind) | ||
201 | { | ||
202 | int err = 0; | ||
203 | struct i2c_client *client; | ||
204 | struct rtc_device *rtc; | ||
205 | |||
206 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
207 | |||
208 | if (!i2c_check_functionality(adapter, I2C_FUNC_I2C)) { | ||
209 | err = -ENODEV; | ||
210 | goto exit; | ||
211 | } | ||
212 | |||
213 | if (!(client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL))) { | ||
214 | err = -ENOMEM; | ||
215 | goto exit; | ||
216 | } | ||
217 | |||
218 | /* I2C client */ | ||
219 | client->addr = address; | ||
220 | client->driver = &rs5c372_driver; | ||
221 | client->adapter = adapter; | ||
222 | |||
223 | strlcpy(client->name, rs5c372_driver.driver.name, I2C_NAME_SIZE); | ||
224 | |||
225 | /* Inform the i2c layer */ | ||
226 | if ((err = i2c_attach_client(client))) | ||
227 | goto exit_kfree; | ||
228 | |||
229 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); | ||
230 | |||
231 | rtc = rtc_device_register(rs5c372_driver.driver.name, &client->dev, | ||
232 | &rs5c372_rtc_ops, THIS_MODULE); | ||
233 | |||
234 | if (IS_ERR(rtc)) { | ||
235 | err = PTR_ERR(rtc); | ||
236 | dev_err(&client->dev, | ||
237 | "unable to register the class device\n"); | ||
238 | goto exit_detach; | ||
239 | } | ||
240 | |||
241 | i2c_set_clientdata(client, rtc); | ||
242 | |||
243 | device_create_file(&client->dev, &dev_attr_trim); | ||
244 | device_create_file(&client->dev, &dev_attr_osc); | ||
245 | |||
246 | return 0; | ||
247 | |||
248 | exit_detach: | ||
249 | i2c_detach_client(client); | ||
250 | |||
251 | exit_kfree: | ||
252 | kfree(client); | ||
253 | |||
254 | exit: | ||
255 | return err; | ||
256 | } | ||
257 | |||
258 | static int rs5c372_detach(struct i2c_client *client) | ||
259 | { | ||
260 | int err; | ||
261 | struct rtc_device *rtc = i2c_get_clientdata(client); | ||
262 | |||
263 | dev_dbg(&client->dev, "%s\n", __FUNCTION__); | ||
264 | |||
265 | if (rtc) | ||
266 | rtc_device_unregister(rtc); | ||
267 | |||
268 | if ((err = i2c_detach_client(client))) | ||
269 | return err; | ||
270 | |||
271 | kfree(client); | ||
272 | |||
273 | return 0; | ||
274 | } | ||
275 | |||
276 | static __init int rs5c372_init(void) | ||
277 | { | ||
278 | return i2c_add_driver(&rs5c372_driver); | ||
279 | } | ||
280 | |||
281 | static __exit void rs5c372_exit(void) | ||
282 | { | ||
283 | i2c_del_driver(&rs5c372_driver); | ||
284 | } | ||
285 | |||
286 | module_init(rs5c372_init); | ||
287 | module_exit(rs5c372_exit); | ||
288 | |||
289 | MODULE_AUTHOR( | ||
290 | "Pavel Mironchik <pmironchik@optifacio.net>, " | ||
291 | "Alessandro Zummo <a.zummo@towertech.it>"); | ||
292 | MODULE_DESCRIPTION("Ricoh RS5C372 RTC driver"); | ||
293 | MODULE_LICENSE("GPL"); | ||
294 | MODULE_VERSION(DRV_VERSION); | ||
diff --git a/drivers/rtc/rtc-sa1100.c b/drivers/rtc/rtc-sa1100.c new file mode 100644 index 000000000000..83b2bb480a16 --- /dev/null +++ b/drivers/rtc/rtc-sa1100.c | |||
@@ -0,0 +1,388 @@ | |||
1 | /* | ||
2 | * Real Time Clock interface for StrongARM SA1x00 and XScale PXA2xx | ||
3 | * | ||
4 | * Copyright (c) 2000 Nils Faerber | ||
5 | * | ||
6 | * Based on rtc.c by Paul Gortmaker | ||
7 | * | ||
8 | * Original Driver by Nils Faerber <nils@kernelconcepts.de> | ||
9 | * | ||
10 | * Modifications from: | ||
11 | * CIH <cih@coventive.com> | ||
12 | * Nicolas Pitre <nico@cam.org> | ||
13 | * Andrew Christian <andrew.christian@hp.com> | ||
14 | * | ||
15 | * Converted to the RTC subsystem and Driver Model | ||
16 | * by Richard Purdie <rpurdie@rpsys.net> | ||
17 | * | ||
18 | * This program is free software; you can redistribute it and/or | ||
19 | * modify it under the terms of the GNU General Public License | ||
20 | * as published by the Free Software Foundation; either version | ||
21 | * 2 of the License, or (at your option) any later version. | ||
22 | */ | ||
23 | |||
24 | #include <linux/platform_device.h> | ||
25 | #include <linux/module.h> | ||
26 | #include <linux/rtc.h> | ||
27 | #include <linux/init.h> | ||
28 | #include <linux/fs.h> | ||
29 | #include <linux/interrupt.h> | ||
30 | #include <linux/string.h> | ||
31 | #include <linux/pm.h> | ||
32 | |||
33 | #include <asm/bitops.h> | ||
34 | #include <asm/hardware.h> | ||
35 | #include <asm/irq.h> | ||
36 | #include <asm/rtc.h> | ||
37 | |||
38 | #ifdef CONFIG_ARCH_PXA | ||
39 | #include <asm/arch/pxa-regs.h> | ||
40 | #endif | ||
41 | |||
42 | #define TIMER_FREQ CLOCK_TICK_RATE | ||
43 | #define RTC_DEF_DIVIDER 32768 - 1 | ||
44 | #define RTC_DEF_TRIM 0 | ||
45 | |||
46 | static unsigned long rtc_freq = 1024; | ||
47 | static struct rtc_time rtc_alarm; | ||
48 | static spinlock_t sa1100_rtc_lock = SPIN_LOCK_UNLOCKED; | ||
49 | |||
50 | static int rtc_update_alarm(struct rtc_time *alrm) | ||
51 | { | ||
52 | struct rtc_time alarm_tm, now_tm; | ||
53 | unsigned long now, time; | ||
54 | int ret; | ||
55 | |||
56 | do { | ||
57 | now = RCNR; | ||
58 | rtc_time_to_tm(now, &now_tm); | ||
59 | rtc_next_alarm_time(&alarm_tm, &now_tm, alrm); | ||
60 | ret = rtc_tm_to_time(&alarm_tm, &time); | ||
61 | if (ret != 0) | ||
62 | break; | ||
63 | |||
64 | RTSR = RTSR & (RTSR_HZE|RTSR_ALE|RTSR_AL); | ||
65 | RTAR = time; | ||
66 | } while (now != RCNR); | ||
67 | |||
68 | return ret; | ||
69 | } | ||
70 | |||
71 | static irqreturn_t sa1100_rtc_interrupt(int irq, void *dev_id, | ||
72 | struct pt_regs *regs) | ||
73 | { | ||
74 | struct platform_device *pdev = to_platform_device(dev_id); | ||
75 | struct rtc_device *rtc = platform_get_drvdata(pdev); | ||
76 | unsigned int rtsr; | ||
77 | unsigned long events = 0; | ||
78 | |||
79 | spin_lock(&sa1100_rtc_lock); | ||
80 | |||
81 | rtsr = RTSR; | ||
82 | /* clear interrupt sources */ | ||
83 | RTSR = 0; | ||
84 | RTSR = (RTSR_AL | RTSR_HZ) & (rtsr >> 2); | ||
85 | |||
86 | /* clear alarm interrupt if it has occurred */ | ||
87 | if (rtsr & RTSR_AL) | ||
88 | rtsr &= ~RTSR_ALE; | ||
89 | RTSR = rtsr & (RTSR_ALE | RTSR_HZE); | ||
90 | |||
91 | /* update irq data & counter */ | ||
92 | if (rtsr & RTSR_AL) | ||
93 | events |= RTC_AF | RTC_IRQF; | ||
94 | if (rtsr & RTSR_HZ) | ||
95 | events |= RTC_UF | RTC_IRQF; | ||
96 | |||
97 | rtc_update_irq(&rtc->class_dev, 1, events); | ||
98 | |||
99 | if (rtsr & RTSR_AL && rtc_periodic_alarm(&rtc_alarm)) | ||
100 | rtc_update_alarm(&rtc_alarm); | ||
101 | |||
102 | spin_unlock(&sa1100_rtc_lock); | ||
103 | |||
104 | return IRQ_HANDLED; | ||
105 | } | ||
106 | |||
107 | static int rtc_timer1_count; | ||
108 | |||
109 | static irqreturn_t timer1_interrupt(int irq, void *dev_id, | ||
110 | struct pt_regs *regs) | ||
111 | { | ||
112 | struct platform_device *pdev = to_platform_device(dev_id); | ||
113 | struct rtc_device *rtc = platform_get_drvdata(pdev); | ||
114 | |||
115 | /* | ||
116 | * If we match for the first time, rtc_timer1_count will be 1. | ||
117 | * Otherwise, we wrapped around (very unlikely but | ||
118 | * still possible) so compute the amount of missed periods. | ||
119 | * The match reg is updated only when the data is actually retrieved | ||
120 | * to avoid unnecessary interrupts. | ||
121 | */ | ||
122 | OSSR = OSSR_M1; /* clear match on timer1 */ | ||
123 | |||
124 | rtc_update_irq(&rtc->class_dev, rtc_timer1_count, RTC_PF | RTC_IRQF); | ||
125 | |||
126 | if (rtc_timer1_count == 1) | ||
127 | rtc_timer1_count = (rtc_freq * ((1<<30)/(TIMER_FREQ>>2))); | ||
128 | |||
129 | return IRQ_HANDLED; | ||
130 | } | ||
131 | |||
132 | static int sa1100_rtc_read_callback(struct device *dev, int data) | ||
133 | { | ||
134 | if (data & RTC_PF) { | ||
135 | /* interpolate missed periods and set match for the next */ | ||
136 | unsigned long period = TIMER_FREQ/rtc_freq; | ||
137 | unsigned long oscr = OSCR; | ||
138 | unsigned long osmr1 = OSMR1; | ||
139 | unsigned long missed = (oscr - osmr1)/period; | ||
140 | data += missed << 8; | ||
141 | OSSR = OSSR_M1; /* clear match on timer 1 */ | ||
142 | OSMR1 = osmr1 + (missed + 1)*period; | ||
143 | /* Ensure we didn't miss another match in the mean time. | ||
144 | * Here we compare (match - OSCR) 8 instead of 0 -- | ||
145 | * see comment in pxa_timer_interrupt() for explanation. | ||
146 | */ | ||
147 | while( (signed long)((osmr1 = OSMR1) - OSCR) <= 8 ) { | ||
148 | data += 0x100; | ||
149 | OSSR = OSSR_M1; /* clear match on timer 1 */ | ||
150 | OSMR1 = osmr1 + period; | ||
151 | } | ||
152 | } | ||
153 | return data; | ||
154 | } | ||
155 | |||
156 | static int sa1100_rtc_open(struct device *dev) | ||
157 | { | ||
158 | int ret; | ||
159 | |||
160 | ret = request_irq(IRQ_RTC1Hz, sa1100_rtc_interrupt, SA_INTERRUPT, | ||
161 | "rtc 1Hz", dev); | ||
162 | if (ret) { | ||
163 | printk(KERN_ERR "rtc: IRQ%d already in use.\n", IRQ_RTC1Hz); | ||
164 | goto fail_ui; | ||
165 | } | ||
166 | ret = request_irq(IRQ_RTCAlrm, sa1100_rtc_interrupt, SA_INTERRUPT, | ||
167 | "rtc Alrm", dev); | ||
168 | if (ret) { | ||
169 | printk(KERN_ERR "rtc: IRQ%d already in use.\n", IRQ_RTCAlrm); | ||
170 | goto fail_ai; | ||
171 | } | ||
172 | ret = request_irq(IRQ_OST1, timer1_interrupt, SA_INTERRUPT, | ||
173 | "rtc timer", dev); | ||
174 | if (ret) { | ||
175 | printk(KERN_ERR "rtc: IRQ%d already in use.\n", IRQ_OST1); | ||
176 | goto fail_pi; | ||
177 | } | ||
178 | return 0; | ||
179 | |||
180 | fail_pi: | ||
181 | free_irq(IRQ_RTCAlrm, NULL); | ||
182 | fail_ai: | ||
183 | free_irq(IRQ_RTC1Hz, NULL); | ||
184 | fail_ui: | ||
185 | return ret; | ||
186 | } | ||
187 | |||
188 | static void sa1100_rtc_release(struct device *dev) | ||
189 | { | ||
190 | spin_lock_irq(&sa1100_rtc_lock); | ||
191 | RTSR = 0; | ||
192 | OIER &= ~OIER_E1; | ||
193 | OSSR = OSSR_M1; | ||
194 | spin_unlock_irq(&sa1100_rtc_lock); | ||
195 | |||
196 | free_irq(IRQ_OST1, dev); | ||
197 | free_irq(IRQ_RTCAlrm, dev); | ||
198 | free_irq(IRQ_RTC1Hz, dev); | ||
199 | } | ||
200 | |||
201 | |||
202 | static int sa1100_rtc_ioctl(struct device *dev, unsigned int cmd, | ||
203 | unsigned long arg) | ||
204 | { | ||
205 | switch(cmd) { | ||
206 | case RTC_AIE_OFF: | ||
207 | spin_lock_irq(&sa1100_rtc_lock); | ||
208 | RTSR &= ~RTSR_ALE; | ||
209 | spin_unlock_irq(&sa1100_rtc_lock); | ||
210 | return 0; | ||
211 | case RTC_AIE_ON: | ||
212 | spin_lock_irq(&sa1100_rtc_lock); | ||
213 | RTSR |= RTSR_ALE; | ||
214 | spin_unlock_irq(&sa1100_rtc_lock); | ||
215 | return 0; | ||
216 | case RTC_UIE_OFF: | ||
217 | spin_lock_irq(&sa1100_rtc_lock); | ||
218 | RTSR &= ~RTSR_HZE; | ||
219 | spin_unlock_irq(&sa1100_rtc_lock); | ||
220 | return 0; | ||
221 | case RTC_UIE_ON: | ||
222 | spin_lock_irq(&sa1100_rtc_lock); | ||
223 | RTSR |= RTSR_HZE; | ||
224 | spin_unlock_irq(&sa1100_rtc_lock); | ||
225 | return 0; | ||
226 | case RTC_PIE_OFF: | ||
227 | spin_lock_irq(&sa1100_rtc_lock); | ||
228 | OIER &= ~OIER_E1; | ||
229 | spin_unlock_irq(&sa1100_rtc_lock); | ||
230 | return 0; | ||
231 | case RTC_PIE_ON: | ||
232 | if ((rtc_freq > 64) && !capable(CAP_SYS_RESOURCE)) | ||
233 | return -EACCES; | ||
234 | spin_lock_irq(&sa1100_rtc_lock); | ||
235 | OSMR1 = TIMER_FREQ/rtc_freq + OSCR; | ||
236 | OIER |= OIER_E1; | ||
237 | rtc_timer1_count = 1; | ||
238 | spin_unlock_irq(&sa1100_rtc_lock); | ||
239 | return 0; | ||
240 | case RTC_IRQP_READ: | ||
241 | return put_user(rtc_freq, (unsigned long *)arg); | ||
242 | case RTC_IRQP_SET: | ||
243 | if (arg < 1 || arg > TIMER_FREQ) | ||
244 | return -EINVAL; | ||
245 | if ((arg > 64) && (!capable(CAP_SYS_RESOURCE))) | ||
246 | return -EACCES; | ||
247 | rtc_freq = arg; | ||
248 | return 0; | ||
249 | } | ||
250 | return -EINVAL; | ||
251 | } | ||
252 | |||
253 | static int sa1100_rtc_read_time(struct device *dev, struct rtc_time *tm) | ||
254 | { | ||
255 | rtc_time_to_tm(RCNR, tm); | ||
256 | return 0; | ||
257 | } | ||
258 | |||
259 | static int sa1100_rtc_set_time(struct device *dev, struct rtc_time *tm) | ||
260 | { | ||
261 | unsigned long time; | ||
262 | int ret; | ||
263 | |||
264 | ret = rtc_tm_to_time(tm, &time); | ||
265 | if (ret == 0) | ||
266 | RCNR = time; | ||
267 | return ret; | ||
268 | } | ||
269 | |||
270 | static int sa1100_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) | ||
271 | { | ||
272 | memcpy(&alrm->time, &rtc_alarm, sizeof(struct rtc_time)); | ||
273 | alrm->pending = RTSR & RTSR_AL ? 1 : 0; | ||
274 | return 0; | ||
275 | } | ||
276 | |||
277 | static int sa1100_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) | ||
278 | { | ||
279 | int ret; | ||
280 | |||
281 | spin_lock_irq(&sa1100_rtc_lock); | ||
282 | ret = rtc_update_alarm(&alrm->time); | ||
283 | if (ret == 0) { | ||
284 | memcpy(&rtc_alarm, &alrm->time, sizeof(struct rtc_time)); | ||
285 | |||
286 | if (alrm->enabled) | ||
287 | enable_irq_wake(IRQ_RTCAlrm); | ||
288 | else | ||
289 | disable_irq_wake(IRQ_RTCAlrm); | ||
290 | } | ||
291 | spin_unlock_irq(&sa1100_rtc_lock); | ||
292 | |||
293 | return ret; | ||
294 | } | ||
295 | |||
296 | static int sa1100_rtc_proc(struct device *dev, struct seq_file *seq) | ||
297 | { | ||
298 | seq_printf(seq, "trim/divider\t: 0x%08x\n", RTTR); | ||
299 | seq_printf(seq, "alarm_IRQ\t: %s\n", | ||
300 | (RTSR & RTSR_ALE) ? "yes" : "no" ); | ||
301 | seq_printf(seq, "update_IRQ\t: %s\n", | ||
302 | (RTSR & RTSR_HZE) ? "yes" : "no"); | ||
303 | seq_printf(seq, "periodic_IRQ\t: %s\n", | ||
304 | (OIER & OIER_E1) ? "yes" : "no"); | ||
305 | seq_printf(seq, "periodic_freq\t: %ld\n", rtc_freq); | ||
306 | |||
307 | return 0; | ||
308 | } | ||
309 | |||
310 | static struct rtc_class_ops sa1100_rtc_ops = { | ||
311 | .open = sa1100_rtc_open, | ||
312 | .read_callback = sa1100_rtc_read_callback, | ||
313 | .release = sa1100_rtc_release, | ||
314 | .ioctl = sa1100_rtc_ioctl, | ||
315 | .read_time = sa1100_rtc_read_time, | ||
316 | .set_time = sa1100_rtc_set_time, | ||
317 | .read_alarm = sa1100_rtc_read_alarm, | ||
318 | .set_alarm = sa1100_rtc_set_alarm, | ||
319 | .proc = sa1100_rtc_proc, | ||
320 | }; | ||
321 | |||
322 | static int sa1100_rtc_probe(struct platform_device *pdev) | ||
323 | { | ||
324 | struct rtc_device *rtc; | ||
325 | |||
326 | /* | ||
327 | * According to the manual we should be able to let RTTR be zero | ||
328 | * and then a default diviser for a 32.768KHz clock is used. | ||
329 | * Apparently this doesn't work, at least for my SA1110 rev 5. | ||
330 | * If the clock divider is uninitialized then reset it to the | ||
331 | * default value to get the 1Hz clock. | ||
332 | */ | ||
333 | if (RTTR == 0) { | ||
334 | RTTR = RTC_DEF_DIVIDER + (RTC_DEF_TRIM << 16); | ||
335 | printk(KERN_WARNING "rtc: warning: initializing default clock divider/trim value\n"); | ||
336 | /* The current RTC value probably doesn't make sense either */ | ||
337 | RCNR = 0; | ||
338 | } | ||
339 | |||
340 | rtc = rtc_device_register(pdev->name, &pdev->dev, &sa1100_rtc_ops, | ||
341 | THIS_MODULE); | ||
342 | |||
343 | if (IS_ERR(rtc)) { | ||
344 | dev_err(&pdev->dev, "Unable to register the RTC device\n"); | ||
345 | return PTR_ERR(rtc); | ||
346 | } | ||
347 | |||
348 | platform_set_drvdata(pdev, rtc); | ||
349 | |||
350 | dev_info(&pdev->dev, "SA11xx/PXA2xx RTC Registered\n"); | ||
351 | |||
352 | return 0; | ||
353 | } | ||
354 | |||
355 | static int sa1100_rtc_remove(struct platform_device *pdev) | ||
356 | { | ||
357 | struct rtc_device *rtc = platform_get_drvdata(pdev); | ||
358 | |||
359 | if (rtc) | ||
360 | rtc_device_unregister(rtc); | ||
361 | |||
362 | return 0; | ||
363 | } | ||
364 | |||
365 | static struct platform_driver sa1100_rtc_driver = { | ||
366 | .probe = sa1100_rtc_probe, | ||
367 | .remove = sa1100_rtc_remove, | ||
368 | .driver = { | ||
369 | .name = "sa1100-rtc", | ||
370 | }, | ||
371 | }; | ||
372 | |||
373 | static int __init sa1100_rtc_init(void) | ||
374 | { | ||
375 | return platform_driver_register(&sa1100_rtc_driver); | ||
376 | } | ||
377 | |||
378 | static void __exit sa1100_rtc_exit(void) | ||
379 | { | ||
380 | platform_driver_unregister(&sa1100_rtc_driver); | ||
381 | } | ||
382 | |||
383 | module_init(sa1100_rtc_init); | ||
384 | module_exit(sa1100_rtc_exit); | ||
385 | |||
386 | MODULE_AUTHOR("Richard Purdie <rpurdie@rpsys.net>"); | ||
387 | MODULE_DESCRIPTION("SA11x0/PXA2xx Realtime Clock Driver (RTC)"); | ||
388 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-sysfs.c b/drivers/rtc/rtc-sysfs.c new file mode 100644 index 000000000000..7c1f3d2e53c4 --- /dev/null +++ b/drivers/rtc/rtc-sysfs.c | |||
@@ -0,0 +1,124 @@ | |||
1 | /* | ||
2 | * RTC subsystem, sysfs interface | ||
3 | * | ||
4 | * Copyright (C) 2005 Tower Technologies | ||
5 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | |||
12 | #include <linux/module.h> | ||
13 | #include <linux/rtc.h> | ||
14 | |||
15 | /* device attributes */ | ||
16 | |||
17 | static ssize_t rtc_sysfs_show_name(struct class_device *dev, char *buf) | ||
18 | { | ||
19 | return sprintf(buf, "%s\n", to_rtc_device(dev)->name); | ||
20 | } | ||
21 | static CLASS_DEVICE_ATTR(name, S_IRUGO, rtc_sysfs_show_name, NULL); | ||
22 | |||
23 | static ssize_t rtc_sysfs_show_date(struct class_device *dev, char *buf) | ||
24 | { | ||
25 | ssize_t retval; | ||
26 | struct rtc_time tm; | ||
27 | |||
28 | retval = rtc_read_time(dev, &tm); | ||
29 | if (retval == 0) { | ||
30 | retval = sprintf(buf, "%04d-%02d-%02d\n", | ||
31 | tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday); | ||
32 | } | ||
33 | |||
34 | return retval; | ||
35 | } | ||
36 | static CLASS_DEVICE_ATTR(date, S_IRUGO, rtc_sysfs_show_date, NULL); | ||
37 | |||
38 | static ssize_t rtc_sysfs_show_time(struct class_device *dev, char *buf) | ||
39 | { | ||
40 | ssize_t retval; | ||
41 | struct rtc_time tm; | ||
42 | |||
43 | retval = rtc_read_time(dev, &tm); | ||
44 | if (retval == 0) { | ||
45 | retval = sprintf(buf, "%02d:%02d:%02d\n", | ||
46 | tm.tm_hour, tm.tm_min, tm.tm_sec); | ||
47 | } | ||
48 | |||
49 | return retval; | ||
50 | } | ||
51 | static CLASS_DEVICE_ATTR(time, S_IRUGO, rtc_sysfs_show_time, NULL); | ||
52 | |||
53 | static ssize_t rtc_sysfs_show_since_epoch(struct class_device *dev, char *buf) | ||
54 | { | ||
55 | ssize_t retval; | ||
56 | struct rtc_time tm; | ||
57 | |||
58 | retval = rtc_read_time(dev, &tm); | ||
59 | if (retval == 0) { | ||
60 | unsigned long time; | ||
61 | rtc_tm_to_time(&tm, &time); | ||
62 | retval = sprintf(buf, "%lu\n", time); | ||
63 | } | ||
64 | |||
65 | return retval; | ||
66 | } | ||
67 | static CLASS_DEVICE_ATTR(since_epoch, S_IRUGO, rtc_sysfs_show_since_epoch, NULL); | ||
68 | |||
69 | static struct attribute *rtc_attrs[] = { | ||
70 | &class_device_attr_name.attr, | ||
71 | &class_device_attr_date.attr, | ||
72 | &class_device_attr_time.attr, | ||
73 | &class_device_attr_since_epoch.attr, | ||
74 | NULL, | ||
75 | }; | ||
76 | |||
77 | static struct attribute_group rtc_attr_group = { | ||
78 | .attrs = rtc_attrs, | ||
79 | }; | ||
80 | |||
81 | static int __devinit rtc_sysfs_add_device(struct class_device *class_dev, | ||
82 | struct class_interface *class_intf) | ||
83 | { | ||
84 | int err; | ||
85 | |||
86 | dev_info(class_dev->dev, "rtc intf: sysfs\n"); | ||
87 | |||
88 | err = sysfs_create_group(&class_dev->kobj, &rtc_attr_group); | ||
89 | if (err) | ||
90 | dev_err(class_dev->dev, | ||
91 | "failed to create sysfs attributes\n"); | ||
92 | |||
93 | return err; | ||
94 | } | ||
95 | |||
96 | static void rtc_sysfs_remove_device(struct class_device *class_dev, | ||
97 | struct class_interface *class_intf) | ||
98 | { | ||
99 | sysfs_remove_group(&class_dev->kobj, &rtc_attr_group); | ||
100 | } | ||
101 | |||
102 | /* interface registration */ | ||
103 | |||
104 | static struct class_interface rtc_sysfs_interface = { | ||
105 | .add = &rtc_sysfs_add_device, | ||
106 | .remove = &rtc_sysfs_remove_device, | ||
107 | }; | ||
108 | |||
109 | static int __init rtc_sysfs_init(void) | ||
110 | { | ||
111 | return rtc_interface_register(&rtc_sysfs_interface); | ||
112 | } | ||
113 | |||
114 | static void __exit rtc_sysfs_exit(void) | ||
115 | { | ||
116 | class_interface_unregister(&rtc_sysfs_interface); | ||
117 | } | ||
118 | |||
119 | module_init(rtc_sysfs_init); | ||
120 | module_exit(rtc_sysfs_exit); | ||
121 | |||
122 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
123 | MODULE_DESCRIPTION("RTC class sysfs interface"); | ||
124 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/rtc/rtc-test.c b/drivers/rtc/rtc-test.c new file mode 100644 index 000000000000..43d107487820 --- /dev/null +++ b/drivers/rtc/rtc-test.c | |||
@@ -0,0 +1,204 @@ | |||
1 | /* | ||
2 | * An RTC test device/driver | ||
3 | * Copyright (C) 2005 Tower Technologies | ||
4 | * Author: Alessandro Zummo <a.zummo@towertech.it> | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #include <linux/module.h> | ||
12 | #include <linux/err.h> | ||
13 | #include <linux/rtc.h> | ||
14 | #include <linux/platform_device.h> | ||
15 | |||
16 | static struct platform_device *test0 = NULL, *test1 = NULL; | ||
17 | |||
18 | static int test_rtc_read_alarm(struct device *dev, | ||
19 | struct rtc_wkalrm *alrm) | ||
20 | { | ||
21 | return 0; | ||
22 | } | ||
23 | |||
24 | static int test_rtc_set_alarm(struct device *dev, | ||
25 | struct rtc_wkalrm *alrm) | ||
26 | { | ||
27 | return 0; | ||
28 | } | ||
29 | |||
30 | static int test_rtc_read_time(struct device *dev, | ||
31 | struct rtc_time *tm) | ||
32 | { | ||
33 | rtc_time_to_tm(get_seconds(), tm); | ||
34 | return 0; | ||
35 | } | ||
36 | |||
37 | static int test_rtc_set_time(struct device *dev, | ||
38 | struct rtc_time *tm) | ||
39 | { | ||
40 | return 0; | ||
41 | } | ||
42 | |||
43 | static int test_rtc_set_mmss(struct device *dev, unsigned long secs) | ||
44 | { | ||
45 | return 0; | ||
46 | } | ||
47 | |||
48 | static int test_rtc_proc(struct device *dev, struct seq_file *seq) | ||
49 | { | ||
50 | struct platform_device *plat_dev = to_platform_device(dev); | ||
51 | |||
52 | seq_printf(seq, "24hr\t\t: yes\n"); | ||
53 | seq_printf(seq, "test\t\t: yes\n"); | ||
54 | seq_printf(seq, "id\t\t: %d\n", plat_dev->id); | ||
55 | |||
56 | return 0; | ||
57 | } | ||
58 | |||
59 | static int test_rtc_ioctl(struct device *dev, unsigned int cmd, | ||
60 | unsigned long arg) | ||
61 | { | ||
62 | /* We do support interrupts, they're generated | ||
63 | * using the sysfs interface. | ||
64 | */ | ||
65 | switch (cmd) { | ||
66 | case RTC_PIE_ON: | ||
67 | case RTC_PIE_OFF: | ||
68 | case RTC_UIE_ON: | ||
69 | case RTC_UIE_OFF: | ||
70 | case RTC_AIE_ON: | ||
71 | case RTC_AIE_OFF: | ||
72 | return 0; | ||
73 | |||
74 | default: | ||
75 | return -EINVAL; | ||
76 | } | ||
77 | } | ||
78 | |||
79 | static struct rtc_class_ops test_rtc_ops = { | ||
80 | .proc = test_rtc_proc, | ||
81 | .read_time = test_rtc_read_time, | ||
82 | .set_time = test_rtc_set_time, | ||
83 | .read_alarm = test_rtc_read_alarm, | ||
84 | .set_alarm = test_rtc_set_alarm, | ||
85 | .set_mmss = test_rtc_set_mmss, | ||
86 | .ioctl = test_rtc_ioctl, | ||
87 | }; | ||
88 | |||
89 | static ssize_t test_irq_show(struct device *dev, | ||
90 | struct device_attribute *attr, char *buf) | ||
91 | { | ||
92 | return sprintf(buf, "%d\n", 42); | ||
93 | } | ||
94 | static ssize_t test_irq_store(struct device *dev, | ||
95 | struct device_attribute *attr, | ||
96 | const char *buf, size_t count) | ||
97 | { | ||
98 | int retval; | ||
99 | struct platform_device *plat_dev = to_platform_device(dev); | ||
100 | struct rtc_device *rtc = platform_get_drvdata(plat_dev); | ||
101 | |||
102 | retval = count; | ||
103 | if (strncmp(buf, "tick", 4) == 0) | ||
104 | rtc_update_irq(&rtc->class_dev, 1, RTC_PF | RTC_IRQF); | ||
105 | else if (strncmp(buf, "alarm", 5) == 0) | ||
106 | rtc_update_irq(&rtc->class_dev, 1, RTC_AF | RTC_IRQF); | ||
107 | else if (strncmp(buf, "update", 6) == 0) | ||
108 | rtc_update_irq(&rtc->class_dev, 1, RTC_UF | RTC_IRQF); | ||
109 | else | ||
110 | retval = -EINVAL; | ||
111 | |||
112 | return retval; | ||
113 | } | ||
114 | static DEVICE_ATTR(irq, S_IRUGO | S_IWUSR, test_irq_show, test_irq_store); | ||
115 | |||
116 | static int test_probe(struct platform_device *plat_dev) | ||
117 | { | ||
118 | int err; | ||
119 | struct rtc_device *rtc = rtc_device_register("test", &plat_dev->dev, | ||
120 | &test_rtc_ops, THIS_MODULE); | ||
121 | if (IS_ERR(rtc)) { | ||
122 | err = PTR_ERR(rtc); | ||
123 | dev_err(&plat_dev->dev, | ||
124 | "unable to register the class device\n"); | ||
125 | return err; | ||
126 | } | ||
127 | device_create_file(&plat_dev->dev, &dev_attr_irq); | ||
128 | |||
129 | platform_set_drvdata(plat_dev, rtc); | ||
130 | |||
131 | return 0; | ||
132 | } | ||
133 | |||
134 | static int __devexit test_remove(struct platform_device *plat_dev) | ||
135 | { | ||
136 | struct rtc_device *rtc = platform_get_drvdata(plat_dev); | ||
137 | |||
138 | rtc_device_unregister(rtc); | ||
139 | device_remove_file(&plat_dev->dev, &dev_attr_irq); | ||
140 | |||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | static struct platform_driver test_drv = { | ||
145 | .probe = test_probe, | ||
146 | .remove = __devexit_p(test_remove), | ||
147 | .driver = { | ||
148 | .name = "rtc-test", | ||
149 | .owner = THIS_MODULE, | ||
150 | }, | ||
151 | }; | ||
152 | |||
153 | static int __init test_init(void) | ||
154 | { | ||
155 | int err; | ||
156 | |||
157 | if ((err = platform_driver_register(&test_drv))) | ||
158 | return err; | ||
159 | |||
160 | if ((test0 = platform_device_alloc("rtc-test", 0)) == NULL) { | ||
161 | err = -ENOMEM; | ||
162 | goto exit_driver_unregister; | ||
163 | } | ||
164 | |||
165 | if ((test1 = platform_device_alloc("rtc-test", 1)) == NULL) { | ||
166 | err = -ENOMEM; | ||
167 | goto exit_free_test0; | ||
168 | } | ||
169 | |||
170 | if ((err = platform_device_add(test0))) | ||
171 | goto exit_free_test1; | ||
172 | |||
173 | if ((err = platform_device_add(test1))) | ||
174 | goto exit_device_unregister; | ||
175 | |||
176 | return 0; | ||
177 | |||
178 | exit_device_unregister: | ||
179 | platform_device_unregister(test0); | ||
180 | |||
181 | exit_free_test1: | ||
182 | platform_device_put(test1); | ||
183 | |||
184 | exit_free_test0: | ||
185 | platform_device_put(test0); | ||
186 | |||
187 | exit_driver_unregister: | ||
188 | platform_driver_unregister(&test_drv); | ||
189 | return err; | ||
190 | } | ||
191 | |||
192 | static void __exit test_exit(void) | ||
193 | { | ||
194 | platform_device_unregister(test0); | ||
195 | platform_device_unregister(test1); | ||
196 | platform_driver_unregister(&test_drv); | ||
197 | } | ||
198 | |||
199 | MODULE_AUTHOR("Alessandro Zummo <a.zummo@towertech.it>"); | ||
200 | MODULE_DESCRIPTION("RTC test driver/device"); | ||
201 | MODULE_LICENSE("GPL"); | ||
202 | |||
203 | module_init(test_init); | ||
204 | module_exit(test_exit); | ||
diff --git a/drivers/i2c/chips/x1205.c b/drivers/rtc/rtc-x1205.c index 245fffa92dbd..621d17afc0d9 100644 --- a/drivers/i2c/chips/x1205.c +++ b/drivers/rtc/rtc-x1205.c | |||
@@ -1,32 +1,25 @@ | |||
1 | /* | 1 | /* |
2 | * x1205.c - An i2c driver for the Xicor X1205 RTC | 2 | * An i2c driver for the Xicor/Intersil X1205 RTC |
3 | * Copyright 2004 Karen Spearel | 3 | * Copyright 2004 Karen Spearel |
4 | * Copyright 2005 Alessandro Zummo | 4 | * Copyright 2005 Alessandro Zummo |
5 | * | 5 | * |
6 | * please send all reports to: | 6 | * please send all reports to: |
7 | * kas11 at tampabay dot rr dot com | 7 | * Karen Spearel <kas111 at gmail dot com> |
8 | * a dot zummo at towertech dot it | 8 | * Alessandro Zummo <a.zummo@towertech.it> |
9 | * | 9 | * |
10 | * based on the other drivers in this same directory. | 10 | * based on a lot of other RTC drivers. |
11 | * | 11 | * |
12 | * This program is free software; you can redistribute it and/or modify | 12 | * This program is free software; you can redistribute it and/or modify |
13 | * it under the terms of the GNU General Public License as published by | 13 | * it under the terms of the GNU General Public License version 2 as |
14 | * the Free Software Foundation; either version 2 of the License, or | 14 | * published by the Free Software Foundation. |
15 | * (at your option) any later version. | ||
16 | */ | 15 | */ |
17 | 16 | ||
18 | #include <linux/module.h> | ||
19 | #include <linux/init.h> | ||
20 | #include <linux/slab.h> | ||
21 | #include <linux/i2c.h> | 17 | #include <linux/i2c.h> |
22 | #include <linux/string.h> | ||
23 | #include <linux/bcd.h> | 18 | #include <linux/bcd.h> |
24 | #include <linux/rtc.h> | 19 | #include <linux/rtc.h> |
25 | #include <linux/list.h> | 20 | #include <linux/delay.h> |
26 | 21 | ||
27 | #include <linux/x1205.h> | 22 | #define DRV_VERSION "1.0.6" |
28 | |||
29 | #define DRV_VERSION "0.9.9" | ||
30 | 23 | ||
31 | /* Addresses to scan: none. This chip is located at | 24 | /* Addresses to scan: none. This chip is located at |
32 | * 0x6f and uses a two bytes register addressing. | 25 | * 0x6f and uses a two bytes register addressing. |
@@ -40,8 +33,6 @@ static unsigned short normal_i2c[] = { I2C_CLIENT_END }; | |||
40 | 33 | ||
41 | /* Insmod parameters */ | 34 | /* Insmod parameters */ |
42 | I2C_CLIENT_INSMOD; | 35 | I2C_CLIENT_INSMOD; |
43 | I2C_CLIENT_MODULE_PARM(hctosys, | ||
44 | "Set the system time from the hardware clock upon initialization"); | ||
45 | 36 | ||
46 | /* offsets into CCR area */ | 37 | /* offsets into CCR area */ |
47 | 38 | ||
@@ -101,107 +92,35 @@ I2C_CLIENT_MODULE_PARM(hctosys, | |||
101 | static int x1205_attach(struct i2c_adapter *adapter); | 92 | static int x1205_attach(struct i2c_adapter *adapter); |
102 | static int x1205_detach(struct i2c_client *client); | 93 | static int x1205_detach(struct i2c_client *client); |
103 | static int x1205_probe(struct i2c_adapter *adapter, int address, int kind); | 94 | static int x1205_probe(struct i2c_adapter *adapter, int address, int kind); |
104 | static int x1205_command(struct i2c_client *client, unsigned int cmd, | ||
105 | void *arg); | ||
106 | 95 | ||
107 | static struct i2c_driver x1205_driver = { | 96 | static struct i2c_driver x1205_driver = { |
108 | .driver = { | 97 | .driver = { |
109 | .name = "x1205", | 98 | .name = "x1205", |
110 | }, | 99 | }, |
100 | .id = I2C_DRIVERID_X1205, | ||
111 | .attach_adapter = &x1205_attach, | 101 | .attach_adapter = &x1205_attach, |
112 | .detach_client = &x1205_detach, | 102 | .detach_client = &x1205_detach, |
113 | }; | 103 | }; |
114 | 104 | ||
115 | struct x1205_data { | ||
116 | struct i2c_client client; | ||
117 | struct list_head list; | ||
118 | unsigned int epoch; | ||
119 | }; | ||
120 | |||
121 | static const unsigned char days_in_mo[] = | ||
122 | { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; | ||
123 | |||
124 | static LIST_HEAD(x1205_clients); | ||
125 | |||
126 | /* Workaround until the I2C subsytem will allow to send | ||
127 | * commands to a specific client. This function will send the command | ||
128 | * to the first client. | ||
129 | */ | ||
130 | int x1205_do_command(unsigned int cmd, void *arg) | ||
131 | { | ||
132 | struct list_head *walk; | ||
133 | struct list_head *tmp; | ||
134 | struct x1205_data *data; | ||
135 | |||
136 | list_for_each_safe(walk, tmp, &x1205_clients) { | ||
137 | data = list_entry(walk, struct x1205_data, list); | ||
138 | return x1205_command(&data->client, cmd, arg); | ||
139 | } | ||
140 | |||
141 | return -ENODEV; | ||
142 | } | ||
143 | |||
144 | #define is_leap(year) \ | ||
145 | ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0)) | ||
146 | |||
147 | /* make sure the rtc_time values are in bounds */ | ||
148 | static int x1205_validate_tm(struct rtc_time *tm) | ||
149 | { | ||
150 | int year = tm->tm_year + 1900; | ||
151 | |||
152 | if ((tm->tm_year < 70) || (tm->tm_year > 255)) | ||
153 | return -EINVAL; | ||
154 | |||
155 | if ((tm->tm_mon > 11) || (tm->tm_mday == 0)) | ||
156 | return -EINVAL; | ||
157 | |||
158 | if (tm->tm_mday > days_in_mo[tm->tm_mon] | ||
159 | + ((tm->tm_mon == 1) && is_leap(year))) | ||
160 | return -EINVAL; | ||
161 | |||
162 | if ((tm->tm_hour >= 24) || (tm->tm_min >= 60) || (tm->tm_sec >= 60)) | ||
163 | return -EINVAL; | ||
164 | |||
165 | return 0; | ||
166 | } | ||
167 | |||
168 | /* | 105 | /* |
169 | * In the routines that deal directly with the x1205 hardware, we use | 106 | * In the routines that deal directly with the x1205 hardware, we use |
170 | * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch | 107 | * rtc_time -- month 0-11, hour 0-23, yr = calendar year-epoch |
171 | * Epoch is initialized as 2000. Time is set to UTC. | 108 | * Epoch is initialized as 2000. Time is set to UTC. |
172 | */ | 109 | */ |
173 | static int x1205_get_datetime(struct i2c_client *client, struct rtc_time *tm, | 110 | static int x1205_get_datetime(struct i2c_client *client, struct rtc_time *tm, |
174 | u8 reg_base) | 111 | unsigned char reg_base) |
175 | { | 112 | { |
176 | unsigned char dt_addr[2] = { 0, reg_base }; | 113 | unsigned char dt_addr[2] = { 0, reg_base }; |
177 | static unsigned char sr_addr[2] = { 0, X1205_REG_SR }; | ||
178 | 114 | ||
179 | unsigned char buf[8], sr; | 115 | unsigned char buf[8]; |
180 | 116 | ||
181 | struct i2c_msg msgs[] = { | 117 | struct i2c_msg msgs[] = { |
182 | { client->addr, 0, 2, sr_addr }, /* setup read ptr */ | ||
183 | { client->addr, I2C_M_RD, 1, &sr }, /* read status */ | ||
184 | { client->addr, 0, 2, dt_addr }, /* setup read ptr */ | 118 | { client->addr, 0, 2, dt_addr }, /* setup read ptr */ |
185 | { client->addr, I2C_M_RD, 8, buf }, /* read date */ | 119 | { client->addr, I2C_M_RD, 8, buf }, /* read date */ |
186 | }; | 120 | }; |
187 | 121 | ||
188 | struct x1205_data *data = i2c_get_clientdata(client); | ||
189 | |||
190 | /* read status register */ | ||
191 | if ((i2c_transfer(client->adapter, &msgs[0], 2)) != 2) { | ||
192 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
193 | return -EIO; | ||
194 | } | ||
195 | |||
196 | /* check for battery failure */ | ||
197 | if (sr & X1205_SR_RTCF) { | ||
198 | dev_warn(&client->dev, | ||
199 | "Clock had a power failure, you must set the date.\n"); | ||
200 | return -EINVAL; | ||
201 | } | ||
202 | |||
203 | /* read date registers */ | 122 | /* read date registers */ |
204 | if ((i2c_transfer(client->adapter, &msgs[2], 2)) != 2) { | 123 | if ((i2c_transfer(client->adapter, &msgs[0], 2)) != 2) { |
205 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | 124 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); |
206 | return -EIO; | 125 | return -EIO; |
207 | } | 126 | } |
@@ -217,9 +136,9 @@ static int x1205_get_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
217 | tm->tm_min = BCD2BIN(buf[CCR_MIN]); | 136 | tm->tm_min = BCD2BIN(buf[CCR_MIN]); |
218 | tm->tm_hour = BCD2BIN(buf[CCR_HOUR] & 0x3F); /* hr is 0-23 */ | 137 | tm->tm_hour = BCD2BIN(buf[CCR_HOUR] & 0x3F); /* hr is 0-23 */ |
219 | tm->tm_mday = BCD2BIN(buf[CCR_MDAY]); | 138 | tm->tm_mday = BCD2BIN(buf[CCR_MDAY]); |
220 | tm->tm_mon = BCD2BIN(buf[CCR_MONTH]); | 139 | tm->tm_mon = BCD2BIN(buf[CCR_MONTH]) - 1; /* mon is 0-11 */ |
221 | data->epoch = BCD2BIN(buf[CCR_Y2K]) * 100; | 140 | tm->tm_year = BCD2BIN(buf[CCR_YEAR]) |
222 | tm->tm_year = BCD2BIN(buf[CCR_YEAR]) + data->epoch - 1900; | 141 | + (BCD2BIN(buf[CCR_Y2K]) * 100) - 1900; |
223 | tm->tm_wday = buf[CCR_WDAY]; | 142 | tm->tm_wday = buf[CCR_WDAY]; |
224 | 143 | ||
225 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " | 144 | dev_dbg(&client->dev, "%s: tm is secs=%d, mins=%d, hours=%d, " |
@@ -231,11 +150,28 @@ static int x1205_get_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
231 | return 0; | 150 | return 0; |
232 | } | 151 | } |
233 | 152 | ||
153 | static int x1205_get_status(struct i2c_client *client, unsigned char *sr) | ||
154 | { | ||
155 | static unsigned char sr_addr[2] = { 0, X1205_REG_SR }; | ||
156 | |||
157 | struct i2c_msg msgs[] = { | ||
158 | { client->addr, 0, 2, sr_addr }, /* setup read ptr */ | ||
159 | { client->addr, I2C_M_RD, 1, sr }, /* read status */ | ||
160 | }; | ||
161 | |||
162 | /* read status register */ | ||
163 | if ((i2c_transfer(client->adapter, &msgs[0], 2)) != 2) { | ||
164 | dev_err(&client->dev, "%s: read error\n", __FUNCTION__); | ||
165 | return -EIO; | ||
166 | } | ||
167 | |||
168 | return 0; | ||
169 | } | ||
170 | |||
234 | static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | 171 | static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, |
235 | int datetoo, u8 reg_base) | 172 | int datetoo, u8 reg_base) |
236 | { | 173 | { |
237 | int i, err, xfer; | 174 | int i, xfer; |
238 | |||
239 | unsigned char buf[8]; | 175 | unsigned char buf[8]; |
240 | 176 | ||
241 | static const unsigned char wel[3] = { 0, X1205_REG_SR, | 177 | static const unsigned char wel[3] = { 0, X1205_REG_SR, |
@@ -246,17 +182,10 @@ static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
246 | 182 | ||
247 | static const unsigned char diswe[3] = { 0, X1205_REG_SR, 0 }; | 183 | static const unsigned char diswe[3] = { 0, X1205_REG_SR, 0 }; |
248 | 184 | ||
249 | struct x1205_data *data = i2c_get_clientdata(client); | 185 | dev_dbg(&client->dev, |
250 | 186 | "%s: secs=%d, mins=%d, hours=%d\n", | |
251 | /* check if all values in the tm struct are correct */ | ||
252 | if ((err = x1205_validate_tm(tm)) < 0) | ||
253 | return err; | ||
254 | |||
255 | dev_dbg(&client->dev, "%s: secs=%d, mins=%d, hours=%d, " | ||
256 | "mday=%d, mon=%d, year=%d, wday=%d\n", | ||
257 | __FUNCTION__, | 187 | __FUNCTION__, |
258 | tm->tm_sec, tm->tm_min, tm->tm_hour, | 188 | tm->tm_sec, tm->tm_min, tm->tm_hour); |
259 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
260 | 189 | ||
261 | buf[CCR_SEC] = BIN2BCD(tm->tm_sec); | 190 | buf[CCR_SEC] = BIN2BCD(tm->tm_sec); |
262 | buf[CCR_MIN] = BIN2BCD(tm->tm_min); | 191 | buf[CCR_MIN] = BIN2BCD(tm->tm_min); |
@@ -266,26 +195,29 @@ static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
266 | 195 | ||
267 | /* should we also set the date? */ | 196 | /* should we also set the date? */ |
268 | if (datetoo) { | 197 | if (datetoo) { |
198 | dev_dbg(&client->dev, | ||
199 | "%s: mday=%d, mon=%d, year=%d, wday=%d\n", | ||
200 | __FUNCTION__, | ||
201 | tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday); | ||
202 | |||
269 | buf[CCR_MDAY] = BIN2BCD(tm->tm_mday); | 203 | buf[CCR_MDAY] = BIN2BCD(tm->tm_mday); |
270 | 204 | ||
271 | /* month, 0 - 11 */ | 205 | /* month, 1 - 12 */ |
272 | buf[CCR_MONTH] = BIN2BCD(tm->tm_mon); | 206 | buf[CCR_MONTH] = BIN2BCD(tm->tm_mon + 1); |
273 | 207 | ||
274 | /* year, since 1900 */ | 208 | /* year, since the rtc epoch*/ |
275 | buf[CCR_YEAR] = BIN2BCD(tm->tm_year + 1900 - data->epoch); | 209 | buf[CCR_YEAR] = BIN2BCD(tm->tm_year % 100); |
276 | buf[CCR_WDAY] = tm->tm_wday & 0x07; | 210 | buf[CCR_WDAY] = tm->tm_wday & 0x07; |
277 | buf[CCR_Y2K] = BIN2BCD(data->epoch / 100); | 211 | buf[CCR_Y2K] = BIN2BCD(tm->tm_year / 100); |
278 | } | 212 | } |
279 | 213 | ||
280 | /* this sequence is required to unlock the chip */ | 214 | /* this sequence is required to unlock the chip */ |
281 | xfer = i2c_master_send(client, wel, 3); | 215 | if ((xfer = i2c_master_send(client, wel, 3)) != 3) { |
282 | if (xfer != 3) { | ||
283 | dev_err(&client->dev, "%s: wel - %d\n", __FUNCTION__, xfer); | 216 | dev_err(&client->dev, "%s: wel - %d\n", __FUNCTION__, xfer); |
284 | return -EIO; | 217 | return -EIO; |
285 | } | 218 | } |
286 | 219 | ||
287 | xfer = i2c_master_send(client, rwel, 3); | 220 | if ((xfer = i2c_master_send(client, rwel, 3)) != 3) { |
288 | if (xfer != 3) { | ||
289 | dev_err(&client->dev, "%s: rwel - %d\n", __FUNCTION__, xfer); | 221 | dev_err(&client->dev, "%s: rwel - %d\n", __FUNCTION__, xfer); |
290 | return -EIO; | 222 | return -EIO; |
291 | } | 223 | } |
@@ -305,8 +237,7 @@ static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
305 | }; | 237 | }; |
306 | 238 | ||
307 | /* disable further writes */ | 239 | /* disable further writes */ |
308 | xfer = i2c_master_send(client, diswe, 3); | 240 | if ((xfer = i2c_master_send(client, diswe, 3)) != 3) { |
309 | if (xfer != 3) { | ||
310 | dev_err(&client->dev, "%s: diswe - %d\n", __FUNCTION__, xfer); | 241 | dev_err(&client->dev, "%s: diswe - %d\n", __FUNCTION__, xfer); |
311 | return -EIO; | 242 | return -EIO; |
312 | } | 243 | } |
@@ -314,6 +245,20 @@ static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
314 | return 0; | 245 | return 0; |
315 | } | 246 | } |
316 | 247 | ||
248 | static int x1205_fix_osc(struct i2c_client *client) | ||
249 | { | ||
250 | int err; | ||
251 | struct rtc_time tm; | ||
252 | |||
253 | tm.tm_hour = tm.tm_min = tm.tm_sec = 0; | ||
254 | |||
255 | if ((err = x1205_set_datetime(client, &tm, 0, X1205_CCR_BASE)) < 0) | ||
256 | dev_err(&client->dev, | ||
257 | "unable to restart the oscillator\n"); | ||
258 | |||
259 | return err; | ||
260 | } | ||
261 | |||
317 | static int x1205_get_dtrim(struct i2c_client *client, int *trim) | 262 | static int x1205_get_dtrim(struct i2c_client *client, int *trim) |
318 | { | 263 | { |
319 | unsigned char dtr; | 264 | unsigned char dtr; |
@@ -380,60 +325,9 @@ static int x1205_get_atrim(struct i2c_client *client, int *trim) | |||
380 | return 0; | 325 | return 0; |
381 | } | 326 | } |
382 | 327 | ||
383 | static int x1205_hctosys(struct i2c_client *client) | ||
384 | { | ||
385 | int err; | ||
386 | |||
387 | struct rtc_time tm; | ||
388 | struct timespec tv; | ||
389 | |||
390 | err = x1205_command(client, X1205_CMD_GETDATETIME, &tm); | ||
391 | |||
392 | if (err) { | ||
393 | dev_err(&client->dev, | ||
394 | "Unable to set the system clock\n"); | ||
395 | return err; | ||
396 | } | ||
397 | |||
398 | /* IMPORTANT: the RTC only stores whole seconds. It is arbitrary | ||
399 | * whether it stores the most close value or the value with partial | ||
400 | * seconds truncated. However, it is important that we use it to store | ||
401 | * the truncated value. This is because otherwise it is necessary, | ||
402 | * in an rtc sync function, to read both xtime.tv_sec and | ||
403 | * xtime.tv_nsec. On some processors (i.e. ARM), an atomic read | ||
404 | * of >32bits is not possible. So storing the most close value would | ||
405 | * slow down the sync API. So here we have the truncated value and | ||
406 | * the best guess is to add 0.5s. | ||
407 | */ | ||
408 | |||
409 | tv.tv_nsec = NSEC_PER_SEC >> 1; | ||
410 | |||
411 | /* WARNING: this is not the C library 'mktime' call, it is a built in | ||
412 | * inline function from include/linux/time.h. It expects (requires) | ||
413 | * the month to be in the range 1-12 | ||
414 | */ | ||
415 | |||
416 | tv.tv_sec = mktime(tm.tm_year + 1900, tm.tm_mon + 1, | ||
417 | tm.tm_mday, tm.tm_hour, | ||
418 | tm.tm_min, tm.tm_sec); | ||
419 | |||
420 | do_settimeofday(&tv); | ||
421 | |||
422 | dev_info(&client->dev, | ||
423 | "setting the system clock to %d-%d-%d %d:%d:%d\n", | ||
424 | tm.tm_year + 1900, tm.tm_mon + 1, | ||
425 | tm.tm_mday, tm.tm_hour, tm.tm_min, | ||
426 | tm.tm_sec); | ||
427 | |||
428 | return 0; | ||
429 | } | ||
430 | |||
431 | struct x1205_limit | 328 | struct x1205_limit |
432 | { | 329 | { |
433 | unsigned char reg; | 330 | unsigned char reg, mask, min, max; |
434 | unsigned char mask; | ||
435 | unsigned char min; | ||
436 | unsigned char max; | ||
437 | }; | 331 | }; |
438 | 332 | ||
439 | static int x1205_validate_client(struct i2c_client *client) | 333 | static int x1205_validate_client(struct i2c_client *client) |
@@ -477,11 +371,10 @@ static int x1205_validate_client(struct i2c_client *client) | |||
477 | { client->addr, I2C_M_RD, 1, &buf }, | 371 | { client->addr, I2C_M_RD, 1, &buf }, |
478 | }; | 372 | }; |
479 | 373 | ||
480 | xfer = i2c_transfer(client->adapter, msgs, 2); | 374 | if ((xfer = i2c_transfer(client->adapter, msgs, 2)) != 2) { |
481 | if (xfer != 2) { | ||
482 | dev_err(&client->adapter->dev, | 375 | dev_err(&client->adapter->dev, |
483 | "%s: could not read register %x\n", | 376 | "%s: could not read register %x\n", |
484 | __FUNCTION__, addr[1]); | 377 | __FUNCTION__, probe_zero_pattern[i]); |
485 | 378 | ||
486 | return -EIO; | 379 | return -EIO; |
487 | } | 380 | } |
@@ -489,7 +382,7 @@ static int x1205_validate_client(struct i2c_client *client) | |||
489 | if ((buf & probe_zero_pattern[i+1]) != 0) { | 382 | if ((buf & probe_zero_pattern[i+1]) != 0) { |
490 | dev_err(&client->adapter->dev, | 383 | dev_err(&client->adapter->dev, |
491 | "%s: register=%02x, zero pattern=%d, value=%x\n", | 384 | "%s: register=%02x, zero pattern=%d, value=%x\n", |
492 | __FUNCTION__, addr[1], i, buf); | 385 | __FUNCTION__, probe_zero_pattern[i], i, buf); |
493 | 386 | ||
494 | return -ENODEV; | 387 | return -ENODEV; |
495 | } | 388 | } |
@@ -506,12 +399,10 @@ static int x1205_validate_client(struct i2c_client *client) | |||
506 | { client->addr, I2C_M_RD, 1, ® }, | 399 | { client->addr, I2C_M_RD, 1, ® }, |
507 | }; | 400 | }; |
508 | 401 | ||
509 | xfer = i2c_transfer(client->adapter, msgs, 2); | 402 | if ((xfer = i2c_transfer(client->adapter, msgs, 2)) != 2) { |
510 | |||
511 | if (xfer != 2) { | ||
512 | dev_err(&client->adapter->dev, | 403 | dev_err(&client->adapter->dev, |
513 | "%s: could not read register %x\n", | 404 | "%s: could not read register %x\n", |
514 | __FUNCTION__, addr[1]); | 405 | __FUNCTION__, probe_limits_pattern[i].reg); |
515 | 406 | ||
516 | return -EIO; | 407 | return -EIO; |
517 | } | 408 | } |
@@ -522,7 +413,8 @@ static int x1205_validate_client(struct i2c_client *client) | |||
522 | value < probe_limits_pattern[i].min) { | 413 | value < probe_limits_pattern[i].min) { |
523 | dev_dbg(&client->adapter->dev, | 414 | dev_dbg(&client->adapter->dev, |
524 | "%s: register=%x, lim pattern=%d, value=%d\n", | 415 | "%s: register=%x, lim pattern=%d, value=%d\n", |
525 | __FUNCTION__, addr[1], i, value); | 416 | __FUNCTION__, probe_limits_pattern[i].reg, |
417 | i, value); | ||
526 | 418 | ||
527 | return -ENODEV; | 419 | return -ENODEV; |
528 | } | 420 | } |
@@ -531,37 +423,89 @@ static int x1205_validate_client(struct i2c_client *client) | |||
531 | return 0; | 423 | return 0; |
532 | } | 424 | } |
533 | 425 | ||
534 | static int x1205_attach(struct i2c_adapter *adapter) | 426 | static int x1205_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
535 | { | 427 | { |
536 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | 428 | return x1205_get_datetime(to_i2c_client(dev), |
429 | &alrm->time, X1205_ALM0_BASE); | ||
430 | } | ||
537 | 431 | ||
538 | return i2c_probe(adapter, &addr_data, x1205_probe); | 432 | static int x1205_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) |
433 | { | ||
434 | return x1205_set_datetime(to_i2c_client(dev), | ||
435 | &alrm->time, 1, X1205_ALM0_BASE); | ||
539 | } | 436 | } |
540 | 437 | ||
541 | int x1205_direct_attach(int adapter_id, | 438 | static int x1205_rtc_read_time(struct device *dev, struct rtc_time *tm) |
542 | struct i2c_client_address_data *address_data) | ||
543 | { | 439 | { |
544 | int err; | 440 | return x1205_get_datetime(to_i2c_client(dev), |
545 | struct i2c_adapter *adapter = i2c_get_adapter(adapter_id); | 441 | tm, X1205_CCR_BASE); |
442 | } | ||
546 | 443 | ||
547 | if (adapter) { | 444 | static int x1205_rtc_set_time(struct device *dev, struct rtc_time *tm) |
548 | err = i2c_probe(adapter, | 445 | { |
549 | address_data, x1205_probe); | 446 | return x1205_set_datetime(to_i2c_client(dev), |
447 | tm, 1, X1205_CCR_BASE); | ||
448 | } | ||
550 | 449 | ||
551 | i2c_put_adapter(adapter); | 450 | static int x1205_rtc_proc(struct device *dev, struct seq_file *seq) |
451 | { | ||
452 | int err, dtrim, atrim; | ||
552 | 453 | ||
553 | return err; | 454 | seq_printf(seq, "24hr\t\t: yes\n"); |
554 | } | ||
555 | 455 | ||
556 | return -ENODEV; | 456 | if ((err = x1205_get_dtrim(to_i2c_client(dev), &dtrim)) == 0) |
457 | seq_printf(seq, "digital_trim\t: %d ppm\n", dtrim); | ||
458 | |||
459 | if ((err = x1205_get_atrim(to_i2c_client(dev), &atrim)) == 0) | ||
460 | seq_printf(seq, "analog_trim\t: %d.%02d pF\n", | ||
461 | atrim / 1000, atrim % 1000); | ||
462 | return 0; | ||
557 | } | 463 | } |
558 | 464 | ||
559 | static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) | 465 | static struct rtc_class_ops x1205_rtc_ops = { |
466 | .proc = x1205_rtc_proc, | ||
467 | .read_time = x1205_rtc_read_time, | ||
468 | .set_time = x1205_rtc_set_time, | ||
469 | .read_alarm = x1205_rtc_read_alarm, | ||
470 | .set_alarm = x1205_rtc_set_alarm, | ||
471 | }; | ||
472 | |||
473 | static ssize_t x1205_sysfs_show_atrim(struct device *dev, | ||
474 | struct device_attribute *attr, char *buf) | ||
560 | { | 475 | { |
561 | struct i2c_client *client; | 476 | int atrim; |
562 | struct x1205_data *data; | 477 | |
478 | if (x1205_get_atrim(to_i2c_client(dev), &atrim) == 0) | ||
479 | return sprintf(buf, "%d.%02d pF\n", | ||
480 | atrim / 1000, atrim % 1000); | ||
481 | return 0; | ||
482 | } | ||
483 | static DEVICE_ATTR(atrim, S_IRUGO, x1205_sysfs_show_atrim, NULL); | ||
484 | |||
485 | static ssize_t x1205_sysfs_show_dtrim(struct device *dev, | ||
486 | struct device_attribute *attr, char *buf) | ||
487 | { | ||
488 | int dtrim; | ||
489 | |||
490 | if (x1205_get_dtrim(to_i2c_client(dev), &dtrim) == 0) | ||
491 | return sprintf(buf, "%d ppm\n", dtrim); | ||
492 | |||
493 | return 0; | ||
494 | } | ||
495 | static DEVICE_ATTR(dtrim, S_IRUGO, x1205_sysfs_show_dtrim, NULL); | ||
563 | 496 | ||
497 | static int x1205_attach(struct i2c_adapter *adapter) | ||
498 | { | ||
499 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | ||
500 | return i2c_probe(adapter, &addr_data, x1205_probe); | ||
501 | } | ||
502 | |||
503 | static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) | ||
504 | { | ||
564 | int err = 0; | 505 | int err = 0; |
506 | unsigned char sr; | ||
507 | struct i2c_client *client; | ||
508 | struct rtc_device *rtc; | ||
565 | 509 | ||
566 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); | 510 | dev_dbg(&adapter->dev, "%s\n", __FUNCTION__); |
567 | 511 | ||
@@ -570,22 +514,17 @@ static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) | |||
570 | goto exit; | 514 | goto exit; |
571 | } | 515 | } |
572 | 516 | ||
573 | if (!(data = kzalloc(sizeof(struct x1205_data), GFP_KERNEL))) { | 517 | if (!(client = kzalloc(sizeof(struct i2c_client), GFP_KERNEL))) { |
574 | err = -ENOMEM; | 518 | err = -ENOMEM; |
575 | goto exit; | 519 | goto exit; |
576 | } | 520 | } |
577 | 521 | ||
578 | /* Initialize our structures */ | 522 | /* I2C client */ |
579 | data->epoch = 2000; | ||
580 | |||
581 | client = &data->client; | ||
582 | client->addr = address; | 523 | client->addr = address; |
583 | client->driver = &x1205_driver; | 524 | client->driver = &x1205_driver; |
584 | client->adapter = adapter; | 525 | client->adapter = adapter; |
585 | 526 | ||
586 | strlcpy(client->name, "x1205", I2C_NAME_SIZE); | 527 | strlcpy(client->name, x1205_driver.driver.name, I2C_NAME_SIZE); |
587 | |||
588 | i2c_set_clientdata(client, data); | ||
589 | 528 | ||
590 | /* Verify the chip is really an X1205 */ | 529 | /* Verify the chip is really an X1205 */ |
591 | if (kind < 0) { | 530 | if (kind < 0) { |
@@ -599,18 +538,43 @@ static int x1205_probe(struct i2c_adapter *adapter, int address, int kind) | |||
599 | if ((err = i2c_attach_client(client))) | 538 | if ((err = i2c_attach_client(client))) |
600 | goto exit_kfree; | 539 | goto exit_kfree; |
601 | 540 | ||
602 | list_add(&data->list, &x1205_clients); | ||
603 | |||
604 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); | 541 | dev_info(&client->dev, "chip found, driver version " DRV_VERSION "\n"); |
605 | 542 | ||
606 | /* If requested, set the system time */ | 543 | rtc = rtc_device_register(x1205_driver.driver.name, &client->dev, |
607 | if (hctosys) | 544 | &x1205_rtc_ops, THIS_MODULE); |
608 | x1205_hctosys(client); | 545 | |
546 | if (IS_ERR(rtc)) { | ||
547 | err = PTR_ERR(rtc); | ||
548 | dev_err(&client->dev, | ||
549 | "unable to register the class device\n"); | ||
550 | goto exit_detach; | ||
551 | } | ||
552 | |||
553 | i2c_set_clientdata(client, rtc); | ||
554 | |||
555 | /* Check for power failures and eventualy enable the osc */ | ||
556 | if ((err = x1205_get_status(client, &sr)) == 0) { | ||
557 | if (sr & X1205_SR_RTCF) { | ||
558 | dev_err(&client->dev, | ||
559 | "power failure detected, " | ||
560 | "please set the clock\n"); | ||
561 | udelay(50); | ||
562 | x1205_fix_osc(client); | ||
563 | } | ||
564 | } | ||
565 | else | ||
566 | dev_err(&client->dev, "couldn't read status\n"); | ||
567 | |||
568 | device_create_file(&client->dev, &dev_attr_atrim); | ||
569 | device_create_file(&client->dev, &dev_attr_dtrim); | ||
609 | 570 | ||
610 | return 0; | 571 | return 0; |
611 | 572 | ||
573 | exit_detach: | ||
574 | i2c_detach_client(client); | ||
575 | |||
612 | exit_kfree: | 576 | exit_kfree: |
613 | kfree(data); | 577 | kfree(client); |
614 | 578 | ||
615 | exit: | 579 | exit: |
616 | return err; | 580 | return err; |
@@ -619,61 +583,21 @@ exit: | |||
619 | static int x1205_detach(struct i2c_client *client) | 583 | static int x1205_detach(struct i2c_client *client) |
620 | { | 584 | { |
621 | int err; | 585 | int err; |
622 | struct x1205_data *data = i2c_get_clientdata(client); | 586 | struct rtc_device *rtc = i2c_get_clientdata(client); |
623 | 587 | ||
624 | dev_dbg(&client->dev, "%s\n", __FUNCTION__); | 588 | dev_dbg(&client->dev, "%s\n", __FUNCTION__); |
625 | 589 | ||
590 | if (rtc) | ||
591 | rtc_device_unregister(rtc); | ||
592 | |||
626 | if ((err = i2c_detach_client(client))) | 593 | if ((err = i2c_detach_client(client))) |
627 | return err; | 594 | return err; |
628 | 595 | ||
629 | list_del(&data->list); | 596 | kfree(client); |
630 | |||
631 | kfree(data); | ||
632 | 597 | ||
633 | return 0; | 598 | return 0; |
634 | } | 599 | } |
635 | 600 | ||
636 | static int x1205_command(struct i2c_client *client, unsigned int cmd, | ||
637 | void *param) | ||
638 | { | ||
639 | if (param == NULL) | ||
640 | return -EINVAL; | ||
641 | |||
642 | if (!capable(CAP_SYS_TIME)) | ||
643 | return -EACCES; | ||
644 | |||
645 | dev_dbg(&client->dev, "%s: cmd=%d\n", __FUNCTION__, cmd); | ||
646 | |||
647 | switch (cmd) { | ||
648 | case X1205_CMD_GETDATETIME: | ||
649 | return x1205_get_datetime(client, param, X1205_CCR_BASE); | ||
650 | |||
651 | case X1205_CMD_SETTIME: | ||
652 | return x1205_set_datetime(client, param, 0, | ||
653 | X1205_CCR_BASE); | ||
654 | |||
655 | case X1205_CMD_SETDATETIME: | ||
656 | return x1205_set_datetime(client, param, 1, | ||
657 | X1205_CCR_BASE); | ||
658 | |||
659 | case X1205_CMD_GETALARM: | ||
660 | return x1205_get_datetime(client, param, X1205_ALM0_BASE); | ||
661 | |||
662 | case X1205_CMD_SETALARM: | ||
663 | return x1205_set_datetime(client, param, 1, | ||
664 | X1205_ALM0_BASE); | ||
665 | |||
666 | case X1205_CMD_GETDTRIM: | ||
667 | return x1205_get_dtrim(client, param); | ||
668 | |||
669 | case X1205_CMD_GETATRIM: | ||
670 | return x1205_get_atrim(client, param); | ||
671 | |||
672 | default: | ||
673 | return -EINVAL; | ||
674 | } | ||
675 | } | ||
676 | |||
677 | static int __init x1205_init(void) | 601 | static int __init x1205_init(void) |
678 | { | 602 | { |
679 | return i2c_add_driver(&x1205_driver); | 603 | return i2c_add_driver(&x1205_driver); |
@@ -685,14 +609,11 @@ static void __exit x1205_exit(void) | |||
685 | } | 609 | } |
686 | 610 | ||
687 | MODULE_AUTHOR( | 611 | MODULE_AUTHOR( |
688 | "Karen Spearel <kas11@tampabay.rr.com>, " | 612 | "Karen Spearel <kas111 at gmail dot com>, " |
689 | "Alessandro Zummo <a.zummo@towertech.it>"); | 613 | "Alessandro Zummo <a.zummo@towertech.it>"); |
690 | MODULE_DESCRIPTION("Xicor X1205 RTC driver"); | 614 | MODULE_DESCRIPTION("Xicor/Intersil X1205 RTC driver"); |
691 | MODULE_LICENSE("GPL"); | 615 | MODULE_LICENSE("GPL"); |
692 | MODULE_VERSION(DRV_VERSION); | 616 | MODULE_VERSION(DRV_VERSION); |
693 | 617 | ||
694 | EXPORT_SYMBOL_GPL(x1205_do_command); | ||
695 | EXPORT_SYMBOL_GPL(x1205_direct_attach); | ||
696 | |||
697 | module_init(x1205_init); | 618 | module_init(x1205_init); |
698 | module_exit(x1205_exit); | 619 | module_exit(x1205_exit); |
diff --git a/drivers/scsi/3w-9xxx.c b/drivers/scsi/3w-9xxx.c index 0ab26d01877b..0d2b447c50ed 100644 --- a/drivers/scsi/3w-9xxx.c +++ b/drivers/scsi/3w-9xxx.c | |||
@@ -1026,7 +1026,7 @@ static void twa_free_request_id(TW_Device_Extension *tw_dev, int request_id) | |||
1026 | tw_dev->free_tail = (tw_dev->free_tail + 1) % TW_Q_LENGTH; | 1026 | tw_dev->free_tail = (tw_dev->free_tail + 1) % TW_Q_LENGTH; |
1027 | } /* End twa_free_request_id() */ | 1027 | } /* End twa_free_request_id() */ |
1028 | 1028 | ||
1029 | /* This function will get parameter table entires from the firmware */ | 1029 | /* This function will get parameter table entries from the firmware */ |
1030 | static void *twa_get_param(TW_Device_Extension *tw_dev, int request_id, int table_id, int parameter_id, int parameter_size_bytes) | 1030 | static void *twa_get_param(TW_Device_Extension *tw_dev, int request_id, int table_id, int parameter_id, int parameter_size_bytes) |
1031 | { | 1031 | { |
1032 | TW_Command_Full *full_command_packet; | 1032 | TW_Command_Full *full_command_packet; |
diff --git a/drivers/scsi/BusLogic.c b/drivers/scsi/BusLogic.c index 1c459343292b..bde3d5834ade 100644 --- a/drivers/scsi/BusLogic.c +++ b/drivers/scsi/BusLogic.c | |||
@@ -41,6 +41,8 @@ | |||
41 | #include <linux/stat.h> | 41 | #include <linux/stat.h> |
42 | #include <linux/pci.h> | 42 | #include <linux/pci.h> |
43 | #include <linux/spinlock.h> | 43 | #include <linux/spinlock.h> |
44 | #include <linux/jiffies.h> | ||
45 | #include <linux/dma-mapping.h> | ||
44 | #include <scsi/scsicam.h> | 46 | #include <scsi/scsicam.h> |
45 | 47 | ||
46 | #include <asm/dma.h> | 48 | #include <asm/dma.h> |
@@ -676,7 +678,7 @@ static int __init BusLogic_InitializeMultiMasterProbeInfo(struct BusLogic_HostAd | |||
676 | if (pci_enable_device(PCI_Device)) | 678 | if (pci_enable_device(PCI_Device)) |
677 | continue; | 679 | continue; |
678 | 680 | ||
679 | if (pci_set_dma_mask(PCI_Device, (u64) 0xffffffff)) | 681 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK )) |
680 | continue; | 682 | continue; |
681 | 683 | ||
682 | Bus = PCI_Device->bus->number; | 684 | Bus = PCI_Device->bus->number; |
@@ -831,7 +833,7 @@ static int __init BusLogic_InitializeMultiMasterProbeInfo(struct BusLogic_HostAd | |||
831 | if (pci_enable_device(PCI_Device)) | 833 | if (pci_enable_device(PCI_Device)) |
832 | continue; | 834 | continue; |
833 | 835 | ||
834 | if (pci_set_dma_mask(PCI_Device, (u64) 0xffffffff)) | 836 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK)) |
835 | continue; | 837 | continue; |
836 | 838 | ||
837 | Bus = PCI_Device->bus->number; | 839 | Bus = PCI_Device->bus->number; |
@@ -885,7 +887,7 @@ static int __init BusLogic_InitializeFlashPointProbeInfo(struct BusLogic_HostAda | |||
885 | if (pci_enable_device(PCI_Device)) | 887 | if (pci_enable_device(PCI_Device)) |
886 | continue; | 888 | continue; |
887 | 889 | ||
888 | if (pci_set_dma_mask(PCI_Device, (u64) 0xffffffff)) | 890 | if (pci_set_dma_mask(PCI_Device, DMA_32BIT_MASK)) |
889 | continue; | 891 | continue; |
890 | 892 | ||
891 | Bus = PCI_Device->bus->number; | 893 | Bus = PCI_Device->bus->number; |
@@ -2896,7 +2898,7 @@ static int BusLogic_QueueCommand(struct scsi_cmnd *Command, void (*CompletionRou | |||
2896 | */ | 2898 | */ |
2897 | if (HostAdapter->ActiveCommands[TargetID] == 0) | 2899 | if (HostAdapter->ActiveCommands[TargetID] == 0) |
2898 | HostAdapter->LastSequencePoint[TargetID] = jiffies; | 2900 | HostAdapter->LastSequencePoint[TargetID] = jiffies; |
2899 | else if (jiffies - HostAdapter->LastSequencePoint[TargetID] > 4 * HZ) { | 2901 | else if (time_after(jiffies, HostAdapter->LastSequencePoint[TargetID] + 4 * HZ)) { |
2900 | HostAdapter->LastSequencePoint[TargetID] = jiffies; | 2902 | HostAdapter->LastSequencePoint[TargetID] = jiffies; |
2901 | QueueTag = BusLogic_OrderedQueueTag; | 2903 | QueueTag = BusLogic_OrderedQueueTag; |
2902 | } | 2904 | } |
diff --git a/drivers/scsi/a100u2w.c b/drivers/scsi/a100u2w.c index 9f45ae1745da..3dce21c78737 100644 --- a/drivers/scsi/a100u2w.c +++ b/drivers/scsi/a100u2w.c | |||
@@ -89,6 +89,7 @@ | |||
89 | #include <linux/string.h> | 89 | #include <linux/string.h> |
90 | #include <linux/ioport.h> | 90 | #include <linux/ioport.h> |
91 | #include <linux/slab.h> | 91 | #include <linux/slab.h> |
92 | #include <linux/dma-mapping.h> | ||
92 | 93 | ||
93 | #include <asm/io.h> | 94 | #include <asm/io.h> |
94 | #include <asm/irq.h> | 95 | #include <asm/irq.h> |
@@ -1052,7 +1053,7 @@ static int __devinit inia100_probe_one(struct pci_dev *pdev, | |||
1052 | 1053 | ||
1053 | if (pci_enable_device(pdev)) | 1054 | if (pci_enable_device(pdev)) |
1054 | goto out; | 1055 | goto out; |
1055 | if (pci_set_dma_mask(pdev, 0xffffffffULL)) { | 1056 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { |
1056 | printk(KERN_WARNING "Unable to set 32bit DMA " | 1057 | printk(KERN_WARNING "Unable to set 32bit DMA " |
1057 | "on inia100 adapter, ignoring.\n"); | 1058 | "on inia100 adapter, ignoring.\n"); |
1058 | goto out_disable_device; | 1059 | goto out_disable_device; |
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c index a16f8ded8f1d..8df4a0ea3761 100644 --- a/drivers/scsi/aacraid/aachba.c +++ b/drivers/scsi/aacraid/aachba.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
33 | #include <linux/completion.h> | 33 | #include <linux/completion.h> |
34 | #include <linux/blkdev.h> | 34 | #include <linux/blkdev.h> |
35 | #include <linux/dma-mapping.h> | ||
35 | #include <asm/semaphore.h> | 36 | #include <asm/semaphore.h> |
36 | #include <asm/uaccess.h> | 37 | #include <asm/uaccess.h> |
37 | 38 | ||
diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c index c2596335549d..720330778648 100644 --- a/drivers/scsi/aacraid/linit.c +++ b/drivers/scsi/aacraid/linit.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <linux/pci.h> | 45 | #include <linux/pci.h> |
46 | #include <linux/slab.h> | 46 | #include <linux/slab.h> |
47 | #include <linux/spinlock.h> | 47 | #include <linux/spinlock.h> |
48 | #include <linux/dma-mapping.h> | ||
48 | #include <linux/syscalls.h> | 49 | #include <linux/syscalls.h> |
49 | #include <linux/delay.h> | 50 | #include <linux/delay.h> |
50 | #include <linux/smp_lock.h> | 51 | #include <linux/smp_lock.h> |
@@ -806,8 +807,8 @@ static int __devinit aac_probe_one(struct pci_dev *pdev, | |||
806 | * to driver communication memory to be allocated below 2gig | 807 | * to driver communication memory to be allocated below 2gig |
807 | */ | 808 | */ |
808 | if (aac_drivers[index].quirks & AAC_QUIRK_31BIT) | 809 | if (aac_drivers[index].quirks & AAC_QUIRK_31BIT) |
809 | if (pci_set_dma_mask(pdev, 0x7FFFFFFFULL) || | 810 | if (pci_set_dma_mask(pdev, DMA_31BIT_MASK) || |
810 | pci_set_consistent_dma_mask(pdev, 0x7FFFFFFFULL)) | 811 | pci_set_consistent_dma_mask(pdev, DMA_31BIT_MASK)) |
811 | goto out; | 812 | goto out; |
812 | 813 | ||
813 | pci_set_master(pdev); | 814 | pci_set_master(pdev); |
diff --git a/drivers/scsi/atp870u.c b/drivers/scsi/atp870u.c index 5227a779c05c..a198d86667e9 100644 --- a/drivers/scsi/atp870u.c +++ b/drivers/scsi/atp870u.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/spinlock.h> | 28 | #include <linux/spinlock.h> |
29 | #include <linux/pci.h> | 29 | #include <linux/pci.h> |
30 | #include <linux/blkdev.h> | 30 | #include <linux/blkdev.h> |
31 | #include <linux/dma-mapping.h> | ||
31 | #include <asm/system.h> | 32 | #include <asm/system.h> |
32 | #include <asm/io.h> | 33 | #include <asm/io.h> |
33 | 34 | ||
@@ -2631,7 +2632,7 @@ static int atp870u_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
2631 | if (pci_enable_device(pdev)) | 2632 | if (pci_enable_device(pdev)) |
2632 | return -EIO; | 2633 | return -EIO; |
2633 | 2634 | ||
2634 | if (!pci_set_dma_mask(pdev, 0xFFFFFFFFUL)) { | 2635 | if (!pci_set_dma_mask(pdev, DMA_32BIT_MASK)) { |
2635 | printk(KERN_INFO "atp870u: use 32bit DMA mask.\n"); | 2636 | printk(KERN_INFO "atp870u: use 32bit DMA mask.\n"); |
2636 | } else { | 2637 | } else { |
2637 | printk(KERN_ERR "atp870u: DMA mask required but not available.\n"); | 2638 | printk(KERN_ERR "atp870u: DMA mask required but not available.\n"); |
diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c index 6e6b293dcb28..b1b704a42efd 100644 --- a/drivers/scsi/dpt_i2o.c +++ b/drivers/scsi/dpt_i2o.c | |||
@@ -57,6 +57,7 @@ MODULE_DESCRIPTION("Adaptec I2O RAID Driver"); | |||
57 | #include <linux/reboot.h> | 57 | #include <linux/reboot.h> |
58 | #include <linux/spinlock.h> | 58 | #include <linux/spinlock.h> |
59 | #include <linux/smp_lock.h> | 59 | #include <linux/smp_lock.h> |
60 | #include <linux/dma-mapping.h> | ||
60 | 61 | ||
61 | #include <linux/timer.h> | 62 | #include <linux/timer.h> |
62 | #include <linux/string.h> | 63 | #include <linux/string.h> |
@@ -906,8 +907,8 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev | |||
906 | } | 907 | } |
907 | 908 | ||
908 | pci_set_master(pDev); | 909 | pci_set_master(pDev); |
909 | if (pci_set_dma_mask(pDev, 0xffffffffffffffffULL) && | 910 | if (pci_set_dma_mask(pDev, DMA_64BIT_MASK) && |
910 | pci_set_dma_mask(pDev, 0xffffffffULL)) | 911 | pci_set_dma_mask(pDev, DMA_32BIT_MASK)) |
911 | return -EINVAL; | 912 | return -EINVAL; |
912 | 913 | ||
913 | base_addr0_phys = pci_resource_start(pDev,0); | 914 | base_addr0_phys = pci_resource_start(pDev,0); |
diff --git a/drivers/scsi/eata.c b/drivers/scsi/eata.c index b3f9de8f7595..059eeee4b554 100644 --- a/drivers/scsi/eata.c +++ b/drivers/scsi/eata.c | |||
@@ -490,6 +490,7 @@ | |||
490 | #include <linux/init.h> | 490 | #include <linux/init.h> |
491 | #include <linux/ctype.h> | 491 | #include <linux/ctype.h> |
492 | #include <linux/spinlock.h> | 492 | #include <linux/spinlock.h> |
493 | #include <linux/dma-mapping.h> | ||
493 | #include <asm/byteorder.h> | 494 | #include <asm/byteorder.h> |
494 | #include <asm/dma.h> | 495 | #include <asm/dma.h> |
495 | #include <asm/io.h> | 496 | #include <asm/io.h> |
@@ -1426,7 +1427,7 @@ static int port_detect(unsigned long port_base, unsigned int j, | |||
1426 | 1427 | ||
1427 | if (ha->pdev) { | 1428 | if (ha->pdev) { |
1428 | pci_set_master(ha->pdev); | 1429 | pci_set_master(ha->pdev); |
1429 | if (pci_set_dma_mask(ha->pdev, 0xffffffff)) | 1430 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) |
1430 | printk("%s: warning, pci_set_dma_mask failed.\n", | 1431 | printk("%s: warning, pci_set_dma_mask failed.\n", |
1431 | ha->board_name); | 1432 | ha->board_name); |
1432 | } | 1433 | } |
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index 62e3cda859af..d5740bbdef3e 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
@@ -388,6 +388,7 @@ | |||
388 | #include <linux/proc_fs.h> | 388 | #include <linux/proc_fs.h> |
389 | #include <linux/time.h> | 389 | #include <linux/time.h> |
390 | #include <linux/timer.h> | 390 | #include <linux/timer.h> |
391 | #include <linux/dma-mapping.h> | ||
391 | #ifdef GDTH_RTC | 392 | #ifdef GDTH_RTC |
392 | #include <linux/mc146818rtc.h> | 393 | #include <linux/mc146818rtc.h> |
393 | #endif | 394 | #endif |
@@ -671,7 +672,7 @@ static struct file_operations gdth_fops = { | |||
671 | static struct notifier_block gdth_notifier = { | 672 | static struct notifier_block gdth_notifier = { |
672 | gdth_halt, NULL, 0 | 673 | gdth_halt, NULL, 0 |
673 | }; | 674 | }; |
674 | 675 | static int notifier_disabled = 0; | |
675 | 676 | ||
676 | static void gdth_delay(int milliseconds) | 677 | static void gdth_delay(int milliseconds) |
677 | { | 678 | { |
@@ -4527,15 +4528,15 @@ static int __init gdth_detect(struct scsi_host_template *shtp) | |||
4527 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat &GDT_64BIT)|| | 4528 | if (!(ha->cache_feat & ha->raw_feat & ha->screen_feat &GDT_64BIT)|| |
4528 | /* 64-bit DMA only supported from FW >= x.43 */ | 4529 | /* 64-bit DMA only supported from FW >= x.43 */ |
4529 | (!ha->dma64_support)) { | 4530 | (!ha->dma64_support)) { |
4530 | if (pci_set_dma_mask(pcistr[ctr].pdev, 0xffffffff)) { | 4531 | if (pci_set_dma_mask(pcistr[ctr].pdev, DMA_32BIT_MASK)) { |
4531 | printk(KERN_WARNING "GDT-PCI %d: Unable to set 32-bit DMA\n", hanum); | 4532 | printk(KERN_WARNING "GDT-PCI %d: Unable to set 32-bit DMA\n", hanum); |
4532 | err = TRUE; | 4533 | err = TRUE; |
4533 | } | 4534 | } |
4534 | } else { | 4535 | } else { |
4535 | shp->max_cmd_len = 16; | 4536 | shp->max_cmd_len = 16; |
4536 | if (!pci_set_dma_mask(pcistr[ctr].pdev, 0xffffffffffffffffULL)) { | 4537 | if (!pci_set_dma_mask(pcistr[ctr].pdev, DMA_64BIT_MASK)) { |
4537 | printk("GDT-PCI %d: 64-bit DMA enabled\n", hanum); | 4538 | printk("GDT-PCI %d: 64-bit DMA enabled\n", hanum); |
4538 | } else if (pci_set_dma_mask(pcistr[ctr].pdev, 0xffffffff)) { | 4539 | } else if (pci_set_dma_mask(pcistr[ctr].pdev, DMA_32BIT_MASK)) { |
4539 | printk(KERN_WARNING "GDT-PCI %d: Unable to set 64/32-bit DMA\n", hanum); | 4540 | printk(KERN_WARNING "GDT-PCI %d: Unable to set 64/32-bit DMA\n", hanum); |
4540 | err = TRUE; | 4541 | err = TRUE; |
4541 | } | 4542 | } |
@@ -4595,13 +4596,13 @@ static int __init gdth_detect(struct scsi_host_template *shtp) | |||
4595 | add_timer(&gdth_timer); | 4596 | add_timer(&gdth_timer); |
4596 | #endif | 4597 | #endif |
4597 | major = register_chrdev(0,"gdth",&gdth_fops); | 4598 | major = register_chrdev(0,"gdth",&gdth_fops); |
4599 | notifier_disabled = 0; | ||
4598 | register_reboot_notifier(&gdth_notifier); | 4600 | register_reboot_notifier(&gdth_notifier); |
4599 | } | 4601 | } |
4600 | gdth_polling = FALSE; | 4602 | gdth_polling = FALSE; |
4601 | return gdth_ctr_vcount; | 4603 | return gdth_ctr_vcount; |
4602 | } | 4604 | } |
4603 | 4605 | ||
4604 | |||
4605 | static int gdth_release(struct Scsi_Host *shp) | 4606 | static int gdth_release(struct Scsi_Host *shp) |
4606 | { | 4607 | { |
4607 | int hanum; | 4608 | int hanum; |
@@ -5632,10 +5633,14 @@ static int gdth_halt(struct notifier_block *nb, ulong event, void *buf) | |||
5632 | char cmnd[MAX_COMMAND_SIZE]; | 5633 | char cmnd[MAX_COMMAND_SIZE]; |
5633 | #endif | 5634 | #endif |
5634 | 5635 | ||
5636 | if (notifier_disabled) | ||
5637 | return NOTIFY_OK; | ||
5638 | |||
5635 | TRACE2(("gdth_halt() event %d\n",(int)event)); | 5639 | TRACE2(("gdth_halt() event %d\n",(int)event)); |
5636 | if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF) | 5640 | if (event != SYS_RESTART && event != SYS_HALT && event != SYS_POWER_OFF) |
5637 | return NOTIFY_DONE; | 5641 | return NOTIFY_DONE; |
5638 | 5642 | ||
5643 | notifier_disabled = 1; | ||
5639 | printk("GDT-HA: Flushing all host drives .. "); | 5644 | printk("GDT-HA: Flushing all host drives .. "); |
5640 | for (hanum = 0; hanum < gdth_ctr_count; ++hanum) { | 5645 | for (hanum = 0; hanum < gdth_ctr_count; ++hanum) { |
5641 | gdth_flush(hanum); | 5646 | gdth_flush(hanum); |
@@ -5679,7 +5684,6 @@ static int gdth_halt(struct notifier_block *nb, ulong event, void *buf) | |||
5679 | #ifdef GDTH_STATISTICS | 5684 | #ifdef GDTH_STATISTICS |
5680 | del_timer(&gdth_timer); | 5685 | del_timer(&gdth_timer); |
5681 | #endif | 5686 | #endif |
5682 | unregister_reboot_notifier(&gdth_notifier); | ||
5683 | return NOTIFY_OK; | 5687 | return NOTIFY_OK; |
5684 | } | 5688 | } |
5685 | 5689 | ||
diff --git a/drivers/scsi/initio.c b/drivers/scsi/initio.c index ea6f3c0e05d9..0cc7f65b584f 100644 --- a/drivers/scsi/initio.c +++ b/drivers/scsi/initio.c | |||
@@ -127,6 +127,7 @@ | |||
127 | #include <linux/sched.h> | 127 | #include <linux/sched.h> |
128 | #include <linux/slab.h> | 128 | #include <linux/slab.h> |
129 | #include <linux/jiffies.h> | 129 | #include <linux/jiffies.h> |
130 | #include <linux/dma-mapping.h> | ||
130 | #include <asm/io.h> | 131 | #include <asm/io.h> |
131 | 132 | ||
132 | #include <scsi/scsi.h> | 133 | #include <scsi/scsi.h> |
@@ -2780,7 +2781,7 @@ static int tul_NewReturnNumberOfAdapters(void) | |||
2780 | if (((dRegValue & 0xFF00) >> 8) == 0xFF) | 2781 | if (((dRegValue & 0xFF00) >> 8) == 0xFF) |
2781 | dRegValue = 0; | 2782 | dRegValue = 0; |
2782 | wBIOS = (wBIOS << 8) + ((UWORD) ((dRegValue & 0xFF00) >> 8)); | 2783 | wBIOS = (wBIOS << 8) + ((UWORD) ((dRegValue & 0xFF00) >> 8)); |
2783 | if (pci_set_dma_mask(pDev, 0xffffffff)) { | 2784 | if (pci_set_dma_mask(pDev, DMA_32BIT_MASK)) { |
2784 | printk(KERN_WARNING | 2785 | printk(KERN_WARNING |
2785 | "i91u: Could not set 32 bit DMA mask\n"); | 2786 | "i91u: Could not set 32 bit DMA mask\n"); |
2786 | continue; | 2787 | continue; |
diff --git a/drivers/scsi/ips.c b/drivers/scsi/ips.c index 481708d527ae..a4c0b04cfdbd 100644 --- a/drivers/scsi/ips.c +++ b/drivers/scsi/ips.c | |||
@@ -179,6 +179,7 @@ | |||
179 | 179 | ||
180 | #include <linux/blkdev.h> | 180 | #include <linux/blkdev.h> |
181 | #include <linux/types.h> | 181 | #include <linux/types.h> |
182 | #include <linux/dma-mapping.h> | ||
182 | 183 | ||
183 | #include <scsi/sg.h> | 184 | #include <scsi/sg.h> |
184 | 185 | ||
@@ -7284,10 +7285,10 @@ ips_init_phase1(struct pci_dev *pci_dev, int *indexPtr) | |||
7284 | * are guaranteed to be < 4G. | 7285 | * are guaranteed to be < 4G. |
7285 | */ | 7286 | */ |
7286 | if (IPS_ENABLE_DMA64 && IPS_HAS_ENH_SGLIST(ha) && | 7287 | if (IPS_ENABLE_DMA64 && IPS_HAS_ENH_SGLIST(ha) && |
7287 | !pci_set_dma_mask(ha->pcidev, 0xffffffffffffffffULL)) { | 7288 | !pci_set_dma_mask(ha->pcidev, DMA_64BIT_MASK)) { |
7288 | (ha)->flags |= IPS_HA_ENH_SG; | 7289 | (ha)->flags |= IPS_HA_ENH_SG; |
7289 | } else { | 7290 | } else { |
7290 | if (pci_set_dma_mask(ha->pcidev, 0xffffffffULL) != 0) { | 7291 | if (pci_set_dma_mask(ha->pcidev, DMA_32BIT_MASK) != 0) { |
7291 | printk(KERN_WARNING "Unable to set DMA Mask\n"); | 7292 | printk(KERN_WARNING "Unable to set DMA Mask\n"); |
7292 | return ips_abort_init(ha, index); | 7293 | return ips_abort_init(ha, index); |
7293 | } | 7294 | } |
diff --git a/drivers/scsi/megaraid.c b/drivers/scsi/megaraid.c index 7144674bc8e6..80b68a2481b3 100644 --- a/drivers/scsi/megaraid.c +++ b/drivers/scsi/megaraid.c | |||
@@ -45,6 +45,7 @@ | |||
45 | #include <linux/interrupt.h> | 45 | #include <linux/interrupt.h> |
46 | #include <linux/pci.h> | 46 | #include <linux/pci.h> |
47 | #include <linux/init.h> | 47 | #include <linux/init.h> |
48 | #include <linux/dma-mapping.h> | ||
48 | #include <scsi/scsicam.h> | 49 | #include <scsi/scsicam.h> |
49 | 50 | ||
50 | #include "scsi.h" | 51 | #include "scsi.h" |
@@ -2094,7 +2095,7 @@ make_local_pdev(adapter_t *adapter, struct pci_dev **pdev) | |||
2094 | 2095 | ||
2095 | memcpy(*pdev, adapter->dev, sizeof(struct pci_dev)); | 2096 | memcpy(*pdev, adapter->dev, sizeof(struct pci_dev)); |
2096 | 2097 | ||
2097 | if( pci_set_dma_mask(*pdev, 0xffffffff) != 0 ) { | 2098 | if( pci_set_dma_mask(*pdev, DMA_32BIT_MASK) != 0 ) { |
2098 | kfree(*pdev); | 2099 | kfree(*pdev); |
2099 | return -1; | 2100 | return -1; |
2100 | } | 2101 | } |
@@ -4859,10 +4860,10 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4859 | 4860 | ||
4860 | /* Set the Mode of addressing to 64 bit if we can */ | 4861 | /* Set the Mode of addressing to 64 bit if we can */ |
4861 | if ((adapter->flag & BOARD_64BIT) && (sizeof(dma_addr_t) == 8)) { | 4862 | if ((adapter->flag & BOARD_64BIT) && (sizeof(dma_addr_t) == 8)) { |
4862 | pci_set_dma_mask(pdev, 0xffffffffffffffffULL); | 4863 | pci_set_dma_mask(pdev, DMA_64BIT_MASK); |
4863 | adapter->has_64bit_addr = 1; | 4864 | adapter->has_64bit_addr = 1; |
4864 | } else { | 4865 | } else { |
4865 | pci_set_dma_mask(pdev, 0xffffffff); | 4866 | pci_set_dma_mask(pdev, DMA_32BIT_MASK); |
4866 | adapter->has_64bit_addr = 0; | 4867 | adapter->has_64bit_addr = 0; |
4867 | } | 4868 | } |
4868 | 4869 | ||
diff --git a/drivers/scsi/nsp32.c b/drivers/scsi/nsp32.c index a279ebb61447..30ee0ef4b459 100644 --- a/drivers/scsi/nsp32.c +++ b/drivers/scsi/nsp32.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <linux/pci.h> | 38 | #include <linux/pci.h> |
39 | #include <linux/delay.h> | 39 | #include <linux/delay.h> |
40 | #include <linux/ctype.h> | 40 | #include <linux/ctype.h> |
41 | #include <linux/dma-mapping.h> | ||
41 | 42 | ||
42 | #include <asm/dma.h> | 43 | #include <asm/dma.h> |
43 | #include <asm/system.h> | 44 | #include <asm/system.h> |
@@ -2776,7 +2777,7 @@ static int nsp32_detect(struct scsi_host_template *sht) | |||
2776 | /* | 2777 | /* |
2777 | * setup DMA | 2778 | * setup DMA |
2778 | */ | 2779 | */ |
2779 | if (pci_set_dma_mask(PCIDEV, 0xffffffffUL) != 0) { | 2780 | if (pci_set_dma_mask(PCIDEV, DMA_32BIT_MASK) != 0) { |
2780 | nsp32_msg (KERN_ERR, "failed to set PCI DMA mask"); | 2781 | nsp32_msg (KERN_ERR, "failed to set PCI DMA mask"); |
2781 | goto scsi_unregister; | 2782 | goto scsi_unregister; |
2782 | } | 2783 | } |
diff --git a/drivers/scsi/osst.c b/drivers/scsi/osst.c index 66ea47a9c53c..e3bd4bc339f4 100644 --- a/drivers/scsi/osst.c +++ b/drivers/scsi/osst.c | |||
@@ -49,6 +49,7 @@ static const char * osst_version = "0.99.4"; | |||
49 | #include <linux/blkdev.h> | 49 | #include <linux/blkdev.h> |
50 | #include <linux/moduleparam.h> | 50 | #include <linux/moduleparam.h> |
51 | #include <linux/delay.h> | 51 | #include <linux/delay.h> |
52 | #include <linux/jiffies.h> | ||
52 | #include <asm/uaccess.h> | 53 | #include <asm/uaccess.h> |
53 | #include <asm/dma.h> | 54 | #include <asm/dma.h> |
54 | #include <asm/system.h> | 55 | #include <asm/system.h> |
@@ -856,7 +857,7 @@ static int osst_wait_frame(struct osst_tape * STp, struct osst_request ** aSRpnt | |||
856 | ) && result >= 0) | 857 | ) && result >= 0) |
857 | { | 858 | { |
858 | #if DEBUG | 859 | #if DEBUG |
859 | if (debugging || jiffies - startwait >= 2*HZ/OSST_POLL_PER_SEC) | 860 | if (debugging || time_after_eq(jiffies, startwait + 2*HZ/OSST_POLL_PER_SEC)) |
860 | printk (OSST_DEB_MSG | 861 | printk (OSST_DEB_MSG |
861 | "%s:D: Succ wait f fr %i (>%i): %i-%i %i (%i): %3li.%li s\n", | 862 | "%s:D: Succ wait f fr %i (>%i): %i-%i %i (%i): %3li.%li s\n", |
862 | name, curr, curr+minlast, STp->first_frame_position, | 863 | name, curr, curr+minlast, STp->first_frame_position, |
@@ -867,7 +868,7 @@ static int osst_wait_frame(struct osst_tape * STp, struct osst_request ** aSRpnt | |||
867 | return 0; | 868 | return 0; |
868 | } | 869 | } |
869 | #if DEBUG | 870 | #if DEBUG |
870 | if (jiffies - startwait >= 2*HZ/OSST_POLL_PER_SEC && notyetprinted) | 871 | if (time_after_eq(jiffies, startwait + 2*HZ/OSST_POLL_PER_SEC) && notyetprinted) |
871 | { | 872 | { |
872 | printk (OSST_DEB_MSG "%s:D: Wait for frame %i (>%i): %i-%i %i (%i)\n", | 873 | printk (OSST_DEB_MSG "%s:D: Wait for frame %i (>%i): %i-%i %i (%i)\n", |
873 | name, curr, curr+minlast, STp->first_frame_position, | 874 | name, curr, curr+minlast, STp->first_frame_position, |
diff --git a/drivers/scsi/ppa.c b/drivers/scsi/ppa.c index 05347eed9dd5..fee843fab1c7 100644 --- a/drivers/scsi/ppa.c +++ b/drivers/scsi/ppa.c | |||
@@ -18,6 +18,7 @@ | |||
18 | #include <linux/parport.h> | 18 | #include <linux/parport.h> |
19 | #include <linux/workqueue.h> | 19 | #include <linux/workqueue.h> |
20 | #include <linux/delay.h> | 20 | #include <linux/delay.h> |
21 | #include <linux/jiffies.h> | ||
21 | #include <asm/io.h> | 22 | #include <asm/io.h> |
22 | 23 | ||
23 | #include <scsi/scsi.h> | 24 | #include <scsi/scsi.h> |
@@ -726,7 +727,7 @@ static int ppa_engine(ppa_struct *dev, struct scsi_cmnd *cmd) | |||
726 | retv--; | 727 | retv--; |
727 | 728 | ||
728 | if (retv) { | 729 | if (retv) { |
729 | if ((jiffies - dev->jstart) > (1 * HZ)) { | 730 | if (time_after(jiffies, dev->jstart + (1 * HZ))) { |
730 | printk | 731 | printk |
731 | ("ppa: Parallel port cable is unplugged!!\n"); | 732 | ("ppa: Parallel port cable is unplugged!!\n"); |
732 | ppa_fail(dev, DID_BUS_BUSY); | 733 | ppa_fail(dev, DID_BUS_BUSY); |
diff --git a/drivers/scsi/qla1280.c b/drivers/scsi/qla1280.c index e0230249fa0f..5a48e55f9418 100644 --- a/drivers/scsi/qla1280.c +++ b/drivers/scsi/qla1280.c | |||
@@ -350,6 +350,7 @@ | |||
350 | #include <linux/pci_ids.h> | 350 | #include <linux/pci_ids.h> |
351 | #include <linux/interrupt.h> | 351 | #include <linux/interrupt.h> |
352 | #include <linux/init.h> | 352 | #include <linux/init.h> |
353 | #include <linux/dma-mapping.h> | ||
353 | 354 | ||
354 | #include <asm/io.h> | 355 | #include <asm/io.h> |
355 | #include <asm/irq.h> | 356 | #include <asm/irq.h> |
@@ -4321,7 +4322,7 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4321 | 4322 | ||
4322 | #ifdef QLA_64BIT_PTR | 4323 | #ifdef QLA_64BIT_PTR |
4323 | if (pci_set_dma_mask(ha->pdev, (dma_addr_t) ~ 0ULL)) { | 4324 | if (pci_set_dma_mask(ha->pdev, (dma_addr_t) ~ 0ULL)) { |
4324 | if (pci_set_dma_mask(ha->pdev, 0xffffffff)) { | 4325 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) { |
4325 | printk(KERN_WARNING "scsi(%li): Unable to set a " | 4326 | printk(KERN_WARNING "scsi(%li): Unable to set a " |
4326 | "suitable DMA mask - aborting\n", ha->host_no); | 4327 | "suitable DMA mask - aborting\n", ha->host_no); |
4327 | error = -ENODEV; | 4328 | error = -ENODEV; |
@@ -4331,7 +4332,7 @@ qla1280_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) | |||
4331 | dprintk(2, "scsi(%li): 64 Bit PCI Addressing Enabled\n", | 4332 | dprintk(2, "scsi(%li): 64 Bit PCI Addressing Enabled\n", |
4332 | ha->host_no); | 4333 | ha->host_no); |
4333 | #else | 4334 | #else |
4334 | if (pci_set_dma_mask(ha->pdev, 0xffffffff)) { | 4335 | if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) { |
4335 | printk(KERN_WARNING "scsi(%li): Unable to set a " | 4336 | printk(KERN_WARNING "scsi(%li): Unable to set a " |
4336 | "suitable DMA mask - aborting\n", ha->host_no); | 4337 | "suitable DMA mask - aborting\n", ha->host_no); |
4337 | error = -ENODEV; | 4338 | error = -ENODEV; |
diff --git a/drivers/scsi/qlogicfc.c b/drivers/scsi/qlogicfc.c index 94ef3f08d378..52b224a5d6fd 100644 --- a/drivers/scsi/qlogicfc.c +++ b/drivers/scsi/qlogicfc.c | |||
@@ -61,6 +61,8 @@ | |||
61 | #include <linux/unistd.h> | 61 | #include <linux/unistd.h> |
62 | #include <linux/spinlock.h> | 62 | #include <linux/spinlock.h> |
63 | #include <linux/interrupt.h> | 63 | #include <linux/interrupt.h> |
64 | #include <linux/dma-mapping.h> | ||
65 | #include <linux/jiffies.h> | ||
64 | #include <asm/io.h> | 66 | #include <asm/io.h> |
65 | #include <asm/irq.h> | 67 | #include <asm/irq.h> |
66 | #include "scsi.h" | 68 | #include "scsi.h" |
@@ -737,8 +739,8 @@ static int isp2x00_detect(struct scsi_host_template * tmpt) | |||
737 | continue; | 739 | continue; |
738 | 740 | ||
739 | /* Try to configure DMA attributes. */ | 741 | /* Try to configure DMA attributes. */ |
740 | if (pci_set_dma_mask(pdev, 0xffffffffffffffffULL) && | 742 | if (pci_set_dma_mask(pdev, DMA_64BIT_MASK) && |
741 | pci_set_dma_mask(pdev, 0xffffffffULL)) | 743 | pci_set_dma_mask(pdev, DMA_32BIT_MASK)) |
742 | continue; | 744 | continue; |
743 | 745 | ||
744 | host = scsi_register(tmpt, sizeof(struct isp2x00_hostdata)); | 746 | host = scsi_register(tmpt, sizeof(struct isp2x00_hostdata)); |
@@ -1325,7 +1327,7 @@ static int isp2x00_queuecommand(Scsi_Cmnd * Cmnd, void (*done) (Scsi_Cmnd *)) | |||
1325 | cmd->control_flags = cpu_to_le16(CFLAG_READ); | 1327 | cmd->control_flags = cpu_to_le16(CFLAG_READ); |
1326 | 1328 | ||
1327 | if (Cmnd->device->tagged_supported) { | 1329 | if (Cmnd->device->tagged_supported) { |
1328 | if ((jiffies - hostdata->tag_ages[Cmnd->device->id]) > (2 * ISP_TIMEOUT)) { | 1330 | if (time_after(jiffies, hostdata->tag_ages[Cmnd->device->id] + (2 * ISP_TIMEOUT))) { |
1329 | cmd->control_flags |= cpu_to_le16(CFLAG_ORDERED_TAG); | 1331 | cmd->control_flags |= cpu_to_le16(CFLAG_ORDERED_TAG); |
1330 | hostdata->tag_ages[Cmnd->device->id] = jiffies; | 1332 | hostdata->tag_ages[Cmnd->device->id] = jiffies; |
1331 | } else | 1333 | } else |
diff --git a/drivers/scsi/qlogicpti.c b/drivers/scsi/qlogicpti.c index 1fd5fc6d0fe3..c7e78dcf09df 100644 --- a/drivers/scsi/qlogicpti.c +++ b/drivers/scsi/qlogicpti.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/spinlock.h> | 24 | #include <linux/spinlock.h> |
25 | #include <linux/interrupt.h> | 25 | #include <linux/interrupt.h> |
26 | #include <linux/module.h> | 26 | #include <linux/module.h> |
27 | #include <linux/jiffies.h> | ||
27 | 28 | ||
28 | #include <asm/byteorder.h> | 29 | #include <asm/byteorder.h> |
29 | 30 | ||
@@ -1017,7 +1018,7 @@ static inline void cmd_frob(struct Command_Entry *cmd, struct scsi_cmnd *Cmnd, | |||
1017 | if (Cmnd->device->tagged_supported) { | 1018 | if (Cmnd->device->tagged_supported) { |
1018 | if (qpti->cmd_count[Cmnd->device->id] == 0) | 1019 | if (qpti->cmd_count[Cmnd->device->id] == 0) |
1019 | qpti->tag_ages[Cmnd->device->id] = jiffies; | 1020 | qpti->tag_ages[Cmnd->device->id] = jiffies; |
1020 | if ((jiffies - qpti->tag_ages[Cmnd->device->id]) > (5*HZ)) { | 1021 | if (time_after(jiffies, qpti->tag_ages[Cmnd->device->id] + (5*HZ))) { |
1021 | cmd->control_flags = CFLAG_ORDERED_TAG; | 1022 | cmd->control_flags = CFLAG_ORDERED_TAG; |
1022 | qpti->tag_ages[Cmnd->device->id] = jiffies; | 1023 | qpti->tag_ages[Cmnd->device->id] = jiffies; |
1023 | } else | 1024 | } else |
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index 5996d3cd0ed8..674b15c78f68 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -1528,7 +1528,7 @@ static int serial8250_startup(struct uart_port *port) | |||
1528 | 1528 | ||
1529 | /* | 1529 | /* |
1530 | * Clear the FIFO buffers and disable them. | 1530 | * Clear the FIFO buffers and disable them. |
1531 | * (they will be reeanbled in set_termios()) | 1531 | * (they will be reenabled in set_termios()) |
1532 | */ | 1532 | */ |
1533 | serial8250_clear_fifos(up); | 1533 | serial8250_clear_fifos(up); |
1534 | 1534 | ||
diff --git a/drivers/serial/8250_au1x00.c b/drivers/serial/8250_au1x00.c index 8d8d7a70d03e..3d1bfd07208d 100644 --- a/drivers/serial/8250_au1x00.c +++ b/drivers/serial/8250_au1x00.c | |||
@@ -51,7 +51,7 @@ static struct plat_serial8250_port au1x00_data[] = { | |||
51 | #elif defined(CONFIG_SOC_AU1100) | 51 | #elif defined(CONFIG_SOC_AU1100) |
52 | PORT(UART0_ADDR, AU1100_UART0_INT), | 52 | PORT(UART0_ADDR, AU1100_UART0_INT), |
53 | PORT(UART1_ADDR, AU1100_UART1_INT), | 53 | PORT(UART1_ADDR, AU1100_UART1_INT), |
54 | PORT(UART2_ADDR, AU1100_UART2_INT), | 54 | /* The internal UART2 does not exist on the AU1100 processor. */ |
55 | PORT(UART3_ADDR, AU1100_UART3_INT), | 55 | PORT(UART3_ADDR, AU1100_UART3_INT), |
56 | #elif defined(CONFIG_SOC_AU1550) | 56 | #elif defined(CONFIG_SOC_AU1550) |
57 | PORT(UART0_ADDR, AU1550_UART0_INT), | 57 | PORT(UART0_ADDR, AU1550_UART0_INT), |
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index ceb3697bf84d..fe0d8b8e91c8 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -620,22 +620,6 @@ config SERIAL_SH_SCI_CONSOLE | |||
620 | depends on SERIAL_SH_SCI=y | 620 | depends on SERIAL_SH_SCI=y |
621 | select SERIAL_CORE_CONSOLE | 621 | select SERIAL_CORE_CONSOLE |
622 | 622 | ||
623 | config SERIAL_AU1X00 | ||
624 | bool "Enable Au1x00 UART Support" | ||
625 | depends on MIPS && SOC_AU1X00 | ||
626 | select SERIAL_CORE | ||
627 | help | ||
628 | If you have an Alchemy AU1X00 processor (MIPS based) and you want | ||
629 | to use serial ports, say Y. Otherwise, say N. | ||
630 | |||
631 | config SERIAL_AU1X00_CONSOLE | ||
632 | bool "Enable Au1x00 serial console" | ||
633 | depends on SERIAL_AU1X00 | ||
634 | select SERIAL_CORE_CONSOLE | ||
635 | help | ||
636 | If you have an Alchemy AU1X00 processor (MIPS based) and you want | ||
637 | to use a console on a serial port, say Y. Otherwise, say N. | ||
638 | |||
639 | config SERIAL_CORE | 623 | config SERIAL_CORE |
640 | tristate | 624 | tristate |
641 | 625 | ||
diff --git a/drivers/serial/Makefile b/drivers/serial/Makefile index a3a4323d9c86..d2b4c214876b 100644 --- a/drivers/serial/Makefile +++ b/drivers/serial/Makefile | |||
@@ -41,7 +41,6 @@ obj-$(CONFIG_SERIAL_COLDFIRE) += mcfserial.o | |||
41 | obj-$(CONFIG_V850E_UART) += v850e_uart.o | 41 | obj-$(CONFIG_V850E_UART) += v850e_uart.o |
42 | obj-$(CONFIG_SERIAL_PMACZILOG) += pmac_zilog.o | 42 | obj-$(CONFIG_SERIAL_PMACZILOG) += pmac_zilog.o |
43 | obj-$(CONFIG_SERIAL_LH7A40X) += serial_lh7a40x.o | 43 | obj-$(CONFIG_SERIAL_LH7A40X) += serial_lh7a40x.o |
44 | obj-$(CONFIG_SERIAL_AU1X00) += au1x00_uart.o | ||
45 | obj-$(CONFIG_SERIAL_DZ) += dz.o | 44 | obj-$(CONFIG_SERIAL_DZ) += dz.o |
46 | obj-$(CONFIG_SERIAL_SH_SCI) += sh-sci.o | 45 | obj-$(CONFIG_SERIAL_SH_SCI) += sh-sci.o |
47 | obj-$(CONFIG_SERIAL_SGI_L1_CONSOLE) += sn_console.o | 46 | obj-$(CONFIG_SERIAL_SGI_L1_CONSOLE) += sn_console.o |
diff --git a/drivers/serial/amba-pl010.c b/drivers/serial/amba-pl010.c index 127d6cd5de7f..1631414000a2 100644 --- a/drivers/serial/amba-pl010.c +++ b/drivers/serial/amba-pl010.c | |||
@@ -51,8 +51,6 @@ | |||
51 | #include <linux/amba/serial.h> | 51 | #include <linux/amba/serial.h> |
52 | 52 | ||
53 | #include <asm/io.h> | 53 | #include <asm/io.h> |
54 | #include <asm/irq.h> | ||
55 | #include <asm/hardware.h> | ||
56 | 54 | ||
57 | #define UART_NR 2 | 55 | #define UART_NR 2 |
58 | 56 | ||
@@ -65,26 +63,16 @@ | |||
65 | #define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0) | 63 | #define UART_RX_DATA(s) (((s) & UART01x_FR_RXFE) == 0) |
66 | #define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0) | 64 | #define UART_TX_READY(s) (((s) & UART01x_FR_TXFF) == 0) |
67 | 65 | ||
68 | #define UART_DUMMY_RSR_RX /*256*/0 | 66 | #define UART_DUMMY_RSR_RX 256 |
69 | #define UART_PORT_SIZE 64 | 67 | #define UART_PORT_SIZE 64 |
70 | 68 | ||
71 | /* | 69 | /* |
72 | * On the Integrator platform, the port RTS and DTR are provided by | ||
73 | * bits in the following SC_CTRLS register bits: | ||
74 | * RTS DTR | ||
75 | * UART0 7 6 | ||
76 | * UART1 5 4 | ||
77 | */ | ||
78 | #define SC_CTRLC (IO_ADDRESS(INTEGRATOR_SC_BASE) + INTEGRATOR_SC_CTRLC_OFFSET) | ||
79 | #define SC_CTRLS (IO_ADDRESS(INTEGRATOR_SC_BASE) + INTEGRATOR_SC_CTRLS_OFFSET) | ||
80 | |||
81 | /* | ||
82 | * We wrap our port structure around the generic uart_port. | 70 | * We wrap our port structure around the generic uart_port. |
83 | */ | 71 | */ |
84 | struct uart_amba_port { | 72 | struct uart_amba_port { |
85 | struct uart_port port; | 73 | struct uart_port port; |
86 | unsigned int dtr_mask; | 74 | struct amba_device *dev; |
87 | unsigned int rts_mask; | 75 | struct amba_pl010_data *data; |
88 | unsigned int old_status; | 76 | unsigned int old_status; |
89 | }; | 77 | }; |
90 | 78 | ||
@@ -300,20 +288,9 @@ static unsigned int pl010_get_mctrl(struct uart_port *port) | |||
300 | static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl) | 288 | static void pl010_set_mctrl(struct uart_port *port, unsigned int mctrl) |
301 | { | 289 | { |
302 | struct uart_amba_port *uap = (struct uart_amba_port *)port; | 290 | struct uart_amba_port *uap = (struct uart_amba_port *)port; |
303 | unsigned int ctrls = 0, ctrlc = 0; | ||
304 | |||
305 | if (mctrl & TIOCM_RTS) | ||
306 | ctrlc |= uap->rts_mask; | ||
307 | else | ||
308 | ctrls |= uap->rts_mask; | ||
309 | 291 | ||
310 | if (mctrl & TIOCM_DTR) | 292 | if (uap->data) |
311 | ctrlc |= uap->dtr_mask; | 293 | uap->data->set_mctrl(uap->dev, uap->port.membase, mctrl); |
312 | else | ||
313 | ctrls |= uap->dtr_mask; | ||
314 | |||
315 | __raw_writel(ctrls, SC_CTRLS); | ||
316 | __raw_writel(ctrlc, SC_CTRLC); | ||
317 | } | 294 | } |
318 | 295 | ||
319 | static void pl010_break_ctl(struct uart_port *port, int break_state) | 296 | static void pl010_break_ctl(struct uart_port *port, int break_state) |
@@ -539,38 +516,7 @@ static struct uart_ops amba_pl010_pops = { | |||
539 | .verify_port = pl010_verify_port, | 516 | .verify_port = pl010_verify_port, |
540 | }; | 517 | }; |
541 | 518 | ||
542 | static struct uart_amba_port amba_ports[UART_NR] = { | 519 | static struct uart_amba_port *amba_ports[UART_NR]; |
543 | { | ||
544 | .port = { | ||
545 | .membase = (void *)IO_ADDRESS(INTEGRATOR_UART0_BASE), | ||
546 | .mapbase = INTEGRATOR_UART0_BASE, | ||
547 | .iotype = UPIO_MEM, | ||
548 | .irq = IRQ_UARTINT0, | ||
549 | .uartclk = 14745600, | ||
550 | .fifosize = 16, | ||
551 | .ops = &amba_pl010_pops, | ||
552 | .flags = UPF_BOOT_AUTOCONF, | ||
553 | .line = 0, | ||
554 | }, | ||
555 | .dtr_mask = 1 << 5, | ||
556 | .rts_mask = 1 << 4, | ||
557 | }, | ||
558 | { | ||
559 | .port = { | ||
560 | .membase = (void *)IO_ADDRESS(INTEGRATOR_UART1_BASE), | ||
561 | .mapbase = INTEGRATOR_UART1_BASE, | ||
562 | .iotype = UPIO_MEM, | ||
563 | .irq = IRQ_UARTINT1, | ||
564 | .uartclk = 14745600, | ||
565 | .fifosize = 16, | ||
566 | .ops = &amba_pl010_pops, | ||
567 | .flags = UPF_BOOT_AUTOCONF, | ||
568 | .line = 1, | ||
569 | }, | ||
570 | .dtr_mask = 1 << 7, | ||
571 | .rts_mask = 1 << 6, | ||
572 | } | ||
573 | }; | ||
574 | 520 | ||
575 | #ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE | 521 | #ifdef CONFIG_SERIAL_AMBA_PL010_CONSOLE |
576 | 522 | ||
@@ -588,7 +534,7 @@ static void pl010_console_putchar(struct uart_port *port, int ch) | |||
588 | static void | 534 | static void |
589 | pl010_console_write(struct console *co, const char *s, unsigned int count) | 535 | pl010_console_write(struct console *co, const char *s, unsigned int count) |
590 | { | 536 | { |
591 | struct uart_port *port = &amba_ports[co->index].port; | 537 | struct uart_port *port = &amba_ports[co->index]->port; |
592 | unsigned int status, old_cr; | 538 | unsigned int status, old_cr; |
593 | 539 | ||
594 | /* | 540 | /* |
@@ -651,7 +597,7 @@ static int __init pl010_console_setup(struct console *co, char *options) | |||
651 | */ | 597 | */ |
652 | if (co->index >= UART_NR) | 598 | if (co->index >= UART_NR) |
653 | co->index = 0; | 599 | co->index = 0; |
654 | port = &amba_ports[co->index].port; | 600 | port = &amba_ports[co->index]->port; |
655 | 601 | ||
656 | if (options) | 602 | if (options) |
657 | uart_parse_options(options, &baud, &parity, &bits, &flow); | 603 | uart_parse_options(options, &baud, &parity, &bits, &flow); |
@@ -672,24 +618,6 @@ static struct console amba_console = { | |||
672 | .data = &amba_reg, | 618 | .data = &amba_reg, |
673 | }; | 619 | }; |
674 | 620 | ||
675 | static int __init amba_console_init(void) | ||
676 | { | ||
677 | /* | ||
678 | * All port initializations are done statically | ||
679 | */ | ||
680 | register_console(&amba_console); | ||
681 | return 0; | ||
682 | } | ||
683 | console_initcall(amba_console_init); | ||
684 | |||
685 | static int __init amba_late_console_init(void) | ||
686 | { | ||
687 | if (!(amba_console.flags & CON_ENABLED)) | ||
688 | register_console(&amba_console); | ||
689 | return 0; | ||
690 | } | ||
691 | late_initcall(amba_late_console_init); | ||
692 | |||
693 | #define AMBA_CONSOLE &amba_console | 621 | #define AMBA_CONSOLE &amba_console |
694 | #else | 622 | #else |
695 | #define AMBA_CONSOLE NULL | 623 | #define AMBA_CONSOLE NULL |
@@ -707,30 +635,76 @@ static struct uart_driver amba_reg = { | |||
707 | 635 | ||
708 | static int pl010_probe(struct amba_device *dev, void *id) | 636 | static int pl010_probe(struct amba_device *dev, void *id) |
709 | { | 637 | { |
710 | int i; | 638 | struct uart_amba_port *port; |
639 | void __iomem *base; | ||
640 | int i, ret; | ||
711 | 641 | ||
712 | for (i = 0; i < UART_NR; i++) { | 642 | for (i = 0; i < ARRAY_SIZE(amba_ports); i++) |
713 | if (amba_ports[i].port.mapbase != dev->res.start) | 643 | if (amba_ports[i] == NULL) |
714 | continue; | 644 | break; |
715 | 645 | ||
716 | amba_ports[i].port.dev = &dev->dev; | 646 | if (i == ARRAY_SIZE(amba_ports)) { |
717 | uart_add_one_port(&amba_reg, &amba_ports[i].port); | 647 | ret = -EBUSY; |
718 | amba_set_drvdata(dev, &amba_ports[i]); | 648 | goto out; |
719 | break; | ||
720 | } | 649 | } |
721 | 650 | ||
722 | return 0; | 651 | port = kzalloc(sizeof(struct uart_amba_port), GFP_KERNEL); |
652 | if (!port) { | ||
653 | ret = -ENOMEM; | ||
654 | goto out; | ||
655 | } | ||
656 | |||
657 | base = ioremap(dev->res.start, PAGE_SIZE); | ||
658 | if (!base) { | ||
659 | ret = -ENOMEM; | ||
660 | goto free; | ||
661 | } | ||
662 | |||
663 | port->port.dev = &dev->dev; | ||
664 | port->port.mapbase = dev->res.start; | ||
665 | port->port.membase = base; | ||
666 | port->port.iotype = UPIO_MEM; | ||
667 | port->port.irq = dev->irq[0]; | ||
668 | port->port.uartclk = 14745600; | ||
669 | port->port.fifosize = 16; | ||
670 | port->port.ops = &amba_pl010_pops; | ||
671 | port->port.flags = UPF_BOOT_AUTOCONF; | ||
672 | port->port.line = i; | ||
673 | port->dev = dev; | ||
674 | port->data = dev->dev.platform_data; | ||
675 | |||
676 | amba_ports[i] = port; | ||
677 | |||
678 | amba_set_drvdata(dev, port); | ||
679 | ret = uart_add_one_port(&amba_reg, &port->port); | ||
680 | if (ret) { | ||
681 | amba_set_drvdata(dev, NULL); | ||
682 | amba_ports[i] = NULL; | ||
683 | iounmap(base); | ||
684 | free: | ||
685 | kfree(port); | ||
686 | } | ||
687 | |||
688 | out: | ||
689 | return ret; | ||
723 | } | 690 | } |
724 | 691 | ||
725 | static int pl010_remove(struct amba_device *dev) | 692 | static int pl010_remove(struct amba_device *dev) |
726 | { | 693 | { |
727 | struct uart_amba_port *uap = amba_get_drvdata(dev); | 694 | struct uart_amba_port *port = amba_get_drvdata(dev); |
728 | 695 | int i; | |
729 | if (uap) | ||
730 | uart_remove_one_port(&amba_reg, &uap->port); | ||
731 | 696 | ||
732 | amba_set_drvdata(dev, NULL); | 697 | amba_set_drvdata(dev, NULL); |
733 | 698 | ||
699 | uart_remove_one_port(&amba_reg, &port->port); | ||
700 | |||
701 | for (i = 0; i < ARRAY_SIZE(amba_ports); i++) | ||
702 | if (amba_ports[i] == port) | ||
703 | amba_ports[i] = NULL; | ||
704 | |||
705 | iounmap(port->port.membase); | ||
706 | kfree(port); | ||
707 | |||
734 | return 0; | 708 | return 0; |
735 | } | 709 | } |
736 | 710 | ||
diff --git a/drivers/serial/au1x00_uart.c b/drivers/serial/au1x00_uart.c deleted file mode 100644 index 948880ac5878..000000000000 --- a/drivers/serial/au1x00_uart.c +++ /dev/null | |||
@@ -1,1287 +0,0 @@ | |||
1 | /* | ||
2 | * Driver for 8250/16550-type serial ports | ||
3 | * | ||
4 | * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. | ||
5 | * | ||
6 | * Copyright (C) 2001 Russell King. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * A note about mapbase / membase | ||
14 | * | ||
15 | * mapbase is the physical address of the IO port. Currently, we don't | ||
16 | * support this very well, and it may well be dropped from this driver | ||
17 | * in future. As such, mapbase should be NULL. | ||
18 | * | ||
19 | * membase is an 'ioremapped' cookie. This is compatible with the old | ||
20 | * serial.c driver, and is currently the preferred form. | ||
21 | */ | ||
22 | #include <linux/config.h> | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/tty.h> | ||
25 | #include <linux/ioport.h> | ||
26 | #include <linux/init.h> | ||
27 | #include <linux/console.h> | ||
28 | #include <linux/sysrq.h> | ||
29 | #include <linux/serial.h> | ||
30 | #include <linux/serialP.h> | ||
31 | #include <linux/delay.h> | ||
32 | |||
33 | #include <asm/serial.h> | ||
34 | #include <asm/io.h> | ||
35 | #include <asm/irq.h> | ||
36 | #include <asm/mach-au1x00/au1000.h> | ||
37 | |||
38 | #if defined(CONFIG_SERIAL_AU1X00_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) | ||
39 | #define SUPPORT_SYSRQ | ||
40 | #endif | ||
41 | |||
42 | #include <linux/serial_core.h> | ||
43 | #include "8250.h" | ||
44 | |||
45 | /* | ||
46 | * Debugging. | ||
47 | */ | ||
48 | #if 0 | ||
49 | #define DEBUG_AUTOCONF(fmt...) printk(fmt) | ||
50 | #else | ||
51 | #define DEBUG_AUTOCONF(fmt...) do { } while (0) | ||
52 | #endif | ||
53 | |||
54 | #if 0 | ||
55 | #define DEBUG_INTR(fmt...) printk(fmt) | ||
56 | #else | ||
57 | #define DEBUG_INTR(fmt...) do { } while (0) | ||
58 | #endif | ||
59 | |||
60 | #define PASS_LIMIT 256 | ||
61 | |||
62 | /* | ||
63 | * We default to IRQ0 for the "no irq" hack. Some | ||
64 | * machine types want others as well - they're free | ||
65 | * to redefine this in their header file. | ||
66 | */ | ||
67 | #define is_real_interrupt(irq) ((irq) != 0) | ||
68 | |||
69 | static struct old_serial_port old_serial_port[] = { | ||
70 | { .baud_base = 0, | ||
71 | .iomem_base = (u8 *)UART0_ADDR, | ||
72 | .irq = AU1000_UART0_INT, | ||
73 | .flags = STD_COM_FLAGS, | ||
74 | .iomem_reg_shift = 2, | ||
75 | }, { | ||
76 | .baud_base = 0, | ||
77 | .iomem_base = (u8 *)UART1_ADDR, | ||
78 | .irq = AU1000_UART1_INT, | ||
79 | .flags = STD_COM_FLAGS, | ||
80 | .iomem_reg_shift = 2 | ||
81 | }, { | ||
82 | .baud_base = 0, | ||
83 | .iomem_base = (u8 *)UART2_ADDR, | ||
84 | .irq = AU1000_UART2_INT, | ||
85 | .flags = STD_COM_FLAGS, | ||
86 | .iomem_reg_shift = 2 | ||
87 | }, { | ||
88 | .baud_base = 0, | ||
89 | .iomem_base = (u8 *)UART3_ADDR, | ||
90 | .irq = AU1000_UART3_INT, | ||
91 | .flags = STD_COM_FLAGS, | ||
92 | .iomem_reg_shift = 2 | ||
93 | } | ||
94 | }; | ||
95 | |||
96 | #define UART_NR ARRAY_SIZE(old_serial_port) | ||
97 | |||
98 | struct uart_8250_port { | ||
99 | struct uart_port port; | ||
100 | struct timer_list timer; /* "no irq" timer */ | ||
101 | struct list_head list; /* ports on this IRQ */ | ||
102 | unsigned short rev; | ||
103 | unsigned char acr; | ||
104 | unsigned char ier; | ||
105 | unsigned char lcr; | ||
106 | unsigned char mcr_mask; /* mask of user bits */ | ||
107 | unsigned char mcr_force; /* mask of forced bits */ | ||
108 | unsigned char lsr_break_flag; | ||
109 | |||
110 | /* | ||
111 | * We provide a per-port pm hook. | ||
112 | */ | ||
113 | void (*pm)(struct uart_port *port, | ||
114 | unsigned int state, unsigned int old); | ||
115 | }; | ||
116 | |||
117 | struct irq_info { | ||
118 | spinlock_t lock; | ||
119 | struct list_head *head; | ||
120 | }; | ||
121 | |||
122 | static struct irq_info irq_lists[NR_IRQS]; | ||
123 | |||
124 | /* | ||
125 | * Here we define the default xmit fifo size used for each type of UART. | ||
126 | */ | ||
127 | static const struct serial_uart_config uart_config[PORT_MAX_8250+1] = { | ||
128 | { "unknown", 1, 0 }, | ||
129 | { "8250", 1, 0 }, | ||
130 | { "16450", 1, 0 }, | ||
131 | { "16550", 1, 0 }, | ||
132 | /* PORT_16550A */ | ||
133 | { "AU1X00_UART",16, UART_CLEAR_FIFO | UART_USE_FIFO }, | ||
134 | }; | ||
135 | |||
136 | static unsigned int serial_in(struct uart_8250_port *up, int offset) | ||
137 | { | ||
138 | return au_readl((unsigned long)up->port.membase + offset); | ||
139 | } | ||
140 | |||
141 | static void serial_out(struct uart_8250_port *up, int offset, int value) | ||
142 | { | ||
143 | au_writel(value, (unsigned long)up->port.membase + offset); | ||
144 | } | ||
145 | |||
146 | #define serial_inp(up, offset) serial_in(up, offset) | ||
147 | #define serial_outp(up, offset, value) serial_out(up, offset, value) | ||
148 | |||
149 | /* | ||
150 | * This routine is called by rs_init() to initialize a specific serial | ||
151 | * port. It determines what type of UART chip this serial port is | ||
152 | * using: 8250, 16450, 16550, 16550A. The important question is | ||
153 | * whether or not this UART is a 16550A or not, since this will | ||
154 | * determine whether or not we can use its FIFO features or not. | ||
155 | */ | ||
156 | static void autoconfig(struct uart_8250_port *up, unsigned int probeflags) | ||
157 | { | ||
158 | unsigned char save_lcr, save_mcr; | ||
159 | unsigned long flags; | ||
160 | |||
161 | if (!up->port.iobase && !up->port.mapbase && !up->port.membase) | ||
162 | return; | ||
163 | |||
164 | DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%08lx): ", | ||
165 | up->port.line, up->port.iobase, up->port.membase); | ||
166 | |||
167 | /* | ||
168 | * We really do need global IRQs disabled here - we're going to | ||
169 | * be frobbing the chips IRQ enable register to see if it exists. | ||
170 | */ | ||
171 | spin_lock_irqsave(&up->port.lock, flags); | ||
172 | // save_flags(flags); cli(); | ||
173 | |||
174 | save_mcr = serial_in(up, UART_MCR); | ||
175 | save_lcr = serial_in(up, UART_LCR); | ||
176 | |||
177 | up->port.type = PORT_16550A; | ||
178 | serial_outp(up, UART_LCR, save_lcr); | ||
179 | |||
180 | up->port.fifosize = uart_config[up->port.type].dfl_xmit_fifo_size; | ||
181 | |||
182 | if (up->port.type == PORT_UNKNOWN) | ||
183 | goto out; | ||
184 | |||
185 | /* | ||
186 | * Reset the UART. | ||
187 | */ | ||
188 | serial_outp(up, UART_MCR, save_mcr); | ||
189 | serial_outp(up, UART_FCR, (UART_FCR_ENABLE_FIFO | | ||
190 | UART_FCR_CLEAR_RCVR | | ||
191 | UART_FCR_CLEAR_XMIT)); | ||
192 | serial_outp(up, UART_FCR, 0); | ||
193 | (void)serial_in(up, UART_RX); | ||
194 | serial_outp(up, UART_IER, 0); | ||
195 | |||
196 | out: | ||
197 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
198 | // restore_flags(flags); | ||
199 | DEBUG_AUTOCONF("type=%s\n", uart_config[up->port.type].name); | ||
200 | } | ||
201 | |||
202 | static void serial8250_stop_tx(struct uart_port *port) | ||
203 | { | ||
204 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
205 | |||
206 | if (up->ier & UART_IER_THRI) { | ||
207 | up->ier &= ~UART_IER_THRI; | ||
208 | serial_out(up, UART_IER, up->ier); | ||
209 | } | ||
210 | } | ||
211 | |||
212 | static void serial8250_start_tx(struct uart_port *port) | ||
213 | { | ||
214 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
215 | |||
216 | if (!(up->ier & UART_IER_THRI)) { | ||
217 | up->ier |= UART_IER_THRI; | ||
218 | serial_out(up, UART_IER, up->ier); | ||
219 | } | ||
220 | } | ||
221 | |||
222 | static void serial8250_stop_rx(struct uart_port *port) | ||
223 | { | ||
224 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
225 | |||
226 | up->ier &= ~UART_IER_RLSI; | ||
227 | up->port.read_status_mask &= ~UART_LSR_DR; | ||
228 | serial_out(up, UART_IER, up->ier); | ||
229 | } | ||
230 | |||
231 | static void serial8250_enable_ms(struct uart_port *port) | ||
232 | { | ||
233 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
234 | |||
235 | up->ier |= UART_IER_MSI; | ||
236 | serial_out(up, UART_IER, up->ier); | ||
237 | } | ||
238 | |||
239 | static void | ||
240 | receive_chars(struct uart_8250_port *up, int *status, struct pt_regs *regs) | ||
241 | { | ||
242 | struct tty_struct *tty = up->port.info->tty; | ||
243 | unsigned char ch, flag; | ||
244 | int max_count = 256; | ||
245 | |||
246 | do { | ||
247 | ch = serial_inp(up, UART_RX); | ||
248 | flag = TTY_NORMAL; | ||
249 | up->port.icount.rx++; | ||
250 | |||
251 | if (unlikely(*status & (UART_LSR_BI | UART_LSR_PE | | ||
252 | UART_LSR_FE | UART_LSR_OE))) { | ||
253 | /* | ||
254 | * For statistics only | ||
255 | */ | ||
256 | if (*status & UART_LSR_BI) { | ||
257 | *status &= ~(UART_LSR_FE | UART_LSR_PE); | ||
258 | up->port.icount.brk++; | ||
259 | /* | ||
260 | * We do the SysRQ and SAK checking | ||
261 | * here because otherwise the break | ||
262 | * may get masked by ignore_status_mask | ||
263 | * or read_status_mask. | ||
264 | */ | ||
265 | if (uart_handle_break(&up->port)) | ||
266 | goto ignore_char; | ||
267 | } else if (*status & UART_LSR_PE) | ||
268 | up->port.icount.parity++; | ||
269 | else if (*status & UART_LSR_FE) | ||
270 | up->port.icount.frame++; | ||
271 | if (*status & UART_LSR_OE) | ||
272 | up->port.icount.overrun++; | ||
273 | |||
274 | /* | ||
275 | * Mask off conditions which should be ingored. | ||
276 | */ | ||
277 | *status &= up->port.read_status_mask; | ||
278 | |||
279 | #ifdef CONFIG_SERIAL_AU1X00_CONSOLE | ||
280 | if (up->port.line == up->port.cons->index) { | ||
281 | /* Recover the break flag from console xmit */ | ||
282 | *status |= up->lsr_break_flag; | ||
283 | up->lsr_break_flag = 0; | ||
284 | } | ||
285 | #endif | ||
286 | if (*status & UART_LSR_BI) { | ||
287 | DEBUG_INTR("handling break...."); | ||
288 | flag = TTY_BREAK; | ||
289 | } else if (*status & UART_LSR_PE) | ||
290 | flag = TTY_PARITY; | ||
291 | else if (*status & UART_LSR_FE) | ||
292 | flag = TTY_FRAME; | ||
293 | } | ||
294 | if (uart_handle_sysrq_char(&up->port, ch, regs)) | ||
295 | goto ignore_char; | ||
296 | if ((*status & up->port.ignore_status_mask) == 0) | ||
297 | tty_insert_flip_char(tty, ch, flag); | ||
298 | if (*status & UART_LSR_OE) | ||
299 | /* | ||
300 | * Overrun is special, since it's reported | ||
301 | * immediately, and doesn't affect the current | ||
302 | * character. | ||
303 | */ | ||
304 | tty_insert_flip_char(tty, 0, TTY_OVERRUN); | ||
305 | } | ||
306 | ignore_char: | ||
307 | *status = serial_inp(up, UART_LSR); | ||
308 | } while ((*status & UART_LSR_DR) && (max_count-- > 0)); | ||
309 | spin_unlock(&up->port.lock); | ||
310 | tty_flip_buffer_push(tty); | ||
311 | spin_lock(&up->port.lock); | ||
312 | } | ||
313 | |||
314 | static void transmit_chars(struct uart_8250_port *up) | ||
315 | { | ||
316 | struct circ_buf *xmit = &up->port.info->xmit; | ||
317 | int count; | ||
318 | |||
319 | if (up->port.x_char) { | ||
320 | serial_outp(up, UART_TX, up->port.x_char); | ||
321 | up->port.icount.tx++; | ||
322 | up->port.x_char = 0; | ||
323 | return; | ||
324 | } | ||
325 | if (uart_circ_empty(xmit) || uart_tx_stopped(&up->port)) { | ||
326 | serial8250_stop_tx(&up->port); | ||
327 | return; | ||
328 | } | ||
329 | |||
330 | count = up->port.fifosize; | ||
331 | do { | ||
332 | serial_out(up, UART_TX, xmit->buf[xmit->tail]); | ||
333 | xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); | ||
334 | up->port.icount.tx++; | ||
335 | if (uart_circ_empty(xmit)) | ||
336 | break; | ||
337 | } while (--count > 0); | ||
338 | |||
339 | if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) | ||
340 | uart_write_wakeup(&up->port); | ||
341 | |||
342 | DEBUG_INTR("THRE..."); | ||
343 | |||
344 | if (uart_circ_empty(xmit)) | ||
345 | serial8250_stop_tx(&up->port); | ||
346 | } | ||
347 | |||
348 | static void check_modem_status(struct uart_8250_port *up) | ||
349 | { | ||
350 | int status; | ||
351 | |||
352 | status = serial_in(up, UART_MSR); | ||
353 | |||
354 | if ((status & UART_MSR_ANY_DELTA) == 0) | ||
355 | return; | ||
356 | |||
357 | if (status & UART_MSR_TERI) | ||
358 | up->port.icount.rng++; | ||
359 | if (status & UART_MSR_DDSR) | ||
360 | up->port.icount.dsr++; | ||
361 | if (status & UART_MSR_DDCD) | ||
362 | uart_handle_dcd_change(&up->port, status & UART_MSR_DCD); | ||
363 | if (status & UART_MSR_DCTS) | ||
364 | uart_handle_cts_change(&up->port, status & UART_MSR_CTS); | ||
365 | |||
366 | wake_up_interruptible(&up->port.info->delta_msr_wait); | ||
367 | } | ||
368 | |||
369 | /* | ||
370 | * This handles the interrupt from one port. | ||
371 | */ | ||
372 | static inline void | ||
373 | serial8250_handle_port(struct uart_8250_port *up, struct pt_regs *regs) | ||
374 | { | ||
375 | unsigned int status = serial_inp(up, UART_LSR); | ||
376 | |||
377 | DEBUG_INTR("status = %x...", status); | ||
378 | |||
379 | if (status & UART_LSR_DR) | ||
380 | receive_chars(up, &status, regs); | ||
381 | check_modem_status(up); | ||
382 | if (status & UART_LSR_THRE) | ||
383 | transmit_chars(up); | ||
384 | } | ||
385 | |||
386 | /* | ||
387 | * This is the serial driver's interrupt routine. | ||
388 | * | ||
389 | * Arjan thinks the old way was overly complex, so it got simplified. | ||
390 | * Alan disagrees, saying that need the complexity to handle the weird | ||
391 | * nature of ISA shared interrupts. (This is a special exception.) | ||
392 | * | ||
393 | * In order to handle ISA shared interrupts properly, we need to check | ||
394 | * that all ports have been serviced, and therefore the ISA interrupt | ||
395 | * line has been de-asserted. | ||
396 | * | ||
397 | * This means we need to loop through all ports. checking that they | ||
398 | * don't have an interrupt pending. | ||
399 | */ | ||
400 | static irqreturn_t serial8250_interrupt(int irq, void *dev_id, struct pt_regs *regs) | ||
401 | { | ||
402 | struct irq_info *i = dev_id; | ||
403 | struct list_head *l, *end = NULL; | ||
404 | int pass_counter = 0; | ||
405 | |||
406 | DEBUG_INTR("serial8250_interrupt(%d)...", irq); | ||
407 | |||
408 | spin_lock(&i->lock); | ||
409 | |||
410 | l = i->head; | ||
411 | do { | ||
412 | struct uart_8250_port *up; | ||
413 | unsigned int iir; | ||
414 | |||
415 | up = list_entry(l, struct uart_8250_port, list); | ||
416 | |||
417 | iir = serial_in(up, UART_IIR); | ||
418 | if (!(iir & UART_IIR_NO_INT)) { | ||
419 | spin_lock(&up->port.lock); | ||
420 | serial8250_handle_port(up, regs); | ||
421 | spin_unlock(&up->port.lock); | ||
422 | |||
423 | end = NULL; | ||
424 | } else if (end == NULL) | ||
425 | end = l; | ||
426 | |||
427 | l = l->next; | ||
428 | |||
429 | if (l == i->head && pass_counter++ > PASS_LIMIT) { | ||
430 | /* If we hit this, we're dead. */ | ||
431 | printk(KERN_ERR "serial8250: too much work for " | ||
432 | "irq%d\n", irq); | ||
433 | break; | ||
434 | } | ||
435 | } while (l != end); | ||
436 | |||
437 | spin_unlock(&i->lock); | ||
438 | |||
439 | DEBUG_INTR("end.\n"); | ||
440 | /* FIXME! Was it really ours? */ | ||
441 | return IRQ_HANDLED; | ||
442 | } | ||
443 | |||
444 | /* | ||
445 | * To support ISA shared interrupts, we need to have one interrupt | ||
446 | * handler that ensures that the IRQ line has been deasserted | ||
447 | * before returning. Failing to do this will result in the IRQ | ||
448 | * line being stuck active, and, since ISA irqs are edge triggered, | ||
449 | * no more IRQs will be seen. | ||
450 | */ | ||
451 | static void serial_do_unlink(struct irq_info *i, struct uart_8250_port *up) | ||
452 | { | ||
453 | spin_lock_irq(&i->lock); | ||
454 | |||
455 | if (!list_empty(i->head)) { | ||
456 | if (i->head == &up->list) | ||
457 | i->head = i->head->next; | ||
458 | list_del(&up->list); | ||
459 | } else { | ||
460 | BUG_ON(i->head != &up->list); | ||
461 | i->head = NULL; | ||
462 | } | ||
463 | |||
464 | spin_unlock_irq(&i->lock); | ||
465 | } | ||
466 | |||
467 | static int serial_link_irq_chain(struct uart_8250_port *up) | ||
468 | { | ||
469 | struct irq_info *i = irq_lists + up->port.irq; | ||
470 | int ret, irq_flags = up->port.flags & UPF_SHARE_IRQ ? SA_SHIRQ : 0; | ||
471 | |||
472 | spin_lock_irq(&i->lock); | ||
473 | |||
474 | if (i->head) { | ||
475 | list_add(&up->list, i->head); | ||
476 | spin_unlock_irq(&i->lock); | ||
477 | |||
478 | ret = 0; | ||
479 | } else { | ||
480 | INIT_LIST_HEAD(&up->list); | ||
481 | i->head = &up->list; | ||
482 | spin_unlock_irq(&i->lock); | ||
483 | |||
484 | ret = request_irq(up->port.irq, serial8250_interrupt, | ||
485 | irq_flags, "serial", i); | ||
486 | if (ret < 0) | ||
487 | serial_do_unlink(i, up); | ||
488 | } | ||
489 | |||
490 | return ret; | ||
491 | } | ||
492 | |||
493 | static void serial_unlink_irq_chain(struct uart_8250_port *up) | ||
494 | { | ||
495 | struct irq_info *i = irq_lists + up->port.irq; | ||
496 | |||
497 | BUG_ON(i->head == NULL); | ||
498 | |||
499 | if (list_empty(i->head)) | ||
500 | free_irq(up->port.irq, i); | ||
501 | |||
502 | serial_do_unlink(i, up); | ||
503 | } | ||
504 | |||
505 | /* | ||
506 | * This function is used to handle ports that do not have an | ||
507 | * interrupt. This doesn't work very well for 16450's, but gives | ||
508 | * barely passable results for a 16550A. (Although at the expense | ||
509 | * of much CPU overhead). | ||
510 | */ | ||
511 | static void serial8250_timeout(unsigned long data) | ||
512 | { | ||
513 | struct uart_8250_port *up = (struct uart_8250_port *)data; | ||
514 | unsigned int timeout; | ||
515 | unsigned int iir; | ||
516 | |||
517 | iir = serial_in(up, UART_IIR); | ||
518 | if (!(iir & UART_IIR_NO_INT)) { | ||
519 | spin_lock(&up->port.lock); | ||
520 | serial8250_handle_port(up, NULL); | ||
521 | spin_unlock(&up->port.lock); | ||
522 | } | ||
523 | |||
524 | timeout = up->port.timeout; | ||
525 | timeout = timeout > 6 ? (timeout / 2 - 2) : 1; | ||
526 | mod_timer(&up->timer, jiffies + timeout); | ||
527 | } | ||
528 | |||
529 | static unsigned int serial8250_tx_empty(struct uart_port *port) | ||
530 | { | ||
531 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
532 | unsigned long flags; | ||
533 | unsigned int ret; | ||
534 | |||
535 | spin_lock_irqsave(&up->port.lock, flags); | ||
536 | ret = serial_in(up, UART_LSR) & UART_LSR_TEMT ? TIOCSER_TEMT : 0; | ||
537 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
538 | |||
539 | return ret; | ||
540 | } | ||
541 | |||
542 | static unsigned int serial8250_get_mctrl(struct uart_port *port) | ||
543 | { | ||
544 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
545 | unsigned char status; | ||
546 | unsigned int ret; | ||
547 | |||
548 | status = serial_in(up, UART_MSR); | ||
549 | |||
550 | ret = 0; | ||
551 | if (status & UART_MSR_DCD) | ||
552 | ret |= TIOCM_CAR; | ||
553 | if (status & UART_MSR_RI) | ||
554 | ret |= TIOCM_RNG; | ||
555 | if (status & UART_MSR_DSR) | ||
556 | ret |= TIOCM_DSR; | ||
557 | if (status & UART_MSR_CTS) | ||
558 | ret |= TIOCM_CTS; | ||
559 | return ret; | ||
560 | } | ||
561 | |||
562 | static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl) | ||
563 | { | ||
564 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
565 | unsigned char mcr = 0; | ||
566 | |||
567 | if (mctrl & TIOCM_RTS) | ||
568 | mcr |= UART_MCR_RTS; | ||
569 | if (mctrl & TIOCM_DTR) | ||
570 | mcr |= UART_MCR_DTR; | ||
571 | if (mctrl & TIOCM_OUT1) | ||
572 | mcr |= UART_MCR_OUT1; | ||
573 | if (mctrl & TIOCM_OUT2) | ||
574 | mcr |= UART_MCR_OUT2; | ||
575 | if (mctrl & TIOCM_LOOP) | ||
576 | mcr |= UART_MCR_LOOP; | ||
577 | |||
578 | mcr = (mcr & up->mcr_mask) | up->mcr_force; | ||
579 | |||
580 | serial_out(up, UART_MCR, mcr); | ||
581 | } | ||
582 | |||
583 | static void serial8250_break_ctl(struct uart_port *port, int break_state) | ||
584 | { | ||
585 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
586 | unsigned long flags; | ||
587 | |||
588 | spin_lock_irqsave(&up->port.lock, flags); | ||
589 | if (break_state == -1) | ||
590 | up->lcr |= UART_LCR_SBC; | ||
591 | else | ||
592 | up->lcr &= ~UART_LCR_SBC; | ||
593 | serial_out(up, UART_LCR, up->lcr); | ||
594 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
595 | } | ||
596 | |||
597 | static int serial8250_startup(struct uart_port *port) | ||
598 | { | ||
599 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
600 | unsigned long flags; | ||
601 | int retval; | ||
602 | |||
603 | /* | ||
604 | * Clear the FIFO buffers and disable them. | ||
605 | * (they will be reeanbled in set_termios()) | ||
606 | */ | ||
607 | if (uart_config[up->port.type].flags & UART_CLEAR_FIFO) { | ||
608 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO); | ||
609 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | | ||
610 | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT); | ||
611 | serial_outp(up, UART_FCR, 0); | ||
612 | } | ||
613 | |||
614 | /* | ||
615 | * Clear the interrupt registers. | ||
616 | */ | ||
617 | (void) serial_inp(up, UART_LSR); | ||
618 | (void) serial_inp(up, UART_RX); | ||
619 | (void) serial_inp(up, UART_IIR); | ||
620 | (void) serial_inp(up, UART_MSR); | ||
621 | |||
622 | /* | ||
623 | * At this point, there's no way the LSR could still be 0xff; | ||
624 | * if it is, then bail out, because there's likely no UART | ||
625 | * here. | ||
626 | */ | ||
627 | if (!(up->port.flags & UPF_BUGGY_UART) && | ||
628 | (serial_inp(up, UART_LSR) == 0xff)) { | ||
629 | printk("ttyS%d: LSR safety check engaged!\n", up->port.line); | ||
630 | return -ENODEV; | ||
631 | } | ||
632 | |||
633 | retval = serial_link_irq_chain(up); | ||
634 | if (retval) | ||
635 | return retval; | ||
636 | |||
637 | /* | ||
638 | * Now, initialize the UART | ||
639 | */ | ||
640 | serial_outp(up, UART_LCR, UART_LCR_WLEN8); | ||
641 | |||
642 | spin_lock_irqsave(&up->port.lock, flags); | ||
643 | if (up->port.flags & UPF_FOURPORT) { | ||
644 | if (!is_real_interrupt(up->port.irq)) | ||
645 | up->port.mctrl |= TIOCM_OUT1; | ||
646 | } else | ||
647 | /* | ||
648 | * Most PC uarts need OUT2 raised to enable interrupts. | ||
649 | */ | ||
650 | if (is_real_interrupt(up->port.irq)) | ||
651 | up->port.mctrl |= TIOCM_OUT2; | ||
652 | |||
653 | serial8250_set_mctrl(&up->port, up->port.mctrl); | ||
654 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
655 | |||
656 | /* | ||
657 | * Finally, enable interrupts. Note: Modem status interrupts | ||
658 | * are set via set_termios(), which will be occurring imminently | ||
659 | * anyway, so we don't enable them here. | ||
660 | */ | ||
661 | up->ier = UART_IER_RLSI | UART_IER_RDI; | ||
662 | serial_outp(up, UART_IER, up->ier); | ||
663 | |||
664 | if (up->port.flags & UPF_FOURPORT) { | ||
665 | unsigned int icp; | ||
666 | /* | ||
667 | * Enable interrupts on the AST Fourport board | ||
668 | */ | ||
669 | icp = (up->port.iobase & 0xfe0) | 0x01f; | ||
670 | outb_p(0x80, icp); | ||
671 | (void) inb_p(icp); | ||
672 | } | ||
673 | |||
674 | /* | ||
675 | * And clear the interrupt registers again for luck. | ||
676 | */ | ||
677 | (void) serial_inp(up, UART_LSR); | ||
678 | (void) serial_inp(up, UART_RX); | ||
679 | (void) serial_inp(up, UART_IIR); | ||
680 | (void) serial_inp(up, UART_MSR); | ||
681 | |||
682 | return 0; | ||
683 | } | ||
684 | |||
685 | static void serial8250_shutdown(struct uart_port *port) | ||
686 | { | ||
687 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
688 | unsigned long flags; | ||
689 | |||
690 | /* | ||
691 | * Disable interrupts from this port | ||
692 | */ | ||
693 | up->ier = 0; | ||
694 | serial_outp(up, UART_IER, 0); | ||
695 | |||
696 | spin_lock_irqsave(&up->port.lock, flags); | ||
697 | if (up->port.flags & UPF_FOURPORT) { | ||
698 | /* reset interrupts on the AST Fourport board */ | ||
699 | inb((up->port.iobase & 0xfe0) | 0x1f); | ||
700 | up->port.mctrl |= TIOCM_OUT1; | ||
701 | } else | ||
702 | up->port.mctrl &= ~TIOCM_OUT2; | ||
703 | |||
704 | serial8250_set_mctrl(&up->port, up->port.mctrl); | ||
705 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
706 | |||
707 | /* | ||
708 | * Disable break condition and FIFOs | ||
709 | */ | ||
710 | serial_out(up, UART_LCR, serial_inp(up, UART_LCR) & ~UART_LCR_SBC); | ||
711 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO | | ||
712 | UART_FCR_CLEAR_RCVR | | ||
713 | UART_FCR_CLEAR_XMIT); | ||
714 | serial_outp(up, UART_FCR, 0); | ||
715 | |||
716 | /* | ||
717 | * Read data port to reset things, and then unlink from | ||
718 | * the IRQ chain. | ||
719 | */ | ||
720 | (void) serial_in(up, UART_RX); | ||
721 | |||
722 | if (!is_real_interrupt(up->port.irq)) | ||
723 | del_timer_sync(&up->timer); | ||
724 | else | ||
725 | serial_unlink_irq_chain(up); | ||
726 | } | ||
727 | |||
728 | static unsigned int serial8250_get_divisor(struct uart_port *port, unsigned int baud) | ||
729 | { | ||
730 | unsigned int quot; | ||
731 | |||
732 | /* | ||
733 | * Handle magic divisors for baud rates above baud_base on | ||
734 | * SMSC SuperIO chips. | ||
735 | */ | ||
736 | if ((port->flags & UPF_MAGIC_MULTIPLIER) && | ||
737 | baud == (port->uartclk/4)) | ||
738 | quot = 0x8001; | ||
739 | else if ((port->flags & UPF_MAGIC_MULTIPLIER) && | ||
740 | baud == (port->uartclk/8)) | ||
741 | quot = 0x8002; | ||
742 | else | ||
743 | quot = uart_get_divisor(port, baud); | ||
744 | |||
745 | return quot; | ||
746 | } | ||
747 | |||
748 | static void | ||
749 | serial8250_set_termios(struct uart_port *port, struct termios *termios, | ||
750 | struct termios *old) | ||
751 | { | ||
752 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
753 | unsigned char cval, fcr = 0; | ||
754 | unsigned long flags; | ||
755 | unsigned int baud, quot; | ||
756 | |||
757 | switch (termios->c_cflag & CSIZE) { | ||
758 | case CS5: | ||
759 | cval = UART_LCR_WLEN5; | ||
760 | break; | ||
761 | case CS6: | ||
762 | cval = UART_LCR_WLEN6; | ||
763 | break; | ||
764 | case CS7: | ||
765 | cval = UART_LCR_WLEN7; | ||
766 | break; | ||
767 | default: | ||
768 | case CS8: | ||
769 | cval = UART_LCR_WLEN8; | ||
770 | break; | ||
771 | } | ||
772 | |||
773 | if (termios->c_cflag & CSTOPB) | ||
774 | cval |= UART_LCR_STOP; | ||
775 | if (termios->c_cflag & PARENB) | ||
776 | cval |= UART_LCR_PARITY; | ||
777 | if (!(termios->c_cflag & PARODD)) | ||
778 | cval |= UART_LCR_EPAR; | ||
779 | #ifdef CMSPAR | ||
780 | if (termios->c_cflag & CMSPAR) | ||
781 | cval |= UART_LCR_SPAR; | ||
782 | #endif | ||
783 | |||
784 | /* | ||
785 | * Ask the core to calculate the divisor for us. | ||
786 | */ | ||
787 | baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk/16); | ||
788 | quot = serial8250_get_divisor(port, baud); | ||
789 | quot = 0x35; /* FIXME */ | ||
790 | |||
791 | /* | ||
792 | * Work around a bug in the Oxford Semiconductor 952 rev B | ||
793 | * chip which causes it to seriously miscalculate baud rates | ||
794 | * when DLL is 0. | ||
795 | */ | ||
796 | if ((quot & 0xff) == 0 && up->port.type == PORT_16C950 && | ||
797 | up->rev == 0x5201) | ||
798 | quot ++; | ||
799 | |||
800 | if (uart_config[up->port.type].flags & UART_USE_FIFO) { | ||
801 | if (baud < 2400) | ||
802 | fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIGGER_1; | ||
803 | else | ||
804 | fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIGGER_8; | ||
805 | } | ||
806 | |||
807 | /* | ||
808 | * Ok, we're now changing the port state. Do it with | ||
809 | * interrupts disabled. | ||
810 | */ | ||
811 | spin_lock_irqsave(&up->port.lock, flags); | ||
812 | |||
813 | /* | ||
814 | * Update the per-port timeout. | ||
815 | */ | ||
816 | uart_update_timeout(port, termios->c_cflag, baud); | ||
817 | |||
818 | up->port.read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR; | ||
819 | if (termios->c_iflag & INPCK) | ||
820 | up->port.read_status_mask |= UART_LSR_FE | UART_LSR_PE; | ||
821 | if (termios->c_iflag & (BRKINT | PARMRK)) | ||
822 | up->port.read_status_mask |= UART_LSR_BI; | ||
823 | |||
824 | /* | ||
825 | * Characteres to ignore | ||
826 | */ | ||
827 | up->port.ignore_status_mask = 0; | ||
828 | if (termios->c_iflag & IGNPAR) | ||
829 | up->port.ignore_status_mask |= UART_LSR_PE | UART_LSR_FE; | ||
830 | if (termios->c_iflag & IGNBRK) { | ||
831 | up->port.ignore_status_mask |= UART_LSR_BI; | ||
832 | /* | ||
833 | * If we're ignoring parity and break indicators, | ||
834 | * ignore overruns too (for real raw support). | ||
835 | */ | ||
836 | if (termios->c_iflag & IGNPAR) | ||
837 | up->port.ignore_status_mask |= UART_LSR_OE; | ||
838 | } | ||
839 | |||
840 | /* | ||
841 | * ignore all characters if CREAD is not set | ||
842 | */ | ||
843 | if ((termios->c_cflag & CREAD) == 0) | ||
844 | up->port.ignore_status_mask |= UART_LSR_DR; | ||
845 | |||
846 | /* | ||
847 | * CTS flow control flag and modem status interrupts | ||
848 | */ | ||
849 | up->ier &= ~UART_IER_MSI; | ||
850 | if (UART_ENABLE_MS(&up->port, termios->c_cflag)) | ||
851 | up->ier |= UART_IER_MSI; | ||
852 | |||
853 | serial_out(up, UART_IER, up->ier); | ||
854 | serial_outp(up, 0x28, quot & 0xffff); | ||
855 | up->lcr = cval; /* Save LCR */ | ||
856 | if (up->port.type != PORT_16750) { | ||
857 | if (fcr & UART_FCR_ENABLE_FIFO) { | ||
858 | /* emulated UARTs (Lucent Venus 167x) need two steps */ | ||
859 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO); | ||
860 | } | ||
861 | serial_outp(up, UART_FCR, fcr); /* set fcr */ | ||
862 | } | ||
863 | spin_unlock_irqrestore(&up->port.lock, flags); | ||
864 | } | ||
865 | |||
866 | static void | ||
867 | serial8250_pm(struct uart_port *port, unsigned int state, | ||
868 | unsigned int oldstate) | ||
869 | { | ||
870 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
871 | if (state) { | ||
872 | /* sleep */ | ||
873 | if (up->pm) | ||
874 | up->pm(port, state, oldstate); | ||
875 | } else { | ||
876 | /* wake */ | ||
877 | if (up->pm) | ||
878 | up->pm(port, state, oldstate); | ||
879 | } | ||
880 | } | ||
881 | |||
882 | /* | ||
883 | * Resource handling. This is complicated by the fact that resources | ||
884 | * depend on the port type. Maybe we should be claiming the standard | ||
885 | * 8250 ports, and then trying to get other resources as necessary? | ||
886 | */ | ||
887 | static int | ||
888 | serial8250_request_std_resource(struct uart_8250_port *up, struct resource **res) | ||
889 | { | ||
890 | unsigned int size = 8 << up->port.regshift; | ||
891 | int ret = 0; | ||
892 | |||
893 | switch (up->port.iotype) { | ||
894 | case UPIO_MEM: | ||
895 | if (up->port.mapbase) { | ||
896 | *res = request_mem_region(up->port.mapbase, size, "serial"); | ||
897 | if (!*res) | ||
898 | ret = -EBUSY; | ||
899 | } | ||
900 | break; | ||
901 | |||
902 | case UPIO_HUB6: | ||
903 | case UPIO_PORT: | ||
904 | *res = request_region(up->port.iobase, size, "serial"); | ||
905 | if (!*res) | ||
906 | ret = -EBUSY; | ||
907 | break; | ||
908 | } | ||
909 | return ret; | ||
910 | } | ||
911 | |||
912 | |||
913 | static void serial8250_release_port(struct uart_port *port) | ||
914 | { | ||
915 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
916 | unsigned long start, offset = 0, size = 0; | ||
917 | |||
918 | size <<= up->port.regshift; | ||
919 | |||
920 | switch (up->port.iotype) { | ||
921 | case UPIO_MEM: | ||
922 | if (up->port.mapbase) { | ||
923 | /* | ||
924 | * Unmap the area. | ||
925 | */ | ||
926 | iounmap(up->port.membase); | ||
927 | up->port.membase = NULL; | ||
928 | |||
929 | start = up->port.mapbase; | ||
930 | |||
931 | if (size) | ||
932 | release_mem_region(start + offset, size); | ||
933 | release_mem_region(start, 8 << up->port.regshift); | ||
934 | } | ||
935 | break; | ||
936 | |||
937 | case UPIO_HUB6: | ||
938 | case UPIO_PORT: | ||
939 | start = up->port.iobase; | ||
940 | |||
941 | if (size) | ||
942 | release_region(start + offset, size); | ||
943 | release_region(start + offset, 8 << up->port.regshift); | ||
944 | break; | ||
945 | |||
946 | default: | ||
947 | break; | ||
948 | } | ||
949 | } | ||
950 | |||
951 | static int serial8250_request_port(struct uart_port *port) | ||
952 | { | ||
953 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
954 | struct resource *res = NULL, *res_rsa = NULL; | ||
955 | int ret = 0; | ||
956 | |||
957 | ret = serial8250_request_std_resource(up, &res); | ||
958 | |||
959 | /* | ||
960 | * If we have a mapbase, then request that as well. | ||
961 | */ | ||
962 | if (ret == 0 && up->port.flags & UPF_IOREMAP) { | ||
963 | int size = res->end - res->start + 1; | ||
964 | |||
965 | up->port.membase = ioremap(up->port.mapbase, size); | ||
966 | if (!up->port.membase) | ||
967 | ret = -ENOMEM; | ||
968 | } | ||
969 | |||
970 | if (ret < 0) { | ||
971 | if (res_rsa) | ||
972 | release_resource(res_rsa); | ||
973 | if (res) | ||
974 | release_resource(res); | ||
975 | } | ||
976 | return ret; | ||
977 | } | ||
978 | |||
979 | static void serial8250_config_port(struct uart_port *port, int flags) | ||
980 | { | ||
981 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
982 | struct resource *res_std = NULL, *res_rsa = NULL; | ||
983 | int probeflags = PROBE_ANY; | ||
984 | |||
985 | probeflags &= ~PROBE_RSA; | ||
986 | |||
987 | if (flags & UART_CONFIG_TYPE) | ||
988 | autoconfig(up, probeflags); | ||
989 | |||
990 | /* | ||
991 | * If the port wasn't an RSA port, release the resource. | ||
992 | */ | ||
993 | if (up->port.type != PORT_RSA && res_rsa) | ||
994 | release_resource(res_rsa); | ||
995 | |||
996 | if (up->port.type == PORT_UNKNOWN && res_std) | ||
997 | release_resource(res_std); | ||
998 | } | ||
999 | |||
1000 | static int | ||
1001 | serial8250_verify_port(struct uart_port *port, struct serial_struct *ser) | ||
1002 | { | ||
1003 | if (ser->irq >= NR_IRQS || ser->irq < 0 || | ||
1004 | ser->baud_base < 9600 || ser->type < PORT_UNKNOWN || | ||
1005 | ser->type > PORT_MAX_8250 || ser->type == PORT_CIRRUS || | ||
1006 | ser->type == PORT_STARTECH) | ||
1007 | return -EINVAL; | ||
1008 | return 0; | ||
1009 | } | ||
1010 | |||
1011 | static const char * | ||
1012 | serial8250_type(struct uart_port *port) | ||
1013 | { | ||
1014 | int type = port->type; | ||
1015 | |||
1016 | if (type >= ARRAY_SIZE(uart_config)) | ||
1017 | type = 0; | ||
1018 | return uart_config[type].name; | ||
1019 | } | ||
1020 | |||
1021 | static struct uart_ops serial8250_pops = { | ||
1022 | .tx_empty = serial8250_tx_empty, | ||
1023 | .set_mctrl = serial8250_set_mctrl, | ||
1024 | .get_mctrl = serial8250_get_mctrl, | ||
1025 | .stop_tx = serial8250_stop_tx, | ||
1026 | .start_tx = serial8250_start_tx, | ||
1027 | .stop_rx = serial8250_stop_rx, | ||
1028 | .enable_ms = serial8250_enable_ms, | ||
1029 | .break_ctl = serial8250_break_ctl, | ||
1030 | .startup = serial8250_startup, | ||
1031 | .shutdown = serial8250_shutdown, | ||
1032 | .set_termios = serial8250_set_termios, | ||
1033 | .pm = serial8250_pm, | ||
1034 | .type = serial8250_type, | ||
1035 | .release_port = serial8250_release_port, | ||
1036 | .request_port = serial8250_request_port, | ||
1037 | .config_port = serial8250_config_port, | ||
1038 | .verify_port = serial8250_verify_port, | ||
1039 | }; | ||
1040 | |||
1041 | static struct uart_8250_port serial8250_ports[UART_NR]; | ||
1042 | |||
1043 | static void __init serial8250_isa_init_ports(void) | ||
1044 | { | ||
1045 | struct uart_8250_port *up; | ||
1046 | static int first = 1; | ||
1047 | int i; | ||
1048 | |||
1049 | if (!first) | ||
1050 | return; | ||
1051 | first = 0; | ||
1052 | |||
1053 | for (i = 0, up = serial8250_ports; i < ARRAY_SIZE(old_serial_port); | ||
1054 | i++, up++) { | ||
1055 | up->port.iobase = old_serial_port[i].port; | ||
1056 | up->port.irq = old_serial_port[i].irq; | ||
1057 | up->port.uartclk = get_au1x00_uart_baud_base(); | ||
1058 | up->port.flags = old_serial_port[i].flags; | ||
1059 | up->port.hub6 = old_serial_port[i].hub6; | ||
1060 | up->port.membase = old_serial_port[i].iomem_base; | ||
1061 | up->port.iotype = old_serial_port[i].io_type; | ||
1062 | up->port.regshift = old_serial_port[i].iomem_reg_shift; | ||
1063 | up->port.ops = &serial8250_pops; | ||
1064 | } | ||
1065 | } | ||
1066 | |||
1067 | static void __init serial8250_register_ports(struct uart_driver *drv) | ||
1068 | { | ||
1069 | int i; | ||
1070 | |||
1071 | serial8250_isa_init_ports(); | ||
1072 | |||
1073 | for (i = 0; i < UART_NR; i++) { | ||
1074 | struct uart_8250_port *up = &serial8250_ports[i]; | ||
1075 | |||
1076 | up->port.line = i; | ||
1077 | up->port.ops = &serial8250_pops; | ||
1078 | init_timer(&up->timer); | ||
1079 | up->timer.function = serial8250_timeout; | ||
1080 | |||
1081 | /* | ||
1082 | * ALPHA_KLUDGE_MCR needs to be killed. | ||
1083 | */ | ||
1084 | up->mcr_mask = ~ALPHA_KLUDGE_MCR; | ||
1085 | up->mcr_force = ALPHA_KLUDGE_MCR; | ||
1086 | |||
1087 | uart_add_one_port(drv, &up->port); | ||
1088 | } | ||
1089 | } | ||
1090 | |||
1091 | #ifdef CONFIG_SERIAL_AU1X00_CONSOLE | ||
1092 | |||
1093 | #define BOTH_EMPTY (UART_LSR_TEMT | UART_LSR_THRE) | ||
1094 | |||
1095 | /* | ||
1096 | * Wait for transmitter & holding register to empty | ||
1097 | */ | ||
1098 | static inline void wait_for_xmitr(struct uart_8250_port *up) | ||
1099 | { | ||
1100 | unsigned int status, tmout = 10000; | ||
1101 | |||
1102 | /* Wait up to 10ms for the character(s) to be sent. */ | ||
1103 | do { | ||
1104 | status = serial_in(up, UART_LSR); | ||
1105 | |||
1106 | if (status & UART_LSR_BI) | ||
1107 | up->lsr_break_flag = UART_LSR_BI; | ||
1108 | |||
1109 | if (--tmout == 0) | ||
1110 | break; | ||
1111 | udelay(1); | ||
1112 | } while ((status & BOTH_EMPTY) != BOTH_EMPTY); | ||
1113 | |||
1114 | /* Wait up to 1s for flow control if necessary */ | ||
1115 | if (up->port.flags & UPF_CONS_FLOW) { | ||
1116 | tmout = 1000000; | ||
1117 | while (--tmout && | ||
1118 | ((serial_in(up, UART_MSR) & UART_MSR_CTS) == 0)) | ||
1119 | udelay(1); | ||
1120 | } | ||
1121 | } | ||
1122 | |||
1123 | static void au1x00_console_putchar(struct uart_port *port, int ch) | ||
1124 | { | ||
1125 | struct uart_8250_port *up = (struct uart_8250_port *)port; | ||
1126 | |||
1127 | wait_for_xmitr(up); | ||
1128 | serial_out(up, UART_TX, ch); | ||
1129 | } | ||
1130 | |||
1131 | /* | ||
1132 | * Print a string to the serial port trying not to disturb | ||
1133 | * any possible real use of the port... | ||
1134 | * | ||
1135 | * The console_lock must be held when we get here. | ||
1136 | */ | ||
1137 | static void | ||
1138 | serial8250_console_write(struct console *co, const char *s, unsigned int count) | ||
1139 | { | ||
1140 | struct uart_8250_port *up = &serial8250_ports[co->index]; | ||
1141 | unsigned int ier; | ||
1142 | |||
1143 | /* | ||
1144 | * First save the UER then disable the interrupts | ||
1145 | */ | ||
1146 | ier = serial_in(up, UART_IER); | ||
1147 | serial_out(up, UART_IER, 0); | ||
1148 | |||
1149 | uart_console_write(&up->port, s, count, au1x00_console_putchar); | ||
1150 | |||
1151 | /* | ||
1152 | * Finally, wait for transmitter to become empty | ||
1153 | * and restore the IER | ||
1154 | */ | ||
1155 | wait_for_xmitr(up); | ||
1156 | serial_out(up, UART_IER, ier); | ||
1157 | } | ||
1158 | |||
1159 | static int __init serial8250_console_setup(struct console *co, char *options) | ||
1160 | { | ||
1161 | struct uart_port *port; | ||
1162 | int baud = 9600; | ||
1163 | int bits = 8; | ||
1164 | int parity = 'n'; | ||
1165 | int flow = 'n'; | ||
1166 | |||
1167 | /* | ||
1168 | * Check whether an invalid uart number has been specified, and | ||
1169 | * if so, search for the first available port that does have | ||
1170 | * console support. | ||
1171 | */ | ||
1172 | if (co->index >= UART_NR) | ||
1173 | co->index = 0; | ||
1174 | port = &serial8250_ports[co->index].port; | ||
1175 | |||
1176 | /* | ||
1177 | * Temporary fix. | ||
1178 | */ | ||
1179 | spin_lock_init(&port->lock); | ||
1180 | |||
1181 | if (options) | ||
1182 | uart_parse_options(options, &baud, &parity, &bits, &flow); | ||
1183 | |||
1184 | return uart_set_options(port, co, baud, parity, bits, flow); | ||
1185 | } | ||
1186 | |||
1187 | extern struct uart_driver serial8250_reg; | ||
1188 | static struct console serial8250_console = { | ||
1189 | .name = "ttyS", | ||
1190 | .write = serial8250_console_write, | ||
1191 | .device = uart_console_device, | ||
1192 | .setup = serial8250_console_setup, | ||
1193 | .flags = CON_PRINTBUFFER, | ||
1194 | .index = -1, | ||
1195 | .data = &serial8250_reg, | ||
1196 | }; | ||
1197 | |||
1198 | static int __init serial8250_console_init(void) | ||
1199 | { | ||
1200 | serial8250_isa_init_ports(); | ||
1201 | register_console(&serial8250_console); | ||
1202 | return 0; | ||
1203 | } | ||
1204 | console_initcall(serial8250_console_init); | ||
1205 | |||
1206 | #define SERIAL8250_CONSOLE &serial8250_console | ||
1207 | #else | ||
1208 | #define SERIAL8250_CONSOLE NULL | ||
1209 | #endif | ||
1210 | |||
1211 | static struct uart_driver serial8250_reg = { | ||
1212 | .owner = THIS_MODULE, | ||
1213 | .driver_name = "serial", | ||
1214 | .devfs_name = "tts/", | ||
1215 | .dev_name = "ttyS", | ||
1216 | .major = TTY_MAJOR, | ||
1217 | .minor = 64, | ||
1218 | .nr = UART_NR, | ||
1219 | .cons = SERIAL8250_CONSOLE, | ||
1220 | }; | ||
1221 | |||
1222 | int __init early_serial_setup(struct uart_port *port) | ||
1223 | { | ||
1224 | serial8250_isa_init_ports(); | ||
1225 | serial8250_ports[port->line].port = *port; | ||
1226 | serial8250_ports[port->line].port.ops = &serial8250_pops; | ||
1227 | return 0; | ||
1228 | } | ||
1229 | |||
1230 | /** | ||
1231 | * serial8250_suspend_port - suspend one serial port | ||
1232 | * @line: serial line number | ||
1233 | * @level: the level of port suspension, as per uart_suspend_port | ||
1234 | * | ||
1235 | * Suspend one serial port. | ||
1236 | */ | ||
1237 | void serial8250_suspend_port(int line) | ||
1238 | { | ||
1239 | uart_suspend_port(&serial8250_reg, &serial8250_ports[line].port); | ||
1240 | } | ||
1241 | |||
1242 | /** | ||
1243 | * serial8250_resume_port - resume one serial port | ||
1244 | * @line: serial line number | ||
1245 | * @level: the level of port resumption, as per uart_resume_port | ||
1246 | * | ||
1247 | * Resume one serial port. | ||
1248 | */ | ||
1249 | void serial8250_resume_port(int line) | ||
1250 | { | ||
1251 | uart_resume_port(&serial8250_reg, &serial8250_ports[line].port); | ||
1252 | } | ||
1253 | |||
1254 | static int __init serial8250_init(void) | ||
1255 | { | ||
1256 | int ret, i; | ||
1257 | |||
1258 | printk(KERN_INFO "Serial: Au1x00 driver\n"); | ||
1259 | |||
1260 | for (i = 0; i < NR_IRQS; i++) | ||
1261 | spin_lock_init(&irq_lists[i].lock); | ||
1262 | |||
1263 | ret = uart_register_driver(&serial8250_reg); | ||
1264 | if (ret >= 0) | ||
1265 | serial8250_register_ports(&serial8250_reg); | ||
1266 | |||
1267 | return ret; | ||
1268 | } | ||
1269 | |||
1270 | static void __exit serial8250_exit(void) | ||
1271 | { | ||
1272 | int i; | ||
1273 | |||
1274 | for (i = 0; i < UART_NR; i++) | ||
1275 | uart_remove_one_port(&serial8250_reg, &serial8250_ports[i].port); | ||
1276 | |||
1277 | uart_unregister_driver(&serial8250_reg); | ||
1278 | } | ||
1279 | |||
1280 | module_init(serial8250_init); | ||
1281 | module_exit(serial8250_exit); | ||
1282 | |||
1283 | EXPORT_SYMBOL(serial8250_suspend_port); | ||
1284 | EXPORT_SYMBOL(serial8250_resume_port); | ||
1285 | |||
1286 | MODULE_LICENSE("GPL"); | ||
1287 | MODULE_DESCRIPTION("Au1x00 serial driver\n"); | ||
diff --git a/drivers/serial/serial_txx9.c b/drivers/serial/serial_txx9.c index b848b7d94412..3bdee64d1a99 100644 --- a/drivers/serial/serial_txx9.c +++ b/drivers/serial/serial_txx9.c | |||
@@ -483,7 +483,7 @@ static int serial_txx9_startup(struct uart_port *port) | |||
483 | 483 | ||
484 | /* | 484 | /* |
485 | * Clear the FIFO buffers and disable them. | 485 | * Clear the FIFO buffers and disable them. |
486 | * (they will be reeanbled in set_termios()) | 486 | * (they will be reenabled in set_termios()) |
487 | */ | 487 | */ |
488 | sio_set(up, TXX9_SIFCR, | 488 | sio_set(up, TXX9_SIFCR, |
489 | TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE); | 489 | TXX9_SIFCR_TFRST | TXX9_SIFCR_RFRST | TXX9_SIFCR_FRSTE); |
diff --git a/drivers/serial/sunsu.c b/drivers/serial/sunsu.c index 9fe2283d91e5..1c4396c2962d 100644 --- a/drivers/serial/sunsu.c +++ b/drivers/serial/sunsu.c | |||
@@ -641,7 +641,7 @@ static int sunsu_startup(struct uart_port *port) | |||
641 | 641 | ||
642 | /* | 642 | /* |
643 | * Clear the FIFO buffers and disable them. | 643 | * Clear the FIFO buffers and disable them. |
644 | * (they will be reeanbled in set_termios()) | 644 | * (they will be reenabled in set_termios()) |
645 | */ | 645 | */ |
646 | if (uart_config[up->port.type].flags & UART_CLEAR_FIFO) { | 646 | if (uart_config[up->port.type].flags & UART_CLEAR_FIFO) { |
647 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO); | 647 | serial_outp(up, UART_FCR, UART_FCR_ENABLE_FIFO); |
diff --git a/drivers/telephony/phonedev.c b/drivers/telephony/phonedev.c index 7a6db1c5c8c5..e166fffea86b 100644 --- a/drivers/telephony/phonedev.c +++ b/drivers/telephony/phonedev.c | |||
@@ -49,7 +49,7 @@ static int phone_open(struct inode *inode, struct file *file) | |||
49 | unsigned int minor = iminor(inode); | 49 | unsigned int minor = iminor(inode); |
50 | int err = 0; | 50 | int err = 0; |
51 | struct phone_device *p; | 51 | struct phone_device *p; |
52 | struct file_operations *old_fops, *new_fops = NULL; | 52 | const struct file_operations *old_fops, *new_fops = NULL; |
53 | 53 | ||
54 | if (minor >= PHONE_NUM_DEVICES) | 54 | if (minor >= PHONE_NUM_DEVICES) |
55 | return -ENODEV; | 55 | return -ENODEV; |
diff --git a/drivers/usb/core/file.c b/drivers/usb/core/file.c index 37b13368c814..b263a54a13c0 100644 --- a/drivers/usb/core/file.c +++ b/drivers/usb/core/file.c | |||
@@ -24,15 +24,15 @@ | |||
24 | #include "usb.h" | 24 | #include "usb.h" |
25 | 25 | ||
26 | #define MAX_USB_MINORS 256 | 26 | #define MAX_USB_MINORS 256 |
27 | static struct file_operations *usb_minors[MAX_USB_MINORS]; | 27 | static const struct file_operations *usb_minors[MAX_USB_MINORS]; |
28 | static DEFINE_SPINLOCK(minor_lock); | 28 | static DEFINE_SPINLOCK(minor_lock); |
29 | 29 | ||
30 | static int usb_open(struct inode * inode, struct file * file) | 30 | static int usb_open(struct inode * inode, struct file * file) |
31 | { | 31 | { |
32 | int minor = iminor(inode); | 32 | int minor = iminor(inode); |
33 | struct file_operations *c; | 33 | const struct file_operations *c; |
34 | int err = -ENODEV; | 34 | int err = -ENODEV; |
35 | struct file_operations *old_fops, *new_fops = NULL; | 35 | const struct file_operations *old_fops, *new_fops = NULL; |
36 | 36 | ||
37 | spin_lock (&minor_lock); | 37 | spin_lock (&minor_lock); |
38 | c = usb_minors[minor]; | 38 | c = usb_minors[minor]; |
diff --git a/drivers/usb/core/notify.c b/drivers/usb/core/notify.c index 4b55285de9a0..fe0ed54fa0ae 100644 --- a/drivers/usb/core/notify.c +++ b/drivers/usb/core/notify.c | |||
@@ -16,57 +16,7 @@ | |||
16 | #include <linux/mutex.h> | 16 | #include <linux/mutex.h> |
17 | #include "usb.h" | 17 | #include "usb.h" |
18 | 18 | ||
19 | 19 | static BLOCKING_NOTIFIER_HEAD(usb_notifier_list); | |
20 | static struct notifier_block *usb_notifier_list; | ||
21 | static DEFINE_MUTEX(usb_notifier_lock); | ||
22 | |||
23 | static void usb_notifier_chain_register(struct notifier_block **list, | ||
24 | struct notifier_block *n) | ||
25 | { | ||
26 | mutex_lock(&usb_notifier_lock); | ||
27 | while (*list) { | ||
28 | if (n->priority > (*list)->priority) | ||
29 | break; | ||
30 | list = &((*list)->next); | ||
31 | } | ||
32 | n->next = *list; | ||
33 | *list = n; | ||
34 | mutex_unlock(&usb_notifier_lock); | ||
35 | } | ||
36 | |||
37 | static void usb_notifier_chain_unregister(struct notifier_block **nl, | ||
38 | struct notifier_block *n) | ||
39 | { | ||
40 | mutex_lock(&usb_notifier_lock); | ||
41 | while ((*nl)!=NULL) { | ||
42 | if ((*nl)==n) { | ||
43 | *nl = n->next; | ||
44 | goto exit; | ||
45 | } | ||
46 | nl=&((*nl)->next); | ||
47 | } | ||
48 | exit: | ||
49 | mutex_unlock(&usb_notifier_lock); | ||
50 | } | ||
51 | |||
52 | static int usb_notifier_call_chain(struct notifier_block **n, | ||
53 | unsigned long val, void *v) | ||
54 | { | ||
55 | int ret=NOTIFY_DONE; | ||
56 | struct notifier_block *nb = *n; | ||
57 | |||
58 | mutex_lock(&usb_notifier_lock); | ||
59 | while (nb) { | ||
60 | ret = nb->notifier_call(nb,val,v); | ||
61 | if (ret&NOTIFY_STOP_MASK) { | ||
62 | goto exit; | ||
63 | } | ||
64 | nb = nb->next; | ||
65 | } | ||
66 | exit: | ||
67 | mutex_unlock(&usb_notifier_lock); | ||
68 | return ret; | ||
69 | } | ||
70 | 20 | ||
71 | /** | 21 | /** |
72 | * usb_register_notify - register a notifier callback whenever a usb change happens | 22 | * usb_register_notify - register a notifier callback whenever a usb change happens |
@@ -76,7 +26,7 @@ exit: | |||
76 | */ | 26 | */ |
77 | void usb_register_notify(struct notifier_block *nb) | 27 | void usb_register_notify(struct notifier_block *nb) |
78 | { | 28 | { |
79 | usb_notifier_chain_register(&usb_notifier_list, nb); | 29 | blocking_notifier_chain_register(&usb_notifier_list, nb); |
80 | } | 30 | } |
81 | EXPORT_SYMBOL_GPL(usb_register_notify); | 31 | EXPORT_SYMBOL_GPL(usb_register_notify); |
82 | 32 | ||
@@ -89,27 +39,28 @@ EXPORT_SYMBOL_GPL(usb_register_notify); | |||
89 | */ | 39 | */ |
90 | void usb_unregister_notify(struct notifier_block *nb) | 40 | void usb_unregister_notify(struct notifier_block *nb) |
91 | { | 41 | { |
92 | usb_notifier_chain_unregister(&usb_notifier_list, nb); | 42 | blocking_notifier_chain_unregister(&usb_notifier_list, nb); |
93 | } | 43 | } |
94 | EXPORT_SYMBOL_GPL(usb_unregister_notify); | 44 | EXPORT_SYMBOL_GPL(usb_unregister_notify); |
95 | 45 | ||
96 | 46 | ||
97 | void usb_notify_add_device(struct usb_device *udev) | 47 | void usb_notify_add_device(struct usb_device *udev) |
98 | { | 48 | { |
99 | usb_notifier_call_chain(&usb_notifier_list, USB_DEVICE_ADD, udev); | 49 | blocking_notifier_call_chain(&usb_notifier_list, USB_DEVICE_ADD, udev); |
100 | } | 50 | } |
101 | 51 | ||
102 | void usb_notify_remove_device(struct usb_device *udev) | 52 | void usb_notify_remove_device(struct usb_device *udev) |
103 | { | 53 | { |
104 | usb_notifier_call_chain(&usb_notifier_list, USB_DEVICE_REMOVE, udev); | 54 | blocking_notifier_call_chain(&usb_notifier_list, |
55 | USB_DEVICE_REMOVE, udev); | ||
105 | } | 56 | } |
106 | 57 | ||
107 | void usb_notify_add_bus(struct usb_bus *ubus) | 58 | void usb_notify_add_bus(struct usb_bus *ubus) |
108 | { | 59 | { |
109 | usb_notifier_call_chain(&usb_notifier_list, USB_BUS_ADD, ubus); | 60 | blocking_notifier_call_chain(&usb_notifier_list, USB_BUS_ADD, ubus); |
110 | } | 61 | } |
111 | 62 | ||
112 | void usb_notify_remove_bus(struct usb_bus *ubus) | 63 | void usb_notify_remove_bus(struct usb_bus *ubus) |
113 | { | 64 | { |
114 | usb_notifier_call_chain(&usb_notifier_list, USB_BUS_REMOVE, ubus); | 65 | blocking_notifier_call_chain(&usb_notifier_list, USB_BUS_REMOVE, ubus); |
115 | } | 66 | } |
diff --git a/drivers/usb/gadget/inode.c b/drivers/usb/gadget/inode.c index b44cfda76b61..3f618ce6998d 100644 --- a/drivers/usb/gadget/inode.c +++ b/drivers/usb/gadget/inode.c | |||
@@ -1581,7 +1581,7 @@ restart: | |||
1581 | 1581 | ||
1582 | static struct inode * | 1582 | static struct inode * |
1583 | gadgetfs_create_file (struct super_block *sb, char const *name, | 1583 | gadgetfs_create_file (struct super_block *sb, char const *name, |
1584 | void *data, struct file_operations *fops, | 1584 | void *data, const struct file_operations *fops, |
1585 | struct dentry **dentry_p); | 1585 | struct dentry **dentry_p); |
1586 | 1586 | ||
1587 | static int activate_ep_files (struct dev_data *dev) | 1587 | static int activate_ep_files (struct dev_data *dev) |
@@ -1955,7 +1955,7 @@ module_param (default_perm, uint, 0644); | |||
1955 | 1955 | ||
1956 | static struct inode * | 1956 | static struct inode * |
1957 | gadgetfs_make_inode (struct super_block *sb, | 1957 | gadgetfs_make_inode (struct super_block *sb, |
1958 | void *data, struct file_operations *fops, | 1958 | void *data, const struct file_operations *fops, |
1959 | int mode) | 1959 | int mode) |
1960 | { | 1960 | { |
1961 | struct inode *inode = new_inode (sb); | 1961 | struct inode *inode = new_inode (sb); |
@@ -1979,7 +1979,7 @@ gadgetfs_make_inode (struct super_block *sb, | |||
1979 | */ | 1979 | */ |
1980 | static struct inode * | 1980 | static struct inode * |
1981 | gadgetfs_create_file (struct super_block *sb, char const *name, | 1981 | gadgetfs_create_file (struct super_block *sb, char const *name, |
1982 | void *data, struct file_operations *fops, | 1982 | void *data, const struct file_operations *fops, |
1983 | struct dentry **dentry_p) | 1983 | struct dentry **dentry_p) |
1984 | { | 1984 | { |
1985 | struct dentry *dentry; | 1985 | struct dentry *dentry; |
diff --git a/drivers/usb/host/ohci-s3c2410.c b/drivers/usb/host/ohci-s3c2410.c index 372527a83593..682bf2215660 100644 --- a/drivers/usb/host/ohci-s3c2410.c +++ b/drivers/usb/host/ohci-s3c2410.c | |||
@@ -158,7 +158,7 @@ static int ohci_s3c2410_hub_control ( | |||
158 | "s3c2410_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n", | 158 | "s3c2410_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n", |
159 | hcd, typeReq, wValue, wIndex, buf, wLength); | 159 | hcd, typeReq, wValue, wIndex, buf, wLength); |
160 | 160 | ||
161 | /* if we are only an humble host without any special capabilites | 161 | /* if we are only an humble host without any special capabilities |
162 | * process the request straight away and exit */ | 162 | * process the request straight away and exit */ |
163 | 163 | ||
164 | if (info == NULL) { | 164 | if (info == NULL) { |
diff --git a/drivers/usb/net/zaurus.c b/drivers/usb/net/zaurus.c index 9c5ab251370c..f7ac9d6b9856 100644 --- a/drivers/usb/net/zaurus.c +++ b/drivers/usb/net/zaurus.c | |||
@@ -217,7 +217,7 @@ static int blan_mdlm_bind(struct usbnet *dev, struct usb_interface *intf) | |||
217 | * with devices that use it and those that don't. | 217 | * with devices that use it and those that don't. |
218 | */ | 218 | */ |
219 | if ((detail->bDetailData[1] & ~0x02) != 0x01) { | 219 | if ((detail->bDetailData[1] & ~0x02) != 0x01) { |
220 | /* bmDataCapabilites == 0 would be fine too, | 220 | /* bmDataCapabilities == 0 would be fine too, |
221 | * but framing is minidriver-coupled for now. | 221 | * but framing is minidriver-coupled for now. |
222 | */ | 222 | */ |
223 | bad_detail: | 223 | bad_detail: |
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index fdebd60a3250..22e9d696fdd2 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
@@ -70,6 +70,22 @@ config FB_MACMODES | |||
70 | depends on FB | 70 | depends on FB |
71 | default n | 71 | default n |
72 | 72 | ||
73 | config FB_FIRMWARE_EDID | ||
74 | bool "Enable firmware EDID" | ||
75 | depends on FB | ||
76 | default y | ||
77 | ---help--- | ||
78 | This enables access to the EDID transferred from the firmware. | ||
79 | On the i386, this is from the Video BIOS. Enable this if DDC/I2C | ||
80 | transfers do not work for your driver and if you are using | ||
81 | nvidiafb, i810fb or savagefb. | ||
82 | |||
83 | In general, choosing Y for this option is safe. If you | ||
84 | experience extremely long delays while booting before you get | ||
85 | something on your display, try setting this to N. Matrox cards in | ||
86 | combination with certain motherboards and monitors are known to | ||
87 | suffer from this problem. | ||
88 | |||
73 | config FB_MODE_HELPERS | 89 | config FB_MODE_HELPERS |
74 | bool "Enable Video Mode Handling Helpers" | 90 | bool "Enable Video Mode Handling Helpers" |
75 | depends on FB | 91 | depends on FB |
@@ -1202,6 +1218,17 @@ config FB_AU1100 | |||
1202 | bool "Au1100 LCD Driver" | 1218 | bool "Au1100 LCD Driver" |
1203 | depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y | 1219 | depends on (FB = y) && EXPERIMENTAL && PCI && MIPS && MIPS_PB1100=y |
1204 | 1220 | ||
1221 | config FB_AU1200 | ||
1222 | bool "Au1200 LCD Driver" | ||
1223 | depends on FB && MIPS && SOC_AU1200 | ||
1224 | select FB_CFB_FILLRECT | ||
1225 | select FB_CFB_COPYAREA | ||
1226 | select FB_CFB_IMAGEBLIT | ||
1227 | help | ||
1228 | This is the framebuffer driver for the AMD Au1200 SOC. It can drive | ||
1229 | various panels and CRTs by passing in kernel cmd line option | ||
1230 | au1200fb:panel=<name>. | ||
1231 | |||
1205 | source "drivers/video/geode/Kconfig" | 1232 | source "drivers/video/geode/Kconfig" |
1206 | 1233 | ||
1207 | config FB_FFB | 1234 | config FB_FFB |
diff --git a/drivers/video/Makefile b/drivers/video/Makefile index aa434e725c0d..cb90218515ac 100644 --- a/drivers/video/Makefile +++ b/drivers/video/Makefile | |||
@@ -86,6 +86,7 @@ obj-$(CONFIG_FB_ASILIANT) += asiliantfb.o | |||
86 | obj-$(CONFIG_FB_PXA) += pxafb.o | 86 | obj-$(CONFIG_FB_PXA) += pxafb.o |
87 | obj-$(CONFIG_FB_W100) += w100fb.o | 87 | obj-$(CONFIG_FB_W100) += w100fb.o |
88 | obj-$(CONFIG_FB_AU1100) += au1100fb.o | 88 | obj-$(CONFIG_FB_AU1100) += au1100fb.o |
89 | obj-$(CONFIG_FB_AU1200) += au1200fb.o | ||
89 | obj-$(CONFIG_FB_PMAG_AA) += pmag-aa-fb.o | 90 | obj-$(CONFIG_FB_PMAG_AA) += pmag-aa-fb.o |
90 | obj-$(CONFIG_FB_PMAG_BA) += pmag-ba-fb.o | 91 | obj-$(CONFIG_FB_PMAG_BA) += pmag-ba-fb.o |
91 | obj-$(CONFIG_FB_PMAGB_B) += pmagb-b-fb.o | 92 | obj-$(CONFIG_FB_PMAGB_B) += pmagb-b-fb.o |
diff --git a/drivers/video/acornfb.c b/drivers/video/acornfb.c index 76448d6ae896..98baecccb3fd 100644 --- a/drivers/video/acornfb.c +++ b/drivers/video/acornfb.c | |||
@@ -1308,7 +1308,7 @@ static int __init acornfb_probe(struct platform_device *dev) | |||
1308 | /* | 1308 | /* |
1309 | * Try to select a suitable default mode | 1309 | * Try to select a suitable default mode |
1310 | */ | 1310 | */ |
1311 | for (i = 0; i < sizeof(modedb) / sizeof(*modedb); i++) { | 1311 | for (i = 0; i < ARRAY_SIZE(modedb); i++) { |
1312 | unsigned long hs; | 1312 | unsigned long hs; |
1313 | 1313 | ||
1314 | hs = modedb[i].refresh * | 1314 | hs = modedb[i].refresh * |
@@ -1380,7 +1380,7 @@ static int __init acornfb_probe(struct platform_device *dev) | |||
1380 | */ | 1380 | */ |
1381 | free_unused_pages(PAGE_OFFSET + size, PAGE_OFFSET + MAX_SIZE); | 1381 | free_unused_pages(PAGE_OFFSET + size, PAGE_OFFSET + MAX_SIZE); |
1382 | #endif | 1382 | #endif |
1383 | 1383 | ||
1384 | fb_info.fix.smem_len = size; | 1384 | fb_info.fix.smem_len = size; |
1385 | current_par.palette_size = VIDC_PALETTE_SIZE; | 1385 | current_par.palette_size = VIDC_PALETTE_SIZE; |
1386 | 1386 | ||
@@ -1391,7 +1391,7 @@ static int __init acornfb_probe(struct platform_device *dev) | |||
1391 | */ | 1391 | */ |
1392 | do { | 1392 | do { |
1393 | rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb, | 1393 | rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb, |
1394 | sizeof(modedb) / sizeof(*modedb), | 1394 | ARRAY_SIZE(modedb), |
1395 | &acornfb_default_mode, DEFAULT_BPP); | 1395 | &acornfb_default_mode, DEFAULT_BPP); |
1396 | /* | 1396 | /* |
1397 | * If we found an exact match, all ok. | 1397 | * If we found an exact match, all ok. |
@@ -1408,7 +1408,7 @@ static int __init acornfb_probe(struct platform_device *dev) | |||
1408 | break; | 1408 | break; |
1409 | 1409 | ||
1410 | rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb, | 1410 | rc = fb_find_mode(&fb_info.var, &fb_info, NULL, modedb, |
1411 | sizeof(modedb) / sizeof(*modedb), | 1411 | ARRAY_SIZE(modedb), |
1412 | &acornfb_default_mode, DEFAULT_BPP); | 1412 | &acornfb_default_mode, DEFAULT_BPP); |
1413 | if (rc) | 1413 | if (rc) |
1414 | break; | 1414 | break; |
diff --git a/drivers/video/asiliantfb.c b/drivers/video/asiliantfb.c index c924d81f7978..29f9f0dfe3b4 100644 --- a/drivers/video/asiliantfb.c +++ b/drivers/video/asiliantfb.c | |||
@@ -353,8 +353,6 @@ struct chips_init_reg { | |||
353 | unsigned char data; | 353 | unsigned char data; |
354 | }; | 354 | }; |
355 | 355 | ||
356 | #define N_ELTS(x) (sizeof(x) / sizeof(x[0])) | ||
357 | |||
358 | static struct chips_init_reg chips_init_sr[] = | 356 | static struct chips_init_reg chips_init_sr[] = |
359 | { | 357 | { |
360 | {0x00, 0x03}, /* Reset register */ | 358 | {0x00, 0x03}, /* Reset register */ |
@@ -460,22 +458,22 @@ static void __devinit chips_hw_init(struct fb_info *p) | |||
460 | { | 458 | { |
461 | int i; | 459 | int i; |
462 | 460 | ||
463 | for (i = 0; i < N_ELTS(chips_init_xr); ++i) | 461 | for (i = 0; i < ARRAY_SIZE(chips_init_xr); ++i) |
464 | write_xr(chips_init_xr[i].addr, chips_init_xr[i].data); | 462 | write_xr(chips_init_xr[i].addr, chips_init_xr[i].data); |
465 | write_xr(0x81, 0x12); | 463 | write_xr(0x81, 0x12); |
466 | write_xr(0x82, 0x08); | 464 | write_xr(0x82, 0x08); |
467 | write_xr(0x20, 0x00); | 465 | write_xr(0x20, 0x00); |
468 | for (i = 0; i < N_ELTS(chips_init_sr); ++i) | 466 | for (i = 0; i < ARRAY_SIZE(chips_init_sr); ++i) |
469 | write_sr(chips_init_sr[i].addr, chips_init_sr[i].data); | 467 | write_sr(chips_init_sr[i].addr, chips_init_sr[i].data); |
470 | for (i = 0; i < N_ELTS(chips_init_gr); ++i) | 468 | for (i = 0; i < ARRAY_SIZE(chips_init_gr); ++i) |
471 | write_gr(chips_init_gr[i].addr, chips_init_gr[i].data); | 469 | write_gr(chips_init_gr[i].addr, chips_init_gr[i].data); |
472 | for (i = 0; i < N_ELTS(chips_init_ar); ++i) | 470 | for (i = 0; i < ARRAY_SIZE(chips_init_ar); ++i) |
473 | write_ar(chips_init_ar[i].addr, chips_init_ar[i].data); | 471 | write_ar(chips_init_ar[i].addr, chips_init_ar[i].data); |
474 | /* Enable video output in attribute index register */ | 472 | /* Enable video output in attribute index register */ |
475 | writeb(0x20, mmio_base + 0x780); | 473 | writeb(0x20, mmio_base + 0x780); |
476 | for (i = 0; i < N_ELTS(chips_init_cr); ++i) | 474 | for (i = 0; i < ARRAY_SIZE(chips_init_cr); ++i) |
477 | write_cr(chips_init_cr[i].addr, chips_init_cr[i].data); | 475 | write_cr(chips_init_cr[i].addr, chips_init_cr[i].data); |
478 | for (i = 0; i < N_ELTS(chips_init_fr); ++i) | 476 | for (i = 0; i < ARRAY_SIZE(chips_init_fr); ++i) |
479 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); | 477 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); |
480 | } | 478 | } |
481 | 479 | ||
diff --git a/drivers/video/aty/aty128fb.c b/drivers/video/aty/aty128fb.c index f07be22e119d..f7bbff4ddc6a 100644 --- a/drivers/video/aty/aty128fb.c +++ b/drivers/video/aty/aty128fb.c | |||
@@ -1726,9 +1726,9 @@ static int __init aty128_init(struct pci_dev *pdev, const struct pci_device_id * | |||
1726 | strcpy(video_card, "Rage128 XX "); | 1726 | strcpy(video_card, "Rage128 XX "); |
1727 | video_card[8] = ent->device >> 8; | 1727 | video_card[8] = ent->device >> 8; |
1728 | video_card[9] = ent->device & 0xFF; | 1728 | video_card[9] = ent->device & 0xFF; |
1729 | 1729 | ||
1730 | /* range check to make sure */ | 1730 | /* range check to make sure */ |
1731 | if (ent->driver_data < (sizeof(r128_family)/sizeof(char *))) | 1731 | if (ent->driver_data < ARRAY_SIZE(r128_family)) |
1732 | strncat(video_card, r128_family[ent->driver_data], sizeof(video_card)); | 1732 | strncat(video_card, r128_family[ent->driver_data], sizeof(video_card)); |
1733 | 1733 | ||
1734 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); | 1734 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); |
diff --git a/drivers/video/aty/atyfb_base.c b/drivers/video/aty/atyfb_base.c index 1b1f24e2bfbe..b39e72d5413b 100644 --- a/drivers/video/aty/atyfb_base.c +++ b/drivers/video/aty/atyfb_base.c | |||
@@ -435,7 +435,7 @@ static int __devinit correct_chipset(struct atyfb_par *par) | |||
435 | const char *name; | 435 | const char *name; |
436 | int i; | 436 | int i; |
437 | 437 | ||
438 | for (i = sizeof(aty_chips) / sizeof(*aty_chips) - 1; i >= 0; i--) | 438 | for (i = ARRAY_SIZE(aty_chips) - 1; i >= 0; i--) |
439 | if (par->pci_id == aty_chips[i].pci_id) | 439 | if (par->pci_id == aty_chips[i].pci_id) |
440 | break; | 440 | break; |
441 | 441 | ||
@@ -2169,10 +2169,10 @@ static void __init aty_calc_mem_refresh(struct atyfb_par *par, int xclk) | |||
2169 | 2169 | ||
2170 | if (IS_XL(par->pci_id) || IS_MOBILITY(par->pci_id)) { | 2170 | if (IS_XL(par->pci_id) || IS_MOBILITY(par->pci_id)) { |
2171 | refresh_tbl = ragexl_tbl; | 2171 | refresh_tbl = ragexl_tbl; |
2172 | size = sizeof(ragexl_tbl)/sizeof(int); | 2172 | size = ARRAY_SIZE(ragexl_tbl); |
2173 | } else { | 2173 | } else { |
2174 | refresh_tbl = ragepro_tbl; | 2174 | refresh_tbl = ragepro_tbl; |
2175 | size = sizeof(ragepro_tbl)/sizeof(int); | 2175 | size = ARRAY_SIZE(ragepro_tbl); |
2176 | } | 2176 | } |
2177 | 2177 | ||
2178 | for (i=0; i < size; i++) { | 2178 | for (i=0; i < size; i++) { |
@@ -2299,6 +2299,10 @@ static int __init aty_init(struct fb_info *info, const char *name) | |||
2299 | case CLK_ATI18818_1: | 2299 | case CLK_ATI18818_1: |
2300 | par->pll_ops = &aty_pll_ati18818_1; | 2300 | par->pll_ops = &aty_pll_ati18818_1; |
2301 | break; | 2301 | break; |
2302 | case CLK_IBMRGB514: | ||
2303 | par->pll_ops = &aty_pll_ibm514; | ||
2304 | break; | ||
2305 | #if 0 /* dead code */ | ||
2302 | case CLK_STG1703: | 2306 | case CLK_STG1703: |
2303 | par->pll_ops = &aty_pll_stg1703; | 2307 | par->pll_ops = &aty_pll_stg1703; |
2304 | break; | 2308 | break; |
@@ -2308,9 +2312,7 @@ static int __init aty_init(struct fb_info *info, const char *name) | |||
2308 | case CLK_ATT20C408: | 2312 | case CLK_ATT20C408: |
2309 | par->pll_ops = &aty_pll_att20c408; | 2313 | par->pll_ops = &aty_pll_att20c408; |
2310 | break; | 2314 | break; |
2311 | case CLK_IBMRGB514: | 2315 | #endif |
2312 | par->pll_ops = &aty_pll_ibm514; | ||
2313 | break; | ||
2314 | default: | 2316 | default: |
2315 | PRINTKI("aty_init: CLK type not implemented yet!"); | 2317 | PRINTKI("aty_init: CLK type not implemented yet!"); |
2316 | par->pll_ops = &aty_pll_unsupported; | 2318 | par->pll_ops = &aty_pll_unsupported; |
@@ -3398,7 +3400,7 @@ static int __devinit atyfb_pci_probe(struct pci_dev *pdev, const struct pci_devi | |||
3398 | struct atyfb_par *par; | 3400 | struct atyfb_par *par; |
3399 | int i, rc = -ENOMEM; | 3401 | int i, rc = -ENOMEM; |
3400 | 3402 | ||
3401 | for (i = sizeof(aty_chips) / sizeof(*aty_chips) - 1; i >= 0; i--) | 3403 | for (i = ARRAY_SIZE(aty_chips); i >= 0; i--) |
3402 | if (pdev->device == aty_chips[i].pci_id) | 3404 | if (pdev->device == aty_chips[i].pci_id) |
3403 | break; | 3405 | break; |
3404 | 3406 | ||
diff --git a/drivers/video/aty/mach64_gx.c b/drivers/video/aty/mach64_gx.c index 01fdff79483b..2045639cb671 100644 --- a/drivers/video/aty/mach64_gx.c +++ b/drivers/video/aty/mach64_gx.c | |||
@@ -149,8 +149,7 @@ static int aty_var_to_pll_514(const struct fb_info *info, u32 vclk_per, | |||
149 | }; | 149 | }; |
150 | int i; | 150 | int i; |
151 | 151 | ||
152 | for (i = 0; i < sizeof(RGB514_clocks) / sizeof(*RGB514_clocks); | 152 | for (i = 0; i < ARRAY_SIZE(RGB514_clocks); i++) |
153 | i++) | ||
154 | if (vclk_per <= RGB514_clocks[i].limit) { | 153 | if (vclk_per <= RGB514_clocks[i].limit) { |
155 | pll->ibm514.m = RGB514_clocks[i].m; | 154 | pll->ibm514.m = RGB514_clocks[i].m; |
156 | pll->ibm514.n = RGB514_clocks[i].n; | 155 | pll->ibm514.n = RGB514_clocks[i].n; |
diff --git a/drivers/video/aty/radeon_base.c b/drivers/video/aty/radeon_base.c index c9f0c5a07e6e..9a6b5b39b88e 100644 --- a/drivers/video/aty/radeon_base.c +++ b/drivers/video/aty/radeon_base.c | |||
@@ -1067,7 +1067,7 @@ static int radeon_setcolreg (unsigned regno, unsigned red, unsigned green, | |||
1067 | 1067 | ||
1068 | 1068 | ||
1069 | if (regno > 255) | 1069 | if (regno > 255) |
1070 | return 1; | 1070 | return -EINVAL; |
1071 | 1071 | ||
1072 | red >>= 8; | 1072 | red >>= 8; |
1073 | green >>= 8; | 1073 | green >>= 8; |
@@ -1086,9 +1086,9 @@ static int radeon_setcolreg (unsigned regno, unsigned red, unsigned green, | |||
1086 | pindex = regno * 8; | 1086 | pindex = regno * 8; |
1087 | 1087 | ||
1088 | if (rinfo->depth == 16 && regno > 63) | 1088 | if (rinfo->depth == 16 && regno > 63) |
1089 | return 1; | 1089 | return -EINVAL; |
1090 | if (rinfo->depth == 15 && regno > 31) | 1090 | if (rinfo->depth == 15 && regno > 31) |
1091 | return 1; | 1091 | return -EINVAL; |
1092 | 1092 | ||
1093 | /* For 565, the green component is mixed one order | 1093 | /* For 565, the green component is mixed one order |
1094 | * below | 1094 | * below |
diff --git a/drivers/video/au1200fb.c b/drivers/video/au1200fb.c new file mode 100644 index 000000000000..b367de30b98c --- /dev/null +++ b/drivers/video/au1200fb.c | |||
@@ -0,0 +1,3844 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * Au1200 LCD Driver. | ||
4 | * | ||
5 | * Copyright 2004-2005 AMD | ||
6 | * Author: AMD | ||
7 | * | ||
8 | * Based on: | ||
9 | * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device | ||
10 | * Created 28 Dec 1997 by Geert Uytterhoeven | ||
11 | * | ||
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. | ||
16 | * | ||
17 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
19 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
20 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
23 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
24 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
27 | * | ||
28 | * You should have received a copy of the GNU General Public License along | ||
29 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
30 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
31 | */ | ||
32 | |||
33 | #include <linux/module.h> | ||
34 | #include <linux/platform_device.h> | ||
35 | #include <linux/kernel.h> | ||
36 | #include <linux/errno.h> | ||
37 | #include <linux/string.h> | ||
38 | #include <linux/mm.h> | ||
39 | #include <linux/fb.h> | ||
40 | #include <linux/init.h> | ||
41 | #include <linux/interrupt.h> | ||
42 | #include <linux/ctype.h> | ||
43 | #include <linux/dma-mapping.h> | ||
44 | |||
45 | #include <asm/mach-au1x00/au1000.h> | ||
46 | #include "au1200fb.h" | ||
47 | |||
48 | #ifdef CONFIG_PM | ||
49 | #include <asm/mach-au1x00/au1xxx_pm.h> | ||
50 | #endif | ||
51 | |||
52 | #ifndef CONFIG_FB_AU1200_DEVS | ||
53 | #define CONFIG_FB_AU1200_DEVS 4 | ||
54 | #endif | ||
55 | |||
56 | #define DRIVER_NAME "au1200fb" | ||
57 | #define DRIVER_DESC "LCD controller driver for AU1200 processors" | ||
58 | |||
59 | #define DEBUG 1 | ||
60 | |||
61 | #define print_err(f, arg...) printk(KERN_ERR DRIVER_NAME ": " f "\n", ## arg) | ||
62 | #define print_warn(f, arg...) printk(KERN_WARNING DRIVER_NAME ": " f "\n", ## arg) | ||
63 | #define print_info(f, arg...) printk(KERN_INFO DRIVER_NAME ": " f "\n", ## arg) | ||
64 | |||
65 | #if DEBUG | ||
66 | #define print_dbg(f, arg...) printk(KERN_DEBUG __FILE__ ": " f "\n", ## arg) | ||
67 | #else | ||
68 | #define print_dbg(f, arg...) do {} while (0) | ||
69 | #endif | ||
70 | |||
71 | |||
72 | #define AU1200_LCD_FB_IOCTL 0x46FF | ||
73 | |||
74 | #define AU1200_LCD_SET_SCREEN 1 | ||
75 | #define AU1200_LCD_GET_SCREEN 2 | ||
76 | #define AU1200_LCD_SET_WINDOW 3 | ||
77 | #define AU1200_LCD_GET_WINDOW 4 | ||
78 | #define AU1200_LCD_SET_PANEL 5 | ||
79 | #define AU1200_LCD_GET_PANEL 6 | ||
80 | |||
81 | #define SCREEN_SIZE (1<< 1) | ||
82 | #define SCREEN_BACKCOLOR (1<< 2) | ||
83 | #define SCREEN_BRIGHTNESS (1<< 3) | ||
84 | #define SCREEN_COLORKEY (1<< 4) | ||
85 | #define SCREEN_MASK (1<< 5) | ||
86 | |||
87 | struct au1200_lcd_global_regs_t { | ||
88 | unsigned int flags; | ||
89 | unsigned int xsize; | ||
90 | unsigned int ysize; | ||
91 | unsigned int backcolor; | ||
92 | unsigned int brightness; | ||
93 | unsigned int colorkey; | ||
94 | unsigned int mask; | ||
95 | unsigned int panel_choice; | ||
96 | char panel_desc[80]; | ||
97 | |||
98 | }; | ||
99 | |||
100 | #define WIN_POSITION (1<< 0) | ||
101 | #define WIN_ALPHA_COLOR (1<< 1) | ||
102 | #define WIN_ALPHA_MODE (1<< 2) | ||
103 | #define WIN_PRIORITY (1<< 3) | ||
104 | #define WIN_CHANNEL (1<< 4) | ||
105 | #define WIN_BUFFER_FORMAT (1<< 5) | ||
106 | #define WIN_COLOR_ORDER (1<< 6) | ||
107 | #define WIN_PIXEL_ORDER (1<< 7) | ||
108 | #define WIN_SIZE (1<< 8) | ||
109 | #define WIN_COLORKEY_MODE (1<< 9) | ||
110 | #define WIN_DOUBLE_BUFFER_MODE (1<< 10) | ||
111 | #define WIN_RAM_ARRAY_MODE (1<< 11) | ||
112 | #define WIN_BUFFER_SCALE (1<< 12) | ||
113 | #define WIN_ENABLE (1<< 13) | ||
114 | |||
115 | struct au1200_lcd_window_regs_t { | ||
116 | unsigned int flags; | ||
117 | unsigned int xpos; | ||
118 | unsigned int ypos; | ||
119 | unsigned int alpha_color; | ||
120 | unsigned int alpha_mode; | ||
121 | unsigned int priority; | ||
122 | unsigned int channel; | ||
123 | unsigned int buffer_format; | ||
124 | unsigned int color_order; | ||
125 | unsigned int pixel_order; | ||
126 | unsigned int xsize; | ||
127 | unsigned int ysize; | ||
128 | unsigned int colorkey_mode; | ||
129 | unsigned int double_buffer_mode; | ||
130 | unsigned int ram_array_mode; | ||
131 | unsigned int xscale; | ||
132 | unsigned int yscale; | ||
133 | unsigned int enable; | ||
134 | }; | ||
135 | |||
136 | |||
137 | struct au1200_lcd_iodata_t { | ||
138 | unsigned int subcmd; | ||
139 | struct au1200_lcd_global_regs_t global; | ||
140 | struct au1200_lcd_window_regs_t window; | ||
141 | }; | ||
142 | |||
143 | #if defined(__BIG_ENDIAN) | ||
144 | #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_11 | ||
145 | #else | ||
146 | #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_00 | ||
147 | #endif | ||
148 | #define LCD_CONTROL_DEFAULT_SBPPF LCD_CONTROL_SBPPF_565 | ||
149 | |||
150 | /* Private, per-framebuffer management information (independent of the panel itself) */ | ||
151 | struct au1200fb_device { | ||
152 | struct fb_info fb_info; /* FB driver info record */ | ||
153 | |||
154 | int plane; | ||
155 | unsigned char* fb_mem; /* FrameBuffer memory map */ | ||
156 | unsigned int fb_len; | ||
157 | dma_addr_t fb_phys; | ||
158 | }; | ||
159 | |||
160 | static struct au1200fb_device _au1200fb_devices[CONFIG_FB_AU1200_DEVS]; | ||
161 | /********************************************************************/ | ||
162 | |||
163 | /* LCD controller restrictions */ | ||
164 | #define AU1200_LCD_MAX_XRES 1280 | ||
165 | #define AU1200_LCD_MAX_YRES 1024 | ||
166 | #define AU1200_LCD_MAX_BPP 32 | ||
167 | #define AU1200_LCD_MAX_CLK 96000000 /* fixme: this needs to go away ? */ | ||
168 | #define AU1200_LCD_NBR_PALETTE_ENTRIES 256 | ||
169 | |||
170 | /* Default number of visible screen buffer to allocate */ | ||
171 | #define AU1200FB_NBR_VIDEO_BUFFERS 1 | ||
172 | |||
173 | /********************************************************************/ | ||
174 | |||
175 | static struct au1200_lcd *lcd = (struct au1200_lcd *) AU1200_LCD_ADDR; | ||
176 | static int window_index = 2; /* default is zero */ | ||
177 | static int panel_index = 2; /* default is zero */ | ||
178 | static struct window_settings *win; | ||
179 | static struct panel_settings *panel; | ||
180 | static int noblanking = 1; | ||
181 | static int nohwcursor = 0; | ||
182 | |||
183 | struct window_settings { | ||
184 | unsigned char name[64]; | ||
185 | uint32 mode_backcolor; | ||
186 | uint32 mode_colorkey; | ||
187 | uint32 mode_colorkeymsk; | ||
188 | struct { | ||
189 | int xres; | ||
190 | int yres; | ||
191 | int xpos; | ||
192 | int ypos; | ||
193 | uint32 mode_winctrl1; /* winctrl1[FRM,CCO,PO,PIPE] */ | ||
194 | uint32 mode_winenable; | ||
195 | } w[4]; | ||
196 | }; | ||
197 | |||
198 | #if defined(__BIG_ENDIAN) | ||
199 | #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_00 | ||
200 | #else | ||
201 | #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_01 | ||
202 | #endif | ||
203 | |||
204 | extern int board_au1200fb_panel_init (void); | ||
205 | extern int board_au1200fb_panel_shutdown (void); | ||
206 | |||
207 | #ifdef CONFIG_PM | ||
208 | int au1200fb_pm_callback(au1xxx_power_dev_t *dev, | ||
209 | au1xxx_request_t request, void *data); | ||
210 | au1xxx_power_dev_t *LCD_pm_dev; | ||
211 | #endif | ||
212 | |||
213 | /* | ||
214 | * Default window configurations | ||
215 | */ | ||
216 | static struct window_settings windows[] = { | ||
217 | { /* Index 0 */ | ||
218 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
219 | /* mode_backcolor */ 0x006600ff, | ||
220 | /* mode_colorkey,msk*/ 0, 0, | ||
221 | { | ||
222 | { | ||
223 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
224 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
225 | LCD_WINCTRL1_PO_16BPP, | ||
226 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
227 | }, | ||
228 | { | ||
229 | /* xres, yres, xpos, ypos */ 100, 100, 100, 100, | ||
230 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
231 | LCD_WINCTRL1_PO_16BPP | | ||
232 | LCD_WINCTRL1_PIPE, | ||
233 | /* mode_winenable*/ LCD_WINENABLE_WEN1, | ||
234 | }, | ||
235 | { | ||
236 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
237 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
238 | LCD_WINCTRL1_PO_16BPP, | ||
239 | /* mode_winenable*/ 0, | ||
240 | }, | ||
241 | { | ||
242 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
243 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
244 | LCD_WINCTRL1_PO_16BPP | | ||
245 | LCD_WINCTRL1_PIPE, | ||
246 | /* mode_winenable*/ 0, | ||
247 | }, | ||
248 | }, | ||
249 | }, | ||
250 | |||
251 | { /* Index 1 */ | ||
252 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
253 | /* mode_backcolor */ 0x006600ff, | ||
254 | /* mode_colorkey,msk*/ 0, 0, | ||
255 | { | ||
256 | { | ||
257 | /* xres, yres, xpos, ypos */ 320, 240, 5, 5, | ||
258 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_24BPP | | ||
259 | LCD_WINCTRL1_PO_00, | ||
260 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
261 | }, | ||
262 | { | ||
263 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
264 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | ||
265 | | LCD_WINCTRL1_PO_16BPP, | ||
266 | /* mode_winenable*/ 0, | ||
267 | }, | ||
268 | { | ||
269 | /* xres, yres, xpos, ypos */ 100, 100, 0, 0, | ||
270 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
271 | LCD_WINCTRL1_PO_16BPP | | ||
272 | LCD_WINCTRL1_PIPE, | ||
273 | /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/, | ||
274 | }, | ||
275 | { | ||
276 | /* xres, yres, xpos, ypos */ 200, 25, 0, 0, | ||
277 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
278 | LCD_WINCTRL1_PO_16BPP | | ||
279 | LCD_WINCTRL1_PIPE, | ||
280 | /* mode_winenable*/ 0, | ||
281 | }, | ||
282 | }, | ||
283 | }, | ||
284 | { /* Index 2 */ | ||
285 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
286 | /* mode_backcolor */ 0x006600ff, | ||
287 | /* mode_colorkey,msk*/ 0, 0, | ||
288 | { | ||
289 | { | ||
290 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
291 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
292 | LCD_WINCTRL1_PO_16BPP, | ||
293 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
294 | }, | ||
295 | { | ||
296 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
297 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
298 | LCD_WINCTRL1_PO_16BPP, | ||
299 | /* mode_winenable*/ 0, | ||
300 | }, | ||
301 | { | ||
302 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
303 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_32BPP | | ||
304 | LCD_WINCTRL1_PO_00|LCD_WINCTRL1_PIPE, | ||
305 | /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/, | ||
306 | }, | ||
307 | { | ||
308 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
309 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
310 | LCD_WINCTRL1_PO_16BPP | | ||
311 | LCD_WINCTRL1_PIPE, | ||
312 | /* mode_winenable*/ 0, | ||
313 | }, | ||
314 | }, | ||
315 | }, | ||
316 | /* Need VGA 640 @ 24bpp, @ 32bpp */ | ||
317 | /* Need VGA 800 @ 24bpp, @ 32bpp */ | ||
318 | /* Need VGA 1024 @ 24bpp, @ 32bpp */ | ||
319 | }; | ||
320 | |||
321 | /* | ||
322 | * Controller configurations for various panels. | ||
323 | */ | ||
324 | |||
325 | struct panel_settings | ||
326 | { | ||
327 | const char name[25]; /* Full name <vendor>_<model> */ | ||
328 | |||
329 | struct fb_monspecs monspecs; /* FB monitor specs */ | ||
330 | |||
331 | /* panel timings */ | ||
332 | uint32 mode_screen; | ||
333 | uint32 mode_horztiming; | ||
334 | uint32 mode_verttiming; | ||
335 | uint32 mode_clkcontrol; | ||
336 | uint32 mode_pwmdiv; | ||
337 | uint32 mode_pwmhi; | ||
338 | uint32 mode_outmask; | ||
339 | uint32 mode_fifoctrl; | ||
340 | uint32 mode_toyclksrc; | ||
341 | uint32 mode_backlight; | ||
342 | uint32 mode_auxpll; | ||
343 | int (*device_init)(void); | ||
344 | int (*device_shutdown)(void); | ||
345 | #define Xres min_xres | ||
346 | #define Yres min_yres | ||
347 | u32 min_xres; /* Minimum horizontal resolution */ | ||
348 | u32 max_xres; /* Maximum horizontal resolution */ | ||
349 | u32 min_yres; /* Minimum vertical resolution */ | ||
350 | u32 max_yres; /* Maximum vertical resolution */ | ||
351 | }; | ||
352 | |||
353 | /********************************************************************/ | ||
354 | /* fixme: Maybe a modedb for the CRT ? otherwise panels should be as-is */ | ||
355 | |||
356 | /* List of panels known to work with the AU1200 LCD controller. | ||
357 | * To add a new panel, enter the same specifications as the | ||
358 | * Generic_TFT one, and MAKE SURE that it doesn't conflicts | ||
359 | * with the controller restrictions. Restrictions are: | ||
360 | * | ||
361 | * STN color panels: max_bpp <= 12 | ||
362 | * STN mono panels: max_bpp <= 4 | ||
363 | * TFT panels: max_bpp <= 16 | ||
364 | * max_xres <= 800 | ||
365 | * max_yres <= 600 | ||
366 | */ | ||
367 | static struct panel_settings known_lcd_panels[] = | ||
368 | { | ||
369 | [0] = { /* QVGA 320x240 H:33.3kHz V:110Hz */ | ||
370 | .name = "QVGA_320x240", | ||
371 | .monspecs = { | ||
372 | .modedb = NULL, | ||
373 | .modedb_len = 0, | ||
374 | .hfmin = 30000, | ||
375 | .hfmax = 70000, | ||
376 | .vfmin = 60, | ||
377 | .vfmax = 60, | ||
378 | .dclkmin = 6000000, | ||
379 | .dclkmax = 28000000, | ||
380 | .input = FB_DISP_RGB, | ||
381 | }, | ||
382 | .mode_screen = LCD_SCREEN_SX_N(320) | | ||
383 | LCD_SCREEN_SY_N(240), | ||
384 | .mode_horztiming = 0x00c4623b, | ||
385 | .mode_verttiming = 0x00502814, | ||
386 | .mode_clkcontrol = 0x00020002, /* /4=24Mhz */ | ||
387 | .mode_pwmdiv = 0x00000000, | ||
388 | .mode_pwmhi = 0x00000000, | ||
389 | .mode_outmask = 0x00FFFFFF, | ||
390 | .mode_fifoctrl = 0x2f2f2f2f, | ||
391 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
392 | .mode_backlight = 0x00000000, | ||
393 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
394 | .device_init = NULL, | ||
395 | .device_shutdown = NULL, | ||
396 | 320, 320, | ||
397 | 240, 240, | ||
398 | }, | ||
399 | |||
400 | [1] = { /* VGA 640x480 H:30.3kHz V:58Hz */ | ||
401 | .name = "VGA_640x480", | ||
402 | .monspecs = { | ||
403 | .modedb = NULL, | ||
404 | .modedb_len = 0, | ||
405 | .hfmin = 30000, | ||
406 | .hfmax = 70000, | ||
407 | .vfmin = 60, | ||
408 | .vfmax = 60, | ||
409 | .dclkmin = 6000000, | ||
410 | .dclkmax = 28000000, | ||
411 | .input = FB_DISP_RGB, | ||
412 | }, | ||
413 | .mode_screen = 0x13f9df80, | ||
414 | .mode_horztiming = 0x003c5859, | ||
415 | .mode_verttiming = 0x00741201, | ||
416 | .mode_clkcontrol = 0x00020001, /* /4=24Mhz */ | ||
417 | .mode_pwmdiv = 0x00000000, | ||
418 | .mode_pwmhi = 0x00000000, | ||
419 | .mode_outmask = 0x00FFFFFF, | ||
420 | .mode_fifoctrl = 0x2f2f2f2f, | ||
421 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
422 | .mode_backlight = 0x00000000, | ||
423 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
424 | .device_init = NULL, | ||
425 | .device_shutdown = NULL, | ||
426 | 640, 480, | ||
427 | 640, 480, | ||
428 | }, | ||
429 | |||
430 | [2] = { /* SVGA 800x600 H:46.1kHz V:69Hz */ | ||
431 | .name = "SVGA_800x600", | ||
432 | .monspecs = { | ||
433 | .modedb = NULL, | ||
434 | .modedb_len = 0, | ||
435 | .hfmin = 30000, | ||
436 | .hfmax = 70000, | ||
437 | .vfmin = 60, | ||
438 | .vfmax = 60, | ||
439 | .dclkmin = 6000000, | ||
440 | .dclkmax = 28000000, | ||
441 | .input = FB_DISP_RGB, | ||
442 | }, | ||
443 | .mode_screen = 0x18fa5780, | ||
444 | .mode_horztiming = 0x00dc7e77, | ||
445 | .mode_verttiming = 0x00584805, | ||
446 | .mode_clkcontrol = 0x00020000, /* /2=48Mhz */ | ||
447 | .mode_pwmdiv = 0x00000000, | ||
448 | .mode_pwmhi = 0x00000000, | ||
449 | .mode_outmask = 0x00FFFFFF, | ||
450 | .mode_fifoctrl = 0x2f2f2f2f, | ||
451 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
452 | .mode_backlight = 0x00000000, | ||
453 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
454 | .device_init = NULL, | ||
455 | .device_shutdown = NULL, | ||
456 | 800, 800, | ||
457 | 600, 600, | ||
458 | }, | ||
459 | |||
460 | [3] = { /* XVGA 1024x768 H:56.2kHz V:70Hz */ | ||
461 | .name = "XVGA_1024x768", | ||
462 | .monspecs = { | ||
463 | .modedb = NULL, | ||
464 | .modedb_len = 0, | ||
465 | .hfmin = 30000, | ||
466 | .hfmax = 70000, | ||
467 | .vfmin = 60, | ||
468 | .vfmax = 60, | ||
469 | .dclkmin = 6000000, | ||
470 | .dclkmax = 28000000, | ||
471 | .input = FB_DISP_RGB, | ||
472 | }, | ||
473 | .mode_screen = 0x1ffaff80, | ||
474 | .mode_horztiming = 0x007d0e57, | ||
475 | .mode_verttiming = 0x00740a01, | ||
476 | .mode_clkcontrol = 0x000A0000, /* /1 */ | ||
477 | .mode_pwmdiv = 0x00000000, | ||
478 | .mode_pwmhi = 0x00000000, | ||
479 | .mode_outmask = 0x00FFFFFF, | ||
480 | .mode_fifoctrl = 0x2f2f2f2f, | ||
481 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
482 | .mode_backlight = 0x00000000, | ||
483 | .mode_auxpll = 6, /* 72MHz AUXPLL */ | ||
484 | .device_init = NULL, | ||
485 | .device_shutdown = NULL, | ||
486 | 1024, 1024, | ||
487 | 768, 768, | ||
488 | }, | ||
489 | |||
490 | [4] = { /* XVGA XVGA 1280x1024 H:68.5kHz V:65Hz */ | ||
491 | .name = "XVGA_1280x1024", | ||
492 | .monspecs = { | ||
493 | .modedb = NULL, | ||
494 | .modedb_len = 0, | ||
495 | .hfmin = 30000, | ||
496 | .hfmax = 70000, | ||
497 | .vfmin = 60, | ||
498 | .vfmax = 60, | ||
499 | .dclkmin = 6000000, | ||
500 | .dclkmax = 28000000, | ||
501 | .input = FB_DISP_RGB, | ||
502 | }, | ||
503 | .mode_screen = 0x27fbff80, | ||
504 | .mode_horztiming = 0x00cdb2c7, | ||
505 | .mode_verttiming = 0x00600002, | ||
506 | .mode_clkcontrol = 0x000A0000, /* /1 */ | ||
507 | .mode_pwmdiv = 0x00000000, | ||
508 | .mode_pwmhi = 0x00000000, | ||
509 | .mode_outmask = 0x00FFFFFF, | ||
510 | .mode_fifoctrl = 0x2f2f2f2f, | ||
511 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
512 | .mode_backlight = 0x00000000, | ||
513 | .mode_auxpll = 10, /* 120MHz AUXPLL */ | ||
514 | .device_init = NULL, | ||
515 | .device_shutdown = NULL, | ||
516 | 1280, 1280, | ||
517 | 1024, 1024, | ||
518 | }, | ||
519 | |||
520 | [5] = { /* Samsung 1024x768 TFT */ | ||
521 | .name = "Samsung_1024x768_TFT", | ||
522 | .monspecs = { | ||
523 | .modedb = NULL, | ||
524 | .modedb_len = 0, | ||
525 | .hfmin = 30000, | ||
526 | .hfmax = 70000, | ||
527 | .vfmin = 60, | ||
528 | .vfmax = 60, | ||
529 | .dclkmin = 6000000, | ||
530 | .dclkmax = 28000000, | ||
531 | .input = FB_DISP_RGB, | ||
532 | }, | ||
533 | .mode_screen = 0x1ffaff80, | ||
534 | .mode_horztiming = 0x018cc677, | ||
535 | .mode_verttiming = 0x00241217, | ||
536 | .mode_clkcontrol = 0x00000000, /* SCB 0x1 /4=24Mhz */ | ||
537 | .mode_pwmdiv = 0x8000063f, /* SCB 0x0 */ | ||
538 | .mode_pwmhi = 0x03400000, /* SCB 0x0 */ | ||
539 | .mode_outmask = 0x00FFFFFF, | ||
540 | .mode_fifoctrl = 0x2f2f2f2f, | ||
541 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
542 | .mode_backlight = 0x00000000, | ||
543 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
544 | .device_init = board_au1200fb_panel_init, | ||
545 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
546 | 1024, 1024, | ||
547 | 768, 768, | ||
548 | }, | ||
549 | |||
550 | [6] = { /* Toshiba 640x480 TFT */ | ||
551 | .name = "Toshiba_640x480_TFT", | ||
552 | .monspecs = { | ||
553 | .modedb = NULL, | ||
554 | .modedb_len = 0, | ||
555 | .hfmin = 30000, | ||
556 | .hfmax = 70000, | ||
557 | .vfmin = 60, | ||
558 | .vfmax = 60, | ||
559 | .dclkmin = 6000000, | ||
560 | .dclkmax = 28000000, | ||
561 | .input = FB_DISP_RGB, | ||
562 | }, | ||
563 | .mode_screen = LCD_SCREEN_SX_N(640) | | ||
564 | LCD_SCREEN_SY_N(480), | ||
565 | .mode_horztiming = LCD_HORZTIMING_HPW_N(96) | | ||
566 | LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(51), | ||
567 | .mode_verttiming = LCD_VERTTIMING_VPW_N(2) | | ||
568 | LCD_VERTTIMING_VND1_N(11) | LCD_VERTTIMING_VND2_N(32), | ||
569 | .mode_clkcontrol = 0x00000000, /* /4=24Mhz */ | ||
570 | .mode_pwmdiv = 0x8000063f, | ||
571 | .mode_pwmhi = 0x03400000, | ||
572 | .mode_outmask = 0x00fcfcfc, | ||
573 | .mode_fifoctrl = 0x2f2f2f2f, | ||
574 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
575 | .mode_backlight = 0x00000000, | ||
576 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
577 | .device_init = board_au1200fb_panel_init, | ||
578 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
579 | 640, 480, | ||
580 | 640, 480, | ||
581 | }, | ||
582 | |||
583 | [7] = { /* Sharp 320x240 TFT */ | ||
584 | .name = "Sharp_320x240_TFT", | ||
585 | .monspecs = { | ||
586 | .modedb = NULL, | ||
587 | .modedb_len = 0, | ||
588 | .hfmin = 12500, | ||
589 | .hfmax = 20000, | ||
590 | .vfmin = 38, | ||
591 | .vfmax = 81, | ||
592 | .dclkmin = 4500000, | ||
593 | .dclkmax = 6800000, | ||
594 | .input = FB_DISP_RGB, | ||
595 | }, | ||
596 | .mode_screen = LCD_SCREEN_SX_N(320) | | ||
597 | LCD_SCREEN_SY_N(240), | ||
598 | .mode_horztiming = LCD_HORZTIMING_HPW_N(60) | | ||
599 | LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(2), | ||
600 | .mode_verttiming = LCD_VERTTIMING_VPW_N(2) | | ||
601 | LCD_VERTTIMING_VND1_N(2) | LCD_VERTTIMING_VND2_N(5), | ||
602 | .mode_clkcontrol = LCD_CLKCONTROL_PCD_N(7), /*16=6Mhz*/ | ||
603 | .mode_pwmdiv = 0x8000063f, | ||
604 | .mode_pwmhi = 0x03400000, | ||
605 | .mode_outmask = 0x00fcfcfc, | ||
606 | .mode_fifoctrl = 0x2f2f2f2f, | ||
607 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
608 | .mode_backlight = 0x00000000, | ||
609 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
610 | .device_init = board_au1200fb_panel_init, | ||
611 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
612 | 320, 320, | ||
613 | 240, 240, | ||
614 | }, | ||
615 | |||
616 | [8] = { /* Toppoly TD070WGCB2 7" 856x480 TFT */ | ||
617 | .name = "Toppoly_TD070WGCB2", | ||
618 | .monspecs = { | ||
619 | .modedb = NULL, | ||
620 | .modedb_len = 0, | ||
621 | .hfmin = 30000, | ||
622 | .hfmax = 70000, | ||
623 | .vfmin = 60, | ||
624 | .vfmax = 60, | ||
625 | .dclkmin = 6000000, | ||
626 | .dclkmax = 28000000, | ||
627 | .input = FB_DISP_RGB, | ||
628 | }, | ||
629 | .mode_screen = LCD_SCREEN_SX_N(856) | | ||
630 | LCD_SCREEN_SY_N(480), | ||
631 | .mode_horztiming = LCD_HORZTIMING_HND2_N(43) | | ||
632 | LCD_HORZTIMING_HND1_N(43) | LCD_HORZTIMING_HPW_N(114), | ||
633 | .mode_verttiming = LCD_VERTTIMING_VND2_N(20) | | ||
634 | LCD_VERTTIMING_VND1_N(21) | LCD_VERTTIMING_VPW_N(4), | ||
635 | .mode_clkcontrol = 0x00020001, /* /4=24Mhz */ | ||
636 | .mode_pwmdiv = 0x8000063f, | ||
637 | .mode_pwmhi = 0x03400000, | ||
638 | .mode_outmask = 0x00fcfcfc, | ||
639 | .mode_fifoctrl = 0x2f2f2f2f, | ||
640 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
641 | .mode_backlight = 0x00000000, | ||
642 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
643 | .device_init = board_au1200fb_panel_init, | ||
644 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
645 | 856, 856, | ||
646 | 480, 480, | ||
647 | }, | ||
648 | }; | ||
649 | |||
650 | #define NUM_PANELS (ARRAY_SIZE(known_lcd_panels)) | ||
651 | |||
652 | /********************************************************************/ | ||
653 | |||
654 | #ifdef CONFIG_PM | ||
655 | static int set_brightness(unsigned int brightness) | ||
656 | { | ||
657 | unsigned int hi1, divider; | ||
658 | |||
659 | /* limit brightness pwm duty to >= 30/1600 */ | ||
660 | if (brightness < 30) { | ||
661 | brightness = 30; | ||
662 | } | ||
663 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
664 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
665 | hi1 = (((brightness & 0xFF) + 1) * divider >> 8); | ||
666 | lcd->pwmhi &= 0xFFFF; | ||
667 | lcd->pwmhi |= (hi1 << 16); | ||
668 | |||
669 | return brightness; | ||
670 | } | ||
671 | #endif /* CONFIG_PM */ | ||
672 | |||
673 | static int winbpp (unsigned int winctrl1) | ||
674 | { | ||
675 | int bits = 0; | ||
676 | |||
677 | /* how many bits are needed for each pixel format */ | ||
678 | switch (winctrl1 & LCD_WINCTRL1_FRM) { | ||
679 | case LCD_WINCTRL1_FRM_1BPP: | ||
680 | bits = 1; | ||
681 | break; | ||
682 | case LCD_WINCTRL1_FRM_2BPP: | ||
683 | bits = 2; | ||
684 | break; | ||
685 | case LCD_WINCTRL1_FRM_4BPP: | ||
686 | bits = 4; | ||
687 | break; | ||
688 | case LCD_WINCTRL1_FRM_8BPP: | ||
689 | bits = 8; | ||
690 | break; | ||
691 | case LCD_WINCTRL1_FRM_12BPP: | ||
692 | case LCD_WINCTRL1_FRM_16BPP655: | ||
693 | case LCD_WINCTRL1_FRM_16BPP565: | ||
694 | case LCD_WINCTRL1_FRM_16BPP556: | ||
695 | case LCD_WINCTRL1_FRM_16BPPI1555: | ||
696 | case LCD_WINCTRL1_FRM_16BPPI5551: | ||
697 | case LCD_WINCTRL1_FRM_16BPPA1555: | ||
698 | case LCD_WINCTRL1_FRM_16BPPA5551: | ||
699 | bits = 16; | ||
700 | break; | ||
701 | case LCD_WINCTRL1_FRM_24BPP: | ||
702 | case LCD_WINCTRL1_FRM_32BPP: | ||
703 | bits = 32; | ||
704 | break; | ||
705 | } | ||
706 | |||
707 | return bits; | ||
708 | } | ||
709 | |||
710 | static int fbinfo2index (struct fb_info *fb_info) | ||
711 | { | ||
712 | int i; | ||
713 | |||
714 | for (i = 0; i < CONFIG_FB_AU1200_DEVS; ++i) { | ||
715 | if (fb_info == (struct fb_info *)(&_au1200fb_devices[i].fb_info)) | ||
716 | return i; | ||
717 | } | ||
718 | printk("au1200fb: ERROR: fbinfo2index failed!\n"); | ||
719 | return -1; | ||
720 | } | ||
721 | |||
722 | static int au1200_setlocation (struct au1200fb_device *fbdev, int plane, | ||
723 | int xpos, int ypos) | ||
724 | { | ||
725 | uint32 winctrl0, winctrl1, winenable, fb_offset = 0; | ||
726 | int xsz, ysz; | ||
727 | |||
728 | /* FIX!!! NOT CHECKING FOR COMPLETE OFFSCREEN YET */ | ||
729 | |||
730 | winctrl0 = lcd->window[plane].winctrl0; | ||
731 | winctrl1 = lcd->window[plane].winctrl1; | ||
732 | winctrl0 &= (LCD_WINCTRL0_A | LCD_WINCTRL0_AEN); | ||
733 | winctrl1 &= ~(LCD_WINCTRL1_SZX | LCD_WINCTRL1_SZY); | ||
734 | |||
735 | /* Check for off-screen adjustments */ | ||
736 | xsz = win->w[plane].xres; | ||
737 | ysz = win->w[plane].yres; | ||
738 | if ((xpos + win->w[plane].xres) > panel->Xres) { | ||
739 | /* Off-screen to the right */ | ||
740 | xsz = panel->Xres - xpos; /* off by 1 ??? */ | ||
741 | /*printk("off screen right\n");*/ | ||
742 | } | ||
743 | |||
744 | if ((ypos + win->w[plane].yres) > panel->Yres) { | ||
745 | /* Off-screen to the bottom */ | ||
746 | ysz = panel->Yres - ypos; /* off by 1 ??? */ | ||
747 | /*printk("off screen bottom\n");*/ | ||
748 | } | ||
749 | |||
750 | if (xpos < 0) { | ||
751 | /* Off-screen to the left */ | ||
752 | xsz = win->w[plane].xres + xpos; | ||
753 | fb_offset += (((0 - xpos) * winbpp(lcd->window[plane].winctrl1))/8); | ||
754 | xpos = 0; | ||
755 | /*printk("off screen left\n");*/ | ||
756 | } | ||
757 | |||
758 | if (ypos < 0) { | ||
759 | /* Off-screen to the top */ | ||
760 | ysz = win->w[plane].yres + ypos; | ||
761 | /* fixme: fb_offset += ((0-ypos)*fb_pars[plane].line_length); */ | ||
762 | ypos = 0; | ||
763 | /*printk("off screen top\n");*/ | ||
764 | } | ||
765 | |||
766 | /* record settings */ | ||
767 | win->w[plane].xpos = xpos; | ||
768 | win->w[plane].ypos = ypos; | ||
769 | |||
770 | xsz -= 1; | ||
771 | ysz -= 1; | ||
772 | winctrl0 |= (xpos << 21); | ||
773 | winctrl0 |= (ypos << 10); | ||
774 | winctrl1 |= (xsz << 11); | ||
775 | winctrl1 |= (ysz << 0); | ||
776 | |||
777 | /* Disable the window while making changes, then restore WINEN */ | ||
778 | winenable = lcd->winenable & (1 << plane); | ||
779 | au_sync(); | ||
780 | lcd->winenable &= ~(1 << plane); | ||
781 | lcd->window[plane].winctrl0 = winctrl0; | ||
782 | lcd->window[plane].winctrl1 = winctrl1; | ||
783 | lcd->window[plane].winbuf0 = | ||
784 | lcd->window[plane].winbuf1 = fbdev->fb_phys; | ||
785 | lcd->window[plane].winbufctrl = 0; /* select winbuf0 */ | ||
786 | lcd->winenable |= winenable; | ||
787 | au_sync(); | ||
788 | |||
789 | return 0; | ||
790 | } | ||
791 | |||
792 | static void au1200_setpanel (struct panel_settings *newpanel) | ||
793 | { | ||
794 | /* | ||
795 | * Perform global setup/init of LCD controller | ||
796 | */ | ||
797 | uint32 winenable; | ||
798 | |||
799 | /* Make sure all windows disabled */ | ||
800 | winenable = lcd->winenable; | ||
801 | lcd->winenable = 0; | ||
802 | au_sync(); | ||
803 | /* | ||
804 | * Ensure everything is disabled before reconfiguring | ||
805 | */ | ||
806 | if (lcd->screen & LCD_SCREEN_SEN) { | ||
807 | /* Wait for vertical sync period */ | ||
808 | lcd->intstatus = LCD_INT_SS; | ||
809 | while ((lcd->intstatus & LCD_INT_SS) == 0) { | ||
810 | au_sync(); | ||
811 | } | ||
812 | |||
813 | lcd->screen &= ~LCD_SCREEN_SEN; /*disable the controller*/ | ||
814 | |||
815 | do { | ||
816 | lcd->intstatus = lcd->intstatus; /*clear interrupts*/ | ||
817 | au_sync(); | ||
818 | /*wait for controller to shut down*/ | ||
819 | } while ((lcd->intstatus & LCD_INT_SD) == 0); | ||
820 | |||
821 | /* Call shutdown of current panel (if up) */ | ||
822 | /* this must occur last, because if an external clock is driving | ||
823 | the controller, the clock cannot be turned off before first | ||
824 | shutting down the controller. | ||
825 | */ | ||
826 | if (panel->device_shutdown != NULL) | ||
827 | panel->device_shutdown(); | ||
828 | } | ||
829 | |||
830 | /* Newpanel == NULL indicates a shutdown operation only */ | ||
831 | if (newpanel == NULL) | ||
832 | return; | ||
833 | |||
834 | panel = newpanel; | ||
835 | |||
836 | printk("Panel(%s), %dx%d\n", panel->name, panel->Xres, panel->Yres); | ||
837 | |||
838 | /* | ||
839 | * Setup clocking if internal LCD clock source (assumes sys_auxpll valid) | ||
840 | */ | ||
841 | if (!(panel->mode_clkcontrol & LCD_CLKCONTROL_EXT)) | ||
842 | { | ||
843 | uint32 sys_clksrc; | ||
844 | au_writel(panel->mode_auxpll, SYS_AUXPLL); | ||
845 | sys_clksrc = au_readl(SYS_CLKSRC) & ~0x0000001f; | ||
846 | sys_clksrc |= panel->mode_toyclksrc; | ||
847 | au_writel(sys_clksrc, SYS_CLKSRC); | ||
848 | } | ||
849 | |||
850 | /* | ||
851 | * Configure panel timings | ||
852 | */ | ||
853 | lcd->screen = panel->mode_screen; | ||
854 | lcd->horztiming = panel->mode_horztiming; | ||
855 | lcd->verttiming = panel->mode_verttiming; | ||
856 | lcd->clkcontrol = panel->mode_clkcontrol; | ||
857 | lcd->pwmdiv = panel->mode_pwmdiv; | ||
858 | lcd->pwmhi = panel->mode_pwmhi; | ||
859 | lcd->outmask = panel->mode_outmask; | ||
860 | lcd->fifoctrl = panel->mode_fifoctrl; | ||
861 | au_sync(); | ||
862 | |||
863 | /* fixme: Check window settings to make sure still valid | ||
864 | * for new geometry */ | ||
865 | #if 0 | ||
866 | au1200_setlocation(fbdev, 0, win->w[0].xpos, win->w[0].ypos); | ||
867 | au1200_setlocation(fbdev, 1, win->w[1].xpos, win->w[1].ypos); | ||
868 | au1200_setlocation(fbdev, 2, win->w[2].xpos, win->w[2].ypos); | ||
869 | au1200_setlocation(fbdev, 3, win->w[3].xpos, win->w[3].ypos); | ||
870 | #endif | ||
871 | lcd->winenable = winenable; | ||
872 | |||
873 | /* | ||
874 | * Re-enable screen now that it is configured | ||
875 | */ | ||
876 | lcd->screen |= LCD_SCREEN_SEN; | ||
877 | au_sync(); | ||
878 | |||
879 | /* Call init of panel */ | ||
880 | if (panel->device_init != NULL) panel->device_init(); | ||
881 | |||
882 | /* FIX!!!! not appropriate on panel change!!! Global setup/init */ | ||
883 | lcd->intenable = 0; | ||
884 | lcd->intstatus = ~0; | ||
885 | lcd->backcolor = win->mode_backcolor; | ||
886 | |||
887 | /* Setup Color Key - FIX!!! */ | ||
888 | lcd->colorkey = win->mode_colorkey; | ||
889 | lcd->colorkeymsk = win->mode_colorkeymsk; | ||
890 | |||
891 | /* Setup HWCursor - FIX!!! Need to support this eventually */ | ||
892 | lcd->hwc.cursorctrl = 0; | ||
893 | lcd->hwc.cursorpos = 0; | ||
894 | lcd->hwc.cursorcolor0 = 0; | ||
895 | lcd->hwc.cursorcolor1 = 0; | ||
896 | lcd->hwc.cursorcolor2 = 0; | ||
897 | lcd->hwc.cursorcolor3 = 0; | ||
898 | |||
899 | |||
900 | #if 0 | ||
901 | #define D(X) printk("%25s: %08X\n", #X, X) | ||
902 | D(lcd->screen); | ||
903 | D(lcd->horztiming); | ||
904 | D(lcd->verttiming); | ||
905 | D(lcd->clkcontrol); | ||
906 | D(lcd->pwmdiv); | ||
907 | D(lcd->pwmhi); | ||
908 | D(lcd->outmask); | ||
909 | D(lcd->fifoctrl); | ||
910 | D(lcd->window[0].winctrl0); | ||
911 | D(lcd->window[0].winctrl1); | ||
912 | D(lcd->window[0].winctrl2); | ||
913 | D(lcd->window[0].winbuf0); | ||
914 | D(lcd->window[0].winbuf1); | ||
915 | D(lcd->window[0].winbufctrl); | ||
916 | D(lcd->window[1].winctrl0); | ||
917 | D(lcd->window[1].winctrl1); | ||
918 | D(lcd->window[1].winctrl2); | ||
919 | D(lcd->window[1].winbuf0); | ||
920 | D(lcd->window[1].winbuf1); | ||
921 | D(lcd->window[1].winbufctrl); | ||
922 | D(lcd->window[2].winctrl0); | ||
923 | D(lcd->window[2].winctrl1); | ||
924 | D(lcd->window[2].winctrl2); | ||
925 | D(lcd->window[2].winbuf0); | ||
926 | D(lcd->window[2].winbuf1); | ||
927 | D(lcd->window[2].winbufctrl); | ||
928 | D(lcd->window[3].winctrl0); | ||
929 | D(lcd->window[3].winctrl1); | ||
930 | D(lcd->window[3].winctrl2); | ||
931 | D(lcd->window[3].winbuf0); | ||
932 | D(lcd->window[3].winbuf1); | ||
933 | D(lcd->window[3].winbufctrl); | ||
934 | D(lcd->winenable); | ||
935 | D(lcd->intenable); | ||
936 | D(lcd->intstatus); | ||
937 | D(lcd->backcolor); | ||
938 | D(lcd->winenable); | ||
939 | D(lcd->colorkey); | ||
940 | D(lcd->colorkeymsk); | ||
941 | D(lcd->hwc.cursorctrl); | ||
942 | D(lcd->hwc.cursorpos); | ||
943 | D(lcd->hwc.cursorcolor0); | ||
944 | D(lcd->hwc.cursorcolor1); | ||
945 | D(lcd->hwc.cursorcolor2); | ||
946 | D(lcd->hwc.cursorcolor3); | ||
947 | #endif | ||
948 | } | ||
949 | |||
950 | static void au1200_setmode(struct au1200fb_device *fbdev) | ||
951 | { | ||
952 | int plane = fbdev->plane; | ||
953 | /* Window/plane setup */ | ||
954 | lcd->window[plane].winctrl1 = ( 0 | ||
955 | | LCD_WINCTRL1_PRI_N(plane) | ||
956 | | win->w[plane].mode_winctrl1 /* FRM,CCO,PO,PIPE */ | ||
957 | ) ; | ||
958 | |||
959 | au1200_setlocation(fbdev, plane, win->w[plane].xpos, win->w[plane].ypos); | ||
960 | |||
961 | lcd->window[plane].winctrl2 = ( 0 | ||
962 | | LCD_WINCTRL2_CKMODE_00 | ||
963 | | LCD_WINCTRL2_DBM | ||
964 | | LCD_WINCTRL2_BX_N( fbdev->fb_info.fix.line_length) | ||
965 | | LCD_WINCTRL2_SCX_1 | ||
966 | | LCD_WINCTRL2_SCY_1 | ||
967 | ) ; | ||
968 | lcd->winenable |= win->w[plane].mode_winenable; | ||
969 | au_sync(); | ||
970 | } | ||
971 | |||
972 | |||
973 | /* Inline helpers */ | ||
974 | |||
975 | /*#define panel_is_dual(panel) ((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/ | ||
976 | /*#define panel_is_active(panel)((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/ | ||
977 | |||
978 | #define panel_is_color(panel) ((panel->mode_screen & LCD_SCREEN_PT) <= LCD_SCREEN_PT_CDSTN) | ||
979 | |||
980 | /* Bitfields format supported by the controller. */ | ||
981 | static struct fb_bitfield rgb_bitfields[][4] = { | ||
982 | /* Red, Green, Blue, Transp */ | ||
983 | [LCD_WINCTRL1_FRM_16BPP655 >> 25] = | ||
984 | { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
985 | |||
986 | [LCD_WINCTRL1_FRM_16BPP565 >> 25] = | ||
987 | { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
988 | |||
989 | [LCD_WINCTRL1_FRM_16BPP556 >> 25] = | ||
990 | { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } }, | ||
991 | |||
992 | [LCD_WINCTRL1_FRM_16BPPI1555 >> 25] = | ||
993 | { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
994 | |||
995 | [LCD_WINCTRL1_FRM_16BPPI5551 >> 25] = | ||
996 | { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 0, 0 } }, | ||
997 | |||
998 | [LCD_WINCTRL1_FRM_16BPPA1555 >> 25] = | ||
999 | { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } }, | ||
1000 | |||
1001 | [LCD_WINCTRL1_FRM_16BPPA5551 >> 25] = | ||
1002 | { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } }, | ||
1003 | |||
1004 | [LCD_WINCTRL1_FRM_24BPP >> 25] = | ||
1005 | { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 0, 0, 0 } }, | ||
1006 | |||
1007 | [LCD_WINCTRL1_FRM_32BPP >> 25] = | ||
1008 | { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 24, 0, 0 } }, | ||
1009 | }; | ||
1010 | |||
1011 | /*-------------------------------------------------------------------------*/ | ||
1012 | |||
1013 | /* Helpers */ | ||
1014 | |||
1015 | static void au1200fb_update_fbinfo(struct fb_info *fbi) | ||
1016 | { | ||
1017 | /* FIX!!!! This also needs to take the window pixel format into account!!! */ | ||
1018 | |||
1019 | /* Update var-dependent FB info */ | ||
1020 | if (panel_is_color(panel)) { | ||
1021 | if (fbi->var.bits_per_pixel <= 8) { | ||
1022 | /* palettized */ | ||
1023 | fbi->fix.visual = FB_VISUAL_PSEUDOCOLOR; | ||
1024 | fbi->fix.line_length = fbi->var.xres_virtual / | ||
1025 | (8/fbi->var.bits_per_pixel); | ||
1026 | } else { | ||
1027 | /* non-palettized */ | ||
1028 | fbi->fix.visual = FB_VISUAL_TRUECOLOR; | ||
1029 | fbi->fix.line_length = fbi->var.xres_virtual * (fbi->var.bits_per_pixel / 8); | ||
1030 | } | ||
1031 | } else { | ||
1032 | /* mono FIX!!! mono 8 and 4 bits */ | ||
1033 | fbi->fix.visual = FB_VISUAL_MONO10; | ||
1034 | fbi->fix.line_length = fbi->var.xres_virtual / 8; | ||
1035 | } | ||
1036 | |||
1037 | fbi->screen_size = fbi->fix.line_length * fbi->var.yres_virtual; | ||
1038 | print_dbg("line length: %d\n", fbi->fix.line_length); | ||
1039 | print_dbg("bits_per_pixel: %d\n", fbi->var.bits_per_pixel); | ||
1040 | } | ||
1041 | |||
1042 | /*-------------------------------------------------------------------------*/ | ||
1043 | |||
1044 | /* AU1200 framebuffer driver */ | ||
1045 | |||
1046 | /* fb_check_var | ||
1047 | * Validate var settings with hardware restrictions and modify it if necessary | ||
1048 | */ | ||
1049 | static int au1200fb_fb_check_var(struct fb_var_screeninfo *var, | ||
1050 | struct fb_info *fbi) | ||
1051 | { | ||
1052 | struct au1200fb_device *fbdev = (struct au1200fb_device *)fbi; | ||
1053 | u32 pixclock; | ||
1054 | int screen_size, plane; | ||
1055 | |||
1056 | plane = fbdev->plane; | ||
1057 | |||
1058 | /* Make sure that the mode respect all LCD controller and | ||
1059 | * panel restrictions. */ | ||
1060 | var->xres = win->w[plane].xres; | ||
1061 | var->yres = win->w[plane].yres; | ||
1062 | |||
1063 | /* No need for virtual resolution support */ | ||
1064 | var->xres_virtual = var->xres; | ||
1065 | var->yres_virtual = var->yres; | ||
1066 | |||
1067 | var->bits_per_pixel = winbpp(win->w[plane].mode_winctrl1); | ||
1068 | |||
1069 | screen_size = var->xres_virtual * var->yres_virtual; | ||
1070 | if (var->bits_per_pixel > 8) screen_size *= (var->bits_per_pixel / 8); | ||
1071 | else screen_size /= (8/var->bits_per_pixel); | ||
1072 | |||
1073 | if (fbdev->fb_len < screen_size) | ||
1074 | return -EINVAL; /* Virtual screen is to big, abort */ | ||
1075 | |||
1076 | /* FIX!!!! what are the implicaitons of ignoring this for windows ??? */ | ||
1077 | /* The max LCD clock is fixed to 48MHz (value of AUX_CLK). The pixel | ||
1078 | * clock can only be obtain by dividing this value by an even integer. | ||
1079 | * Fallback to a slower pixel clock if necessary. */ | ||
1080 | pixclock = max((u32)(PICOS2KHZ(var->pixclock) * 1000), fbi->monspecs.dclkmin); | ||
1081 | pixclock = min(pixclock, min(fbi->monspecs.dclkmax, (u32)AU1200_LCD_MAX_CLK/2)); | ||
1082 | |||
1083 | if (AU1200_LCD_MAX_CLK % pixclock) { | ||
1084 | int diff = AU1200_LCD_MAX_CLK % pixclock; | ||
1085 | pixclock -= diff; | ||
1086 | } | ||
1087 | |||
1088 | var->pixclock = KHZ2PICOS(pixclock/1000); | ||
1089 | #if 0 | ||
1090 | if (!panel_is_active(panel)) { | ||
1091 | int pcd = AU1200_LCD_MAX_CLK / (pixclock * 2) - 1; | ||
1092 | |||
1093 | if (!panel_is_color(panel) | ||
1094 | && (panel->control_base & LCD_CONTROL_MPI) && (pcd < 3)) { | ||
1095 | /* STN 8bit mono panel support is up to 6MHz pixclock */ | ||
1096 | var->pixclock = KHZ2PICOS(6000); | ||
1097 | } else if (!pcd) { | ||
1098 | /* Other STN panel support is up to 12MHz */ | ||
1099 | var->pixclock = KHZ2PICOS(12000); | ||
1100 | } | ||
1101 | } | ||
1102 | #endif | ||
1103 | /* Set bitfield accordingly */ | ||
1104 | switch (var->bits_per_pixel) { | ||
1105 | case 16: | ||
1106 | { | ||
1107 | /* 16bpp True color. | ||
1108 | * These must be set to MATCH WINCTRL[FORM] */ | ||
1109 | int idx; | ||
1110 | idx = (win->w[0].mode_winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
1111 | var->red = rgb_bitfields[idx][0]; | ||
1112 | var->green = rgb_bitfields[idx][1]; | ||
1113 | var->blue = rgb_bitfields[idx][2]; | ||
1114 | var->transp = rgb_bitfields[idx][3]; | ||
1115 | break; | ||
1116 | } | ||
1117 | |||
1118 | case 32: | ||
1119 | { | ||
1120 | /* 32bpp True color. | ||
1121 | * These must be set to MATCH WINCTRL[FORM] */ | ||
1122 | int idx; | ||
1123 | idx = (win->w[0].mode_winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
1124 | var->red = rgb_bitfields[idx][0]; | ||
1125 | var->green = rgb_bitfields[idx][1]; | ||
1126 | var->blue = rgb_bitfields[idx][2]; | ||
1127 | var->transp = rgb_bitfields[idx][3]; | ||
1128 | break; | ||
1129 | } | ||
1130 | default: | ||
1131 | print_dbg("Unsupported depth %dbpp", var->bits_per_pixel); | ||
1132 | return -EINVAL; | ||
1133 | } | ||
1134 | |||
1135 | return 0; | ||
1136 | } | ||
1137 | |||
1138 | /* fb_set_par | ||
1139 | * Set hardware with var settings. This will enable the controller with a | ||
1140 | * specific mode, normally validated with the fb_check_var method | ||
1141 | */ | ||
1142 | static int au1200fb_fb_set_par(struct fb_info *fbi) | ||
1143 | { | ||
1144 | struct au1200fb_device *fbdev = (struct au1200fb_device *)fbi; | ||
1145 | |||
1146 | au1200fb_update_fbinfo(fbi); | ||
1147 | au1200_setmode(fbdev); | ||
1148 | |||
1149 | return 0; | ||
1150 | } | ||
1151 | |||
1152 | /* fb_setcolreg | ||
1153 | * Set color in LCD palette. | ||
1154 | */ | ||
1155 | static int au1200fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, | ||
1156 | unsigned blue, unsigned transp, struct fb_info *fbi) | ||
1157 | { | ||
1158 | volatile u32 *palette = lcd->palette; | ||
1159 | u32 value; | ||
1160 | |||
1161 | if (regno > (AU1200_LCD_NBR_PALETTE_ENTRIES - 1)) | ||
1162 | return -EINVAL; | ||
1163 | |||
1164 | if (fbi->var.grayscale) { | ||
1165 | /* Convert color to grayscale */ | ||
1166 | red = green = blue = | ||
1167 | (19595 * red + 38470 * green + 7471 * blue) >> 16; | ||
1168 | } | ||
1169 | |||
1170 | if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) { | ||
1171 | /* Place color in the pseudopalette */ | ||
1172 | if (regno > 16) | ||
1173 | return -EINVAL; | ||
1174 | |||
1175 | palette = (u32*) fbi->pseudo_palette; | ||
1176 | |||
1177 | red >>= (16 - fbi->var.red.length); | ||
1178 | green >>= (16 - fbi->var.green.length); | ||
1179 | blue >>= (16 - fbi->var.blue.length); | ||
1180 | |||
1181 | value = (red << fbi->var.red.offset) | | ||
1182 | (green << fbi->var.green.offset)| | ||
1183 | (blue << fbi->var.blue.offset); | ||
1184 | value &= 0xFFFF; | ||
1185 | |||
1186 | } else if (1 /*FIX!!! panel_is_active(fbdev->panel)*/) { | ||
1187 | /* COLOR TFT PALLETTIZED (use RGB 565) */ | ||
1188 | value = (red & 0xF800)|((green >> 5) & | ||
1189 | 0x07E0)|((blue >> 11) & 0x001F); | ||
1190 | value &= 0xFFFF; | ||
1191 | |||
1192 | } else if (0 /*panel_is_color(fbdev->panel)*/) { | ||
1193 | /* COLOR STN MODE */ | ||
1194 | value = 0x1234; | ||
1195 | value &= 0xFFF; | ||
1196 | } else { | ||
1197 | /* MONOCHROME MODE */ | ||
1198 | value = (green >> 12) & 0x000F; | ||
1199 | value &= 0xF; | ||
1200 | } | ||
1201 | |||
1202 | palette[regno] = value; | ||
1203 | |||
1204 | return 0; | ||
1205 | } | ||
1206 | |||
1207 | /* fb_blank | ||
1208 | * Blank the screen. Depending on the mode, the screen will be | ||
1209 | * activated with the backlight color, or desactivated | ||
1210 | */ | ||
1211 | static int au1200fb_fb_blank(int blank_mode, struct fb_info *fbi) | ||
1212 | { | ||
1213 | /* Short-circuit screen blanking */ | ||
1214 | if (noblanking) | ||
1215 | return 0; | ||
1216 | |||
1217 | switch (blank_mode) { | ||
1218 | |||
1219 | case FB_BLANK_UNBLANK: | ||
1220 | case FB_BLANK_NORMAL: | ||
1221 | /* printk("turn on panel\n"); */ | ||
1222 | au1200_setpanel(panel); | ||
1223 | break; | ||
1224 | case FB_BLANK_VSYNC_SUSPEND: | ||
1225 | case FB_BLANK_HSYNC_SUSPEND: | ||
1226 | case FB_BLANK_POWERDOWN: | ||
1227 | /* printk("turn off panel\n"); */ | ||
1228 | au1200_setpanel(NULL); | ||
1229 | break; | ||
1230 | default: | ||
1231 | break; | ||
1232 | |||
1233 | } | ||
1234 | |||
1235 | /* FB_BLANK_NORMAL is a soft blank */ | ||
1236 | return (blank_mode == FB_BLANK_NORMAL) ? -EINVAL : 0; | ||
1237 | } | ||
1238 | |||
1239 | /* fb_mmap | ||
1240 | * Map video memory in user space. We don't use the generic fb_mmap | ||
1241 | * method mainly to allow the use of the TLB streaming flag (CCA=6) | ||
1242 | */ | ||
1243 | static int au1200fb_fb_mmap(struct fb_info *info, struct vm_area_struct *vma) | ||
1244 | |||
1245 | { | ||
1246 | unsigned int len; | ||
1247 | unsigned long start=0, off; | ||
1248 | struct au1200fb_device *fbdev = (struct au1200fb_device *) info; | ||
1249 | |||
1250 | #ifdef CONFIG_PM | ||
1251 | au1xxx_pm_access(LCD_pm_dev); | ||
1252 | #endif | ||
1253 | |||
1254 | if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT)) { | ||
1255 | return -EINVAL; | ||
1256 | } | ||
1257 | |||
1258 | start = fbdev->fb_phys & PAGE_MASK; | ||
1259 | len = PAGE_ALIGN((start & ~PAGE_MASK) + fbdev->fb_len); | ||
1260 | |||
1261 | off = vma->vm_pgoff << PAGE_SHIFT; | ||
1262 | |||
1263 | if ((vma->vm_end - vma->vm_start + off) > len) { | ||
1264 | return -EINVAL; | ||
1265 | } | ||
1266 | |||
1267 | off += start; | ||
1268 | vma->vm_pgoff = off >> PAGE_SHIFT; | ||
1269 | |||
1270 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); | ||
1271 | pgprot_val(vma->vm_page_prot) |= _CACHE_MASK; /* CCA=7 */ | ||
1272 | |||
1273 | vma->vm_flags |= VM_IO; | ||
1274 | |||
1275 | return io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT, | ||
1276 | vma->vm_end - vma->vm_start, | ||
1277 | vma->vm_page_prot); | ||
1278 | |||
1279 | return 0; | ||
1280 | } | ||
1281 | |||
1282 | static void set_global(u_int cmd, struct au1200_lcd_global_regs_t *pdata) | ||
1283 | { | ||
1284 | |||
1285 | unsigned int hi1, divider; | ||
1286 | |||
1287 | /* SCREEN_SIZE: user cannot reset size, must switch panel choice */ | ||
1288 | |||
1289 | if (pdata->flags & SCREEN_BACKCOLOR) | ||
1290 | lcd->backcolor = pdata->backcolor; | ||
1291 | |||
1292 | if (pdata->flags & SCREEN_BRIGHTNESS) { | ||
1293 | |||
1294 | // limit brightness pwm duty to >= 30/1600 | ||
1295 | if (pdata->brightness < 30) { | ||
1296 | pdata->brightness = 30; | ||
1297 | } | ||
1298 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
1299 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
1300 | hi1 = (((pdata->brightness & 0xFF)+1) * divider >> 8); | ||
1301 | lcd->pwmhi &= 0xFFFF; | ||
1302 | lcd->pwmhi |= (hi1 << 16); | ||
1303 | } | ||
1304 | |||
1305 | if (pdata->flags & SCREEN_COLORKEY) | ||
1306 | lcd->colorkey = pdata->colorkey; | ||
1307 | |||
1308 | if (pdata->flags & SCREEN_MASK) | ||
1309 | lcd->colorkeymsk = pdata->mask; | ||
1310 | au_sync(); | ||
1311 | } | ||
1312 | |||
1313 | static void get_global(u_int cmd, struct au1200_lcd_global_regs_t *pdata) | ||
1314 | { | ||
1315 | unsigned int hi1, divider; | ||
1316 | |||
1317 | pdata->xsize = ((lcd->screen & LCD_SCREEN_SX) >> 19) + 1; | ||
1318 | pdata->ysize = ((lcd->screen & LCD_SCREEN_SY) >> 8) + 1; | ||
1319 | |||
1320 | pdata->backcolor = lcd->backcolor; | ||
1321 | pdata->colorkey = lcd->colorkey; | ||
1322 | pdata->mask = lcd->colorkeymsk; | ||
1323 | |||
1324 | // brightness | ||
1325 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
1326 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
1327 | pdata->brightness = ((hi1 << 8) / divider) - 1; | ||
1328 | au_sync(); | ||
1329 | } | ||
1330 | |||
1331 | static void set_window(unsigned int plane, | ||
1332 | struct au1200_lcd_window_regs_t *pdata) | ||
1333 | { | ||
1334 | unsigned int val, bpp; | ||
1335 | |||
1336 | /* Window control register 0 */ | ||
1337 | if (pdata->flags & WIN_POSITION) { | ||
1338 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_OX | | ||
1339 | LCD_WINCTRL0_OY); | ||
1340 | val |= ((pdata->xpos << 21) & LCD_WINCTRL0_OX); | ||
1341 | val |= ((pdata->ypos << 10) & LCD_WINCTRL0_OY); | ||
1342 | lcd->window[plane].winctrl0 = val; | ||
1343 | } | ||
1344 | if (pdata->flags & WIN_ALPHA_COLOR) { | ||
1345 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_A); | ||
1346 | val |= ((pdata->alpha_color << 2) & LCD_WINCTRL0_A); | ||
1347 | lcd->window[plane].winctrl0 = val; | ||
1348 | } | ||
1349 | if (pdata->flags & WIN_ALPHA_MODE) { | ||
1350 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_AEN); | ||
1351 | val |= ((pdata->alpha_mode << 1) & LCD_WINCTRL0_AEN); | ||
1352 | lcd->window[plane].winctrl0 = val; | ||
1353 | } | ||
1354 | |||
1355 | /* Window control register 1 */ | ||
1356 | if (pdata->flags & WIN_PRIORITY) { | ||
1357 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PRI); | ||
1358 | val |= ((pdata->priority << 30) & LCD_WINCTRL1_PRI); | ||
1359 | lcd->window[plane].winctrl1 = val; | ||
1360 | } | ||
1361 | if (pdata->flags & WIN_CHANNEL) { | ||
1362 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PIPE); | ||
1363 | val |= ((pdata->channel << 29) & LCD_WINCTRL1_PIPE); | ||
1364 | lcd->window[plane].winctrl1 = val; | ||
1365 | } | ||
1366 | if (pdata->flags & WIN_BUFFER_FORMAT) { | ||
1367 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_FRM); | ||
1368 | val |= ((pdata->buffer_format << 25) & LCD_WINCTRL1_FRM); | ||
1369 | lcd->window[plane].winctrl1 = val; | ||
1370 | } | ||
1371 | if (pdata->flags & WIN_COLOR_ORDER) { | ||
1372 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_CCO); | ||
1373 | val |= ((pdata->color_order << 24) & LCD_WINCTRL1_CCO); | ||
1374 | lcd->window[plane].winctrl1 = val; | ||
1375 | } | ||
1376 | if (pdata->flags & WIN_PIXEL_ORDER) { | ||
1377 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PO); | ||
1378 | val |= ((pdata->pixel_order << 22) & LCD_WINCTRL1_PO); | ||
1379 | lcd->window[plane].winctrl1 = val; | ||
1380 | } | ||
1381 | if (pdata->flags & WIN_SIZE) { | ||
1382 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_SZX | | ||
1383 | LCD_WINCTRL1_SZY); | ||
1384 | val |= (((pdata->xsize << 11) - 1) & LCD_WINCTRL1_SZX); | ||
1385 | val |= (((pdata->ysize) - 1) & LCD_WINCTRL1_SZY); | ||
1386 | lcd->window[plane].winctrl1 = val; | ||
1387 | /* program buffer line width */ | ||
1388 | bpp = winbpp(val) / 8; | ||
1389 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_BX); | ||
1390 | val |= (((pdata->xsize * bpp) << 8) & LCD_WINCTRL2_BX); | ||
1391 | lcd->window[plane].winctrl2 = val; | ||
1392 | } | ||
1393 | |||
1394 | /* Window control register 2 */ | ||
1395 | if (pdata->flags & WIN_COLORKEY_MODE) { | ||
1396 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_CKMODE); | ||
1397 | val |= ((pdata->colorkey_mode << 24) & LCD_WINCTRL2_CKMODE); | ||
1398 | lcd->window[plane].winctrl2 = val; | ||
1399 | } | ||
1400 | if (pdata->flags & WIN_DOUBLE_BUFFER_MODE) { | ||
1401 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_DBM); | ||
1402 | val |= ((pdata->double_buffer_mode << 23) & LCD_WINCTRL2_DBM); | ||
1403 | lcd->window[plane].winctrl2 = val; | ||
1404 | } | ||
1405 | if (pdata->flags & WIN_RAM_ARRAY_MODE) { | ||
1406 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_RAM); | ||
1407 | val |= ((pdata->ram_array_mode << 21) & LCD_WINCTRL2_RAM); | ||
1408 | lcd->window[plane].winctrl2 = val; | ||
1409 | } | ||
1410 | |||
1411 | /* Buffer line width programmed with WIN_SIZE */ | ||
1412 | |||
1413 | if (pdata->flags & WIN_BUFFER_SCALE) { | ||
1414 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_SCX | | ||
1415 | LCD_WINCTRL2_SCY); | ||
1416 | val |= ((pdata->xsize << 11) & LCD_WINCTRL2_SCX); | ||
1417 | val |= ((pdata->ysize) & LCD_WINCTRL2_SCY); | ||
1418 | lcd->window[plane].winctrl2 = val; | ||
1419 | } | ||
1420 | |||
1421 | if (pdata->flags & WIN_ENABLE) { | ||
1422 | val = lcd->winenable; | ||
1423 | val &= ~(1<<plane); | ||
1424 | val |= (pdata->enable & 1) << plane; | ||
1425 | lcd->winenable = val; | ||
1426 | } | ||
1427 | au_sync(); | ||
1428 | } | ||
1429 | |||
1430 | static void get_window(unsigned int plane, | ||
1431 | struct au1200_lcd_window_regs_t *pdata) | ||
1432 | { | ||
1433 | /* Window control register 0 */ | ||
1434 | pdata->xpos = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_OX) >> 21; | ||
1435 | pdata->ypos = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_OY) >> 10; | ||
1436 | pdata->alpha_color = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_A) >> 2; | ||
1437 | pdata->alpha_mode = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_AEN) >> 1; | ||
1438 | |||
1439 | /* Window control register 1 */ | ||
1440 | pdata->priority = (lcd->window[plane].winctrl1& LCD_WINCTRL1_PRI) >> 30; | ||
1441 | pdata->channel = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_PIPE) >> 29; | ||
1442 | pdata->buffer_format = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
1443 | pdata->color_order = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_CCO) >> 24; | ||
1444 | pdata->pixel_order = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_PO) >> 22; | ||
1445 | pdata->xsize = ((lcd->window[plane].winctrl1 & LCD_WINCTRL1_SZX) >> 11) + 1; | ||
1446 | pdata->ysize = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_SZY) + 1; | ||
1447 | |||
1448 | /* Window control register 2 */ | ||
1449 | pdata->colorkey_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_CKMODE) >> 24; | ||
1450 | pdata->double_buffer_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_DBM) >> 23; | ||
1451 | pdata->ram_array_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_RAM) >> 21; | ||
1452 | |||
1453 | pdata->enable = (lcd->winenable >> plane) & 1; | ||
1454 | au_sync(); | ||
1455 | } | ||
1456 | |||
1457 | static int au1200fb_ioctl(struct fb_info *info, unsigned int cmd, | ||
1458 | unsigned long arg) | ||
1459 | { | ||
1460 | int plane; | ||
1461 | int val; | ||
1462 | |||
1463 | #ifdef CONFIG_PM | ||
1464 | au1xxx_pm_access(LCD_pm_dev); | ||
1465 | #endif | ||
1466 | |||
1467 | plane = fbinfo2index(info); | ||
1468 | print_dbg("au1200fb: ioctl %d on plane %d\n", cmd, plane); | ||
1469 | |||
1470 | if (cmd == AU1200_LCD_FB_IOCTL) { | ||
1471 | struct au1200_lcd_iodata_t iodata; | ||
1472 | |||
1473 | if (copy_from_user(&iodata, (void __user *) arg, sizeof(iodata))) | ||
1474 | return -EFAULT; | ||
1475 | |||
1476 | print_dbg("FB IOCTL called\n"); | ||
1477 | |||
1478 | switch (iodata.subcmd) { | ||
1479 | case AU1200_LCD_SET_SCREEN: | ||
1480 | print_dbg("AU1200_LCD_SET_SCREEN\n"); | ||
1481 | set_global(cmd, &iodata.global); | ||
1482 | break; | ||
1483 | |||
1484 | case AU1200_LCD_GET_SCREEN: | ||
1485 | print_dbg("AU1200_LCD_GET_SCREEN\n"); | ||
1486 | get_global(cmd, &iodata.global); | ||
1487 | break; | ||
1488 | |||
1489 | case AU1200_LCD_SET_WINDOW: | ||
1490 | print_dbg("AU1200_LCD_SET_WINDOW\n"); | ||
1491 | set_window(plane, &iodata.window); | ||
1492 | break; | ||
1493 | |||
1494 | case AU1200_LCD_GET_WINDOW: | ||
1495 | print_dbg("AU1200_LCD_GET_WINDOW\n"); | ||
1496 | get_window(plane, &iodata.window); | ||
1497 | break; | ||
1498 | |||
1499 | case AU1200_LCD_SET_PANEL: | ||
1500 | print_dbg("AU1200_LCD_SET_PANEL\n"); | ||
1501 | if ((iodata.global.panel_choice >= 0) && | ||
1502 | (iodata.global.panel_choice < | ||
1503 | NUM_PANELS)) | ||
1504 | { | ||
1505 | struct panel_settings *newpanel; | ||
1506 | panel_index = iodata.global.panel_choice; | ||
1507 | newpanel = &known_lcd_panels[panel_index]; | ||
1508 | au1200_setpanel(newpanel); | ||
1509 | } | ||
1510 | break; | ||
1511 | |||
1512 | case AU1200_LCD_GET_PANEL: | ||
1513 | print_dbg("AU1200_LCD_GET_PANEL\n"); | ||
1514 | iodata.global.panel_choice = panel_index; | ||
1515 | break; | ||
1516 | |||
1517 | default: | ||
1518 | return -EINVAL; | ||
1519 | } | ||
1520 | |||
1521 | val = copy_to_user((void __user *) arg, &iodata, sizeof(iodata)); | ||
1522 | if (val) { | ||
1523 | print_dbg("error: could not copy %d bytes\n", val); | ||
1524 | return -EFAULT; | ||
1525 | } | ||
1526 | } | ||
1527 | |||
1528 | return 0; | ||
1529 | } | ||
1530 | |||
1531 | |||
1532 | static struct fb_ops au1200fb_fb_ops = { | ||
1533 | .owner = THIS_MODULE, | ||
1534 | .fb_check_var = au1200fb_fb_check_var, | ||
1535 | .fb_set_par = au1200fb_fb_set_par, | ||
1536 | .fb_setcolreg = au1200fb_fb_setcolreg, | ||
1537 | .fb_blank = au1200fb_fb_blank, | ||
1538 | .fb_fillrect = cfb_fillrect, | ||
1539 | .fb_copyarea = cfb_copyarea, | ||
1540 | .fb_imageblit = cfb_imageblit, | ||
1541 | .fb_sync = NULL, | ||
1542 | .fb_ioctl = au1200fb_ioctl, | ||
1543 | .fb_mmap = au1200fb_fb_mmap, | ||
1544 | }; | ||
1545 | |||
1546 | /*-------------------------------------------------------------------------*/ | ||
1547 | |||
1548 | static irqreturn_t au1200fb_handle_irq(int irq, void* dev_id, struct pt_regs *regs) | ||
1549 | { | ||
1550 | /* Nothing to do for now, just clear any pending interrupt */ | ||
1551 | lcd->intstatus = lcd->intstatus; | ||
1552 | au_sync(); | ||
1553 | |||
1554 | return IRQ_HANDLED; | ||
1555 | } | ||
1556 | |||
1557 | /*-------------------------------------------------------------------------*/ | ||
1558 | |||
1559 | /* AU1200 LCD device probe helpers */ | ||
1560 | |||
1561 | static int au1200fb_init_fbinfo(struct au1200fb_device *fbdev) | ||
1562 | { | ||
1563 | struct fb_info *fbi = &fbdev->fb_info; | ||
1564 | int bpp; | ||
1565 | |||
1566 | memset(fbi, 0, sizeof(struct fb_info)); | ||
1567 | fbi->fbops = &au1200fb_fb_ops; | ||
1568 | |||
1569 | bpp = winbpp(win->w[fbdev->plane].mode_winctrl1); | ||
1570 | |||
1571 | /* Copy monitor specs from panel data */ | ||
1572 | /* fixme: we're setting up LCD controller windows, so these dont give a | ||
1573 | damn as to what the monitor specs are (the panel itself does, but that | ||
1574 | isnt done here...so maybe need a generic catchall monitor setting??? */ | ||
1575 | memcpy(&fbi->monspecs, &panel->monspecs, sizeof(struct fb_monspecs)); | ||
1576 | |||
1577 | /* We first try the user mode passed in argument. If that failed, | ||
1578 | * or if no one has been specified, we default to the first mode of the | ||
1579 | * panel list. Note that after this call, var data will be set */ | ||
1580 | if (!fb_find_mode(&fbi->var, | ||
1581 | fbi, | ||
1582 | NULL, /* drv_info.opt_mode, */ | ||
1583 | fbi->monspecs.modedb, | ||
1584 | fbi->monspecs.modedb_len, | ||
1585 | fbi->monspecs.modedb, | ||
1586 | bpp)) { | ||
1587 | |||
1588 | print_err("Cannot find valid mode for panel %s", panel->name); | ||
1589 | return -EFAULT; | ||
1590 | } | ||
1591 | |||
1592 | fbi->pseudo_palette = kmalloc(sizeof(u32) * 16, GFP_KERNEL); | ||
1593 | if (!fbi->pseudo_palette) { | ||
1594 | return -ENOMEM; | ||
1595 | } | ||
1596 | memset(fbi->pseudo_palette, 0, sizeof(u32) * 16); | ||
1597 | |||
1598 | if (fb_alloc_cmap(&fbi->cmap, AU1200_LCD_NBR_PALETTE_ENTRIES, 0) < 0) { | ||
1599 | print_err("Fail to allocate colormap (%d entries)", | ||
1600 | AU1200_LCD_NBR_PALETTE_ENTRIES); | ||
1601 | kfree(fbi->pseudo_palette); | ||
1602 | return -EFAULT; | ||
1603 | } | ||
1604 | |||
1605 | strncpy(fbi->fix.id, "AU1200", sizeof(fbi->fix.id)); | ||
1606 | fbi->fix.smem_start = fbdev->fb_phys; | ||
1607 | fbi->fix.smem_len = fbdev->fb_len; | ||
1608 | fbi->fix.type = FB_TYPE_PACKED_PIXELS; | ||
1609 | fbi->fix.xpanstep = 0; | ||
1610 | fbi->fix.ypanstep = 0; | ||
1611 | fbi->fix.mmio_start = 0; | ||
1612 | fbi->fix.mmio_len = 0; | ||
1613 | fbi->fix.accel = FB_ACCEL_NONE; | ||
1614 | |||
1615 | fbi->screen_base = (char __iomem *) fbdev->fb_mem; | ||
1616 | |||
1617 | au1200fb_update_fbinfo(fbi); | ||
1618 | |||
1619 | return 0; | ||
1620 | } | ||
1621 | |||
1622 | /*-------------------------------------------------------------------------*/ | ||
1623 | |||
1624 | /* AU1200 LCD controller device driver */ | ||
1625 | |||
1626 | static int au1200fb_drv_probe(struct device *dev) | ||
1627 | { | ||
1628 | struct au1200fb_device *fbdev; | ||
1629 | unsigned long page; | ||
1630 | int bpp, plane, ret; | ||
1631 | |||
1632 | if (!dev) | ||
1633 | return -EINVAL; | ||
1634 | |||
1635 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) { | ||
1636 | bpp = winbpp(win->w[plane].mode_winctrl1); | ||
1637 | if (win->w[plane].xres == 0) | ||
1638 | win->w[plane].xres = panel->Xres; | ||
1639 | if (win->w[plane].yres == 0) | ||
1640 | win->w[plane].yres = panel->Yres; | ||
1641 | |||
1642 | fbdev = &_au1200fb_devices[plane]; | ||
1643 | memset(fbdev, 0, sizeof(struct au1200fb_device)); | ||
1644 | fbdev->plane = plane; | ||
1645 | |||
1646 | /* Allocate the framebuffer to the maximum screen size */ | ||
1647 | fbdev->fb_len = (win->w[plane].xres * win->w[plane].yres * bpp) / 8; | ||
1648 | |||
1649 | fbdev->fb_mem = dma_alloc_noncoherent(dev, | ||
1650 | PAGE_ALIGN(fbdev->fb_len), | ||
1651 | &fbdev->fb_phys, GFP_KERNEL); | ||
1652 | if (!fbdev->fb_mem) { | ||
1653 | print_err("fail to allocate frambuffer (size: %dK))", | ||
1654 | fbdev->fb_len / 1024); | ||
1655 | return -ENOMEM; | ||
1656 | } | ||
1657 | |||
1658 | /* | ||
1659 | * Set page reserved so that mmap will work. This is necessary | ||
1660 | * since we'll be remapping normal memory. | ||
1661 | */ | ||
1662 | for (page = (unsigned long)fbdev->fb_phys; | ||
1663 | page < PAGE_ALIGN((unsigned long)fbdev->fb_phys + | ||
1664 | fbdev->fb_len); | ||
1665 | page += PAGE_SIZE) { | ||
1666 | SetPageReserved(pfn_to_page(page >> PAGE_SHIFT)); /* LCD DMA is NOT coherent on Au1200 */ | ||
1667 | } | ||
1668 | print_dbg("Framebuffer memory map at %p", fbdev->fb_mem); | ||
1669 | print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024); | ||
1670 | |||
1671 | /* Init FB data */ | ||
1672 | if ((ret = au1200fb_init_fbinfo(fbdev)) < 0) | ||
1673 | goto failed; | ||
1674 | |||
1675 | /* Register new framebuffer */ | ||
1676 | if ((ret = register_framebuffer(&fbdev->fb_info)) < 0) { | ||
1677 | print_err("cannot register new framebuffer"); | ||
1678 | goto failed; | ||
1679 | } | ||
1680 | |||
1681 | au1200fb_fb_set_par(&fbdev->fb_info); | ||
1682 | |||
1683 | #if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO) | ||
1684 | if (plane == 0) | ||
1685 | if (fb_prepare_logo(&fbdev->fb_info, FB_ROTATE_UR)) { | ||
1686 | /* Start display and show logo on boot */ | ||
1687 | fb_set_cmap(&fbdev->fb_info.cmap, | ||
1688 | &fbdev->fb_info); | ||
1689 | |||
1690 | fb_show_logo(&fbdev->fb_info, FB_ROTATE_UR); | ||
1691 | } | ||
1692 | #endif | ||
1693 | } | ||
1694 | |||
1695 | /* Now hook interrupt too */ | ||
1696 | if ((ret = request_irq(AU1200_LCD_INT, au1200fb_handle_irq, | ||
1697 | SA_INTERRUPT | SA_SHIRQ, "lcd", (void *)dev)) < 0) { | ||
1698 | print_err("fail to request interrupt line %d (err: %d)", | ||
1699 | AU1200_LCD_INT, ret); | ||
1700 | goto failed; | ||
1701 | } | ||
1702 | |||
1703 | return 0; | ||
1704 | |||
1705 | failed: | ||
1706 | /* NOTE: This only does the current plane/window that failed; others are still active */ | ||
1707 | if (fbdev->fb_mem) | ||
1708 | dma_free_noncoherent(dev, PAGE_ALIGN(fbdev->fb_len), | ||
1709 | fbdev->fb_mem, fbdev->fb_phys); | ||
1710 | if (fbdev->fb_info.cmap.len != 0) | ||
1711 | fb_dealloc_cmap(&fbdev->fb_info.cmap); | ||
1712 | if (fbdev->fb_info.pseudo_palette) | ||
1713 | kfree(fbdev->fb_info.pseudo_palette); | ||
1714 | if (plane == 0) | ||
1715 | free_irq(AU1200_LCD_INT, (void*)dev); | ||
1716 | return ret; | ||
1717 | } | ||
1718 | |||
1719 | static int au1200fb_drv_remove(struct device *dev) | ||
1720 | { | ||
1721 | struct au1200fb_device *fbdev; | ||
1722 | int plane; | ||
1723 | |||
1724 | if (!dev) | ||
1725 | return -ENODEV; | ||
1726 | |||
1727 | /* Turn off the panel */ | ||
1728 | au1200_setpanel(NULL); | ||
1729 | |||
1730 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) | ||
1731 | { | ||
1732 | fbdev = &_au1200fb_devices[plane]; | ||
1733 | |||
1734 | /* Clean up all probe data */ | ||
1735 | unregister_framebuffer(&fbdev->fb_info); | ||
1736 | if (fbdev->fb_mem) | ||
1737 | dma_free_noncoherent(dev, PAGE_ALIGN(fbdev->fb_len), | ||
1738 | fbdev->fb_mem, fbdev->fb_phys); | ||
1739 | if (fbdev->fb_info.cmap.len != 0) | ||
1740 | fb_dealloc_cmap(&fbdev->fb_info.cmap); | ||
1741 | if (fbdev->fb_info.pseudo_palette) | ||
1742 | kfree(fbdev->fb_info.pseudo_palette); | ||
1743 | } | ||
1744 | |||
1745 | free_irq(AU1200_LCD_INT, (void *)dev); | ||
1746 | |||
1747 | return 0; | ||
1748 | } | ||
1749 | |||
1750 | #ifdef CONFIG_PM | ||
1751 | static int au1200fb_drv_suspend(struct device *dev, u32 state, u32 level) | ||
1752 | { | ||
1753 | /* TODO */ | ||
1754 | return 0; | ||
1755 | } | ||
1756 | |||
1757 | static int au1200fb_drv_resume(struct device *dev, u32 level) | ||
1758 | { | ||
1759 | /* TODO */ | ||
1760 | return 0; | ||
1761 | } | ||
1762 | #endif /* CONFIG_PM */ | ||
1763 | |||
1764 | static struct device_driver au1200fb_driver = { | ||
1765 | .name = "au1200-lcd", | ||
1766 | .bus = &platform_bus_type, | ||
1767 | .probe = au1200fb_drv_probe, | ||
1768 | .remove = au1200fb_drv_remove, | ||
1769 | #ifdef CONFIG_PM | ||
1770 | .suspend = au1200fb_drv_suspend, | ||
1771 | .resume = au1200fb_drv_resume, | ||
1772 | #endif | ||
1773 | }; | ||
1774 | |||
1775 | /*-------------------------------------------------------------------------*/ | ||
1776 | |||
1777 | /* Kernel driver */ | ||
1778 | |||
1779 | static void au1200fb_setup(void) | ||
1780 | { | ||
1781 | char* options = NULL; | ||
1782 | char* this_opt; | ||
1783 | int num_panels = ARRAY_SIZE(known_lcd_panels); | ||
1784 | int panel_idx = -1; | ||
1785 | |||
1786 | fb_get_options(DRIVER_NAME, &options); | ||
1787 | |||
1788 | if (options) { | ||
1789 | while ((this_opt = strsep(&options,",")) != NULL) { | ||
1790 | /* Panel option - can be panel name, | ||
1791 | * "bs" for board-switch, or number/index */ | ||
1792 | if (!strncmp(this_opt, "panel:", 6)) { | ||
1793 | int i; | ||
1794 | long int li; | ||
1795 | char *endptr; | ||
1796 | this_opt += 6; | ||
1797 | /* First check for index, which allows | ||
1798 | * to short circuit this mess */ | ||
1799 | li = simple_strtol(this_opt, &endptr, 0); | ||
1800 | if (*endptr == '\0') { | ||
1801 | panel_idx = (int)li; | ||
1802 | } | ||
1803 | else if (strcmp(this_opt, "bs") == 0) { | ||
1804 | extern int board_au1200fb_panel(void); | ||
1805 | panel_idx = board_au1200fb_panel(); | ||
1806 | } | ||
1807 | |||
1808 | else | ||
1809 | for (i = 0; i < num_panels; i++) { | ||
1810 | if (!strcmp(this_opt, known_lcd_panels[i].name)) { | ||
1811 | panel_idx = i; | ||
1812 | break; | ||
1813 | } | ||
1814 | } | ||
1815 | |||
1816 | if ((panel_idx < 0) || (panel_idx >= num_panels)) { | ||
1817 | print_warn("Panel %s not supported!", this_opt); | ||
1818 | } | ||
1819 | else | ||
1820 | panel_index = panel_idx; | ||
1821 | } | ||
1822 | |||
1823 | else if (strncmp(this_opt, "nohwcursor", 10) == 0) { | ||
1824 | nohwcursor = 1; | ||
1825 | } | ||
1826 | |||
1827 | /* Unsupported option */ | ||
1828 | else { | ||
1829 | print_warn("Unsupported option \"%s\"", this_opt); | ||
1830 | } | ||
1831 | } | ||
1832 | } | ||
1833 | } | ||
1834 | |||
1835 | #ifdef CONFIG_PM | ||
1836 | static int au1200fb_pm_callback(au1xxx_power_dev_t *dev, | ||
1837 | au1xxx_request_t request, void *data) { | ||
1838 | int retval = -1; | ||
1839 | unsigned int d = 0; | ||
1840 | unsigned int brightness = 0; | ||
1841 | |||
1842 | if (request == AU1XXX_PM_SLEEP) { | ||
1843 | board_au1200fb_panel_shutdown(); | ||
1844 | } | ||
1845 | else if (request == AU1XXX_PM_WAKEUP) { | ||
1846 | if(dev->prev_state == SLEEP_STATE) | ||
1847 | { | ||
1848 | int plane; | ||
1849 | au1200_setpanel(panel); | ||
1850 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) { | ||
1851 | struct au1200fb_device *fbdev; | ||
1852 | fbdev = &_au1200fb_devices[plane]; | ||
1853 | au1200fb_fb_set_par(&fbdev->fb_info); | ||
1854 | } | ||
1855 | } | ||
1856 | |||
1857 | d = *((unsigned int*)data); | ||
1858 | if(d <=10) brightness = 26; | ||
1859 | else if(d<=20) brightness = 51; | ||
1860 | else if(d<=30) brightness = 77; | ||
1861 | else if(d<=40) brightness = 102; | ||
1862 | else if(d<=50) brightness = 128; | ||
1863 | else if(d<=60) brightness = 153; | ||
1864 | else if(d<=70) brightness = 179; | ||
1865 | else if(d<=80) brightness = 204; | ||
1866 | else if(d<=90) brightness = 230; | ||
1867 | else brightness = 255; | ||
1868 | set_brightness(brightness); | ||
1869 | } else if (request == AU1XXX_PM_GETSTATUS) { | ||
1870 | return dev->cur_state; | ||
1871 | } else if (request == AU1XXX_PM_ACCESS) { | ||
1872 | if (dev->cur_state != SLEEP_STATE) | ||
1873 | return retval; | ||
1874 | else { | ||
1875 | au1200_setpanel(panel); | ||
1876 | } | ||
1877 | } else if (request == AU1XXX_PM_IDLE) { | ||
1878 | } else if (request == AU1XXX_PM_CLEANUP) { | ||
1879 | } | ||
1880 | |||
1881 | return retval; | ||
1882 | } | ||
1883 | #endif | ||
1884 | |||
1885 | static int __init au1200fb_init(void) | ||
1886 | { | ||
1887 | print_info("" DRIVER_DESC ""); | ||
1888 | |||
1889 | /* Setup driver with options */ | ||
1890 | au1200fb_setup(); | ||
1891 | |||
1892 | /* Point to the panel selected */ | ||
1893 | panel = &known_lcd_panels[panel_index]; | ||
1894 | win = &windows[window_index]; | ||
1895 | |||
1896 | printk(DRIVER_NAME ": Panel %d %s\n", panel_index, panel->name); | ||
1897 | printk(DRIVER_NAME ": Win %d %s\n", window_index, win->name); | ||
1898 | |||
1899 | /* Kickstart the panel, the framebuffers/windows come soon enough */ | ||
1900 | au1200_setpanel(panel); | ||
1901 | |||
1902 | #ifdef CONFIG_PM | ||
1903 | LCD_pm_dev = new_au1xxx_power_device("LCD", &au1200fb_pm_callback, NULL); | ||
1904 | if ( LCD_pm_dev == NULL) | ||
1905 | printk(KERN_INFO "Unable to create a power management device entry for the au1200fb.\n"); | ||
1906 | else | ||
1907 | printk(KERN_INFO "Power management device entry for the au1200fb loaded.\n"); | ||
1908 | #endif | ||
1909 | |||
1910 | return driver_register(&au1200fb_driver); | ||
1911 | } | ||
1912 | |||
1913 | static void __exit au1200fb_cleanup(void) | ||
1914 | { | ||
1915 | driver_unregister(&au1200fb_driver); | ||
1916 | } | ||
1917 | |||
1918 | module_init(au1200fb_init); | ||
1919 | module_exit(au1200fb_cleanup); | ||
1920 | |||
1921 | MODULE_DESCRIPTION(DRIVER_DESC); | ||
1922 | MODULE_LICENSE("GPL"); | ||
1923 | /* | ||
1924 | * BRIEF MODULE DESCRIPTION | ||
1925 | * Au1200 LCD Driver. | ||
1926 | * | ||
1927 | * Copyright 2004-2005 AMD | ||
1928 | * Author: AMD | ||
1929 | * | ||
1930 | * Based on: | ||
1931 | * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device | ||
1932 | * Created 28 Dec 1997 by Geert Uytterhoeven | ||
1933 | * | ||
1934 | * This program is free software; you can redistribute it and/or modify it | ||
1935 | * under the terms of the GNU General Public License as published by the | ||
1936 | * Free Software Foundation; either version 2 of the License, or (at your | ||
1937 | * option) any later version. | ||
1938 | * | ||
1939 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
1940 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
1941 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
1942 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
1943 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
1944 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
1945 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
1946 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
1947 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
1948 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
1949 | * | ||
1950 | * You should have received a copy of the GNU General Public License along | ||
1951 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
1952 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
1953 | */ | ||
1954 | |||
1955 | #include <linux/module.h> | ||
1956 | #include <linux/platform_device.h> | ||
1957 | #include <linux/kernel.h> | ||
1958 | #include <linux/errno.h> | ||
1959 | #include <linux/string.h> | ||
1960 | #include <linux/mm.h> | ||
1961 | #include <linux/fb.h> | ||
1962 | #include <linux/init.h> | ||
1963 | #include <linux/interrupt.h> | ||
1964 | #include <linux/ctype.h> | ||
1965 | #include <linux/dma-mapping.h> | ||
1966 | |||
1967 | #include <asm/mach-au1x00/au1000.h> | ||
1968 | #include "au1200fb.h" | ||
1969 | |||
1970 | #ifdef CONFIG_PM | ||
1971 | #include <asm/mach-au1x00/au1xxx_pm.h> | ||
1972 | #endif | ||
1973 | |||
1974 | #ifndef CONFIG_FB_AU1200_DEVS | ||
1975 | #define CONFIG_FB_AU1200_DEVS 4 | ||
1976 | #endif | ||
1977 | |||
1978 | #define DRIVER_NAME "au1200fb" | ||
1979 | #define DRIVER_DESC "LCD controller driver for AU1200 processors" | ||
1980 | |||
1981 | #define DEBUG 1 | ||
1982 | |||
1983 | #define print_err(f, arg...) printk(KERN_ERR DRIVER_NAME ": " f "\n", ## arg) | ||
1984 | #define print_warn(f, arg...) printk(KERN_WARNING DRIVER_NAME ": " f "\n", ## arg) | ||
1985 | #define print_info(f, arg...) printk(KERN_INFO DRIVER_NAME ": " f "\n", ## arg) | ||
1986 | |||
1987 | #if DEBUG | ||
1988 | #define print_dbg(f, arg...) printk(KERN_DEBUG __FILE__ ": " f "\n", ## arg) | ||
1989 | #else | ||
1990 | #define print_dbg(f, arg...) do {} while (0) | ||
1991 | #endif | ||
1992 | |||
1993 | |||
1994 | #define AU1200_LCD_FB_IOCTL 0x46FF | ||
1995 | |||
1996 | #define AU1200_LCD_SET_SCREEN 1 | ||
1997 | #define AU1200_LCD_GET_SCREEN 2 | ||
1998 | #define AU1200_LCD_SET_WINDOW 3 | ||
1999 | #define AU1200_LCD_GET_WINDOW 4 | ||
2000 | #define AU1200_LCD_SET_PANEL 5 | ||
2001 | #define AU1200_LCD_GET_PANEL 6 | ||
2002 | |||
2003 | #define SCREEN_SIZE (1<< 1) | ||
2004 | #define SCREEN_BACKCOLOR (1<< 2) | ||
2005 | #define SCREEN_BRIGHTNESS (1<< 3) | ||
2006 | #define SCREEN_COLORKEY (1<< 4) | ||
2007 | #define SCREEN_MASK (1<< 5) | ||
2008 | |||
2009 | struct au1200_lcd_global_regs_t { | ||
2010 | unsigned int flags; | ||
2011 | unsigned int xsize; | ||
2012 | unsigned int ysize; | ||
2013 | unsigned int backcolor; | ||
2014 | unsigned int brightness; | ||
2015 | unsigned int colorkey; | ||
2016 | unsigned int mask; | ||
2017 | unsigned int panel_choice; | ||
2018 | char panel_desc[80]; | ||
2019 | |||
2020 | }; | ||
2021 | |||
2022 | #define WIN_POSITION (1<< 0) | ||
2023 | #define WIN_ALPHA_COLOR (1<< 1) | ||
2024 | #define WIN_ALPHA_MODE (1<< 2) | ||
2025 | #define WIN_PRIORITY (1<< 3) | ||
2026 | #define WIN_CHANNEL (1<< 4) | ||
2027 | #define WIN_BUFFER_FORMAT (1<< 5) | ||
2028 | #define WIN_COLOR_ORDER (1<< 6) | ||
2029 | #define WIN_PIXEL_ORDER (1<< 7) | ||
2030 | #define WIN_SIZE (1<< 8) | ||
2031 | #define WIN_COLORKEY_MODE (1<< 9) | ||
2032 | #define WIN_DOUBLE_BUFFER_MODE (1<< 10) | ||
2033 | #define WIN_RAM_ARRAY_MODE (1<< 11) | ||
2034 | #define WIN_BUFFER_SCALE (1<< 12) | ||
2035 | #define WIN_ENABLE (1<< 13) | ||
2036 | |||
2037 | struct au1200_lcd_window_regs_t { | ||
2038 | unsigned int flags; | ||
2039 | unsigned int xpos; | ||
2040 | unsigned int ypos; | ||
2041 | unsigned int alpha_color; | ||
2042 | unsigned int alpha_mode; | ||
2043 | unsigned int priority; | ||
2044 | unsigned int channel; | ||
2045 | unsigned int buffer_format; | ||
2046 | unsigned int color_order; | ||
2047 | unsigned int pixel_order; | ||
2048 | unsigned int xsize; | ||
2049 | unsigned int ysize; | ||
2050 | unsigned int colorkey_mode; | ||
2051 | unsigned int double_buffer_mode; | ||
2052 | unsigned int ram_array_mode; | ||
2053 | unsigned int xscale; | ||
2054 | unsigned int yscale; | ||
2055 | unsigned int enable; | ||
2056 | }; | ||
2057 | |||
2058 | |||
2059 | struct au1200_lcd_iodata_t { | ||
2060 | unsigned int subcmd; | ||
2061 | struct au1200_lcd_global_regs_t global; | ||
2062 | struct au1200_lcd_window_regs_t window; | ||
2063 | }; | ||
2064 | |||
2065 | #if defined(__BIG_ENDIAN) | ||
2066 | #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_11 | ||
2067 | #else | ||
2068 | #define LCD_CONTROL_DEFAULT_PO LCD_CONTROL_PO_00 | ||
2069 | #endif | ||
2070 | #define LCD_CONTROL_DEFAULT_SBPPF LCD_CONTROL_SBPPF_565 | ||
2071 | |||
2072 | /* Private, per-framebuffer management information (independent of the panel itself) */ | ||
2073 | struct au1200fb_device { | ||
2074 | struct fb_info fb_info; /* FB driver info record */ | ||
2075 | |||
2076 | int plane; | ||
2077 | unsigned char* fb_mem; /* FrameBuffer memory map */ | ||
2078 | unsigned int fb_len; | ||
2079 | dma_addr_t fb_phys; | ||
2080 | }; | ||
2081 | |||
2082 | static struct au1200fb_device _au1200fb_devices[CONFIG_FB_AU1200_DEVS]; | ||
2083 | /********************************************************************/ | ||
2084 | |||
2085 | /* LCD controller restrictions */ | ||
2086 | #define AU1200_LCD_MAX_XRES 1280 | ||
2087 | #define AU1200_LCD_MAX_YRES 1024 | ||
2088 | #define AU1200_LCD_MAX_BPP 32 | ||
2089 | #define AU1200_LCD_MAX_CLK 96000000 /* fixme: this needs to go away ? */ | ||
2090 | #define AU1200_LCD_NBR_PALETTE_ENTRIES 256 | ||
2091 | |||
2092 | /* Default number of visible screen buffer to allocate */ | ||
2093 | #define AU1200FB_NBR_VIDEO_BUFFERS 1 | ||
2094 | |||
2095 | /********************************************************************/ | ||
2096 | |||
2097 | static struct au1200_lcd *lcd = (struct au1200_lcd *) AU1200_LCD_ADDR; | ||
2098 | static int window_index = 2; /* default is zero */ | ||
2099 | static int panel_index = 2; /* default is zero */ | ||
2100 | static struct window_settings *win; | ||
2101 | static struct panel_settings *panel; | ||
2102 | static int noblanking = 1; | ||
2103 | static int nohwcursor = 0; | ||
2104 | |||
2105 | struct window_settings { | ||
2106 | unsigned char name[64]; | ||
2107 | uint32 mode_backcolor; | ||
2108 | uint32 mode_colorkey; | ||
2109 | uint32 mode_colorkeymsk; | ||
2110 | struct { | ||
2111 | int xres; | ||
2112 | int yres; | ||
2113 | int xpos; | ||
2114 | int ypos; | ||
2115 | uint32 mode_winctrl1; /* winctrl1[FRM,CCO,PO,PIPE] */ | ||
2116 | uint32 mode_winenable; | ||
2117 | } w[4]; | ||
2118 | }; | ||
2119 | |||
2120 | #if defined(__BIG_ENDIAN) | ||
2121 | #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_00 | ||
2122 | #else | ||
2123 | #define LCD_WINCTRL1_PO_16BPP LCD_WINCTRL1_PO_01 | ||
2124 | #endif | ||
2125 | |||
2126 | extern int board_au1200fb_panel_init (void); | ||
2127 | extern int board_au1200fb_panel_shutdown (void); | ||
2128 | |||
2129 | #ifdef CONFIG_PM | ||
2130 | int au1200fb_pm_callback(au1xxx_power_dev_t *dev, | ||
2131 | au1xxx_request_t request, void *data); | ||
2132 | au1xxx_power_dev_t *LCD_pm_dev; | ||
2133 | #endif | ||
2134 | |||
2135 | /* | ||
2136 | * Default window configurations | ||
2137 | */ | ||
2138 | static struct window_settings windows[] = { | ||
2139 | { /* Index 0 */ | ||
2140 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
2141 | /* mode_backcolor */ 0x006600ff, | ||
2142 | /* mode_colorkey,msk*/ 0, 0, | ||
2143 | { | ||
2144 | { | ||
2145 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2146 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2147 | LCD_WINCTRL1_PO_16BPP, | ||
2148 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
2149 | }, | ||
2150 | { | ||
2151 | /* xres, yres, xpos, ypos */ 100, 100, 100, 100, | ||
2152 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2153 | LCD_WINCTRL1_PO_16BPP | | ||
2154 | LCD_WINCTRL1_PIPE, | ||
2155 | /* mode_winenable*/ LCD_WINENABLE_WEN1, | ||
2156 | }, | ||
2157 | { | ||
2158 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2159 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2160 | LCD_WINCTRL1_PO_16BPP, | ||
2161 | /* mode_winenable*/ 0, | ||
2162 | }, | ||
2163 | { | ||
2164 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2165 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2166 | LCD_WINCTRL1_PO_16BPP | | ||
2167 | LCD_WINCTRL1_PIPE, | ||
2168 | /* mode_winenable*/ 0, | ||
2169 | }, | ||
2170 | }, | ||
2171 | }, | ||
2172 | |||
2173 | { /* Index 1 */ | ||
2174 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
2175 | /* mode_backcolor */ 0x006600ff, | ||
2176 | /* mode_colorkey,msk*/ 0, 0, | ||
2177 | { | ||
2178 | { | ||
2179 | /* xres, yres, xpos, ypos */ 320, 240, 5, 5, | ||
2180 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_24BPP | | ||
2181 | LCD_WINCTRL1_PO_00, | ||
2182 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
2183 | }, | ||
2184 | { | ||
2185 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2186 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | ||
2187 | | LCD_WINCTRL1_PO_16BPP, | ||
2188 | /* mode_winenable*/ 0, | ||
2189 | }, | ||
2190 | { | ||
2191 | /* xres, yres, xpos, ypos */ 100, 100, 0, 0, | ||
2192 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2193 | LCD_WINCTRL1_PO_16BPP | | ||
2194 | LCD_WINCTRL1_PIPE, | ||
2195 | /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/, | ||
2196 | }, | ||
2197 | { | ||
2198 | /* xres, yres, xpos, ypos */ 200, 25, 0, 0, | ||
2199 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2200 | LCD_WINCTRL1_PO_16BPP | | ||
2201 | LCD_WINCTRL1_PIPE, | ||
2202 | /* mode_winenable*/ 0, | ||
2203 | }, | ||
2204 | }, | ||
2205 | }, | ||
2206 | { /* Index 2 */ | ||
2207 | "0-FS gfx, 1-video, 2-ovly gfx, 3-ovly gfx", | ||
2208 | /* mode_backcolor */ 0x006600ff, | ||
2209 | /* mode_colorkey,msk*/ 0, 0, | ||
2210 | { | ||
2211 | { | ||
2212 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2213 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2214 | LCD_WINCTRL1_PO_16BPP, | ||
2215 | /* mode_winenable*/ LCD_WINENABLE_WEN0, | ||
2216 | }, | ||
2217 | { | ||
2218 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2219 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2220 | LCD_WINCTRL1_PO_16BPP, | ||
2221 | /* mode_winenable*/ 0, | ||
2222 | }, | ||
2223 | { | ||
2224 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2225 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_32BPP | | ||
2226 | LCD_WINCTRL1_PO_00|LCD_WINCTRL1_PIPE, | ||
2227 | /* mode_winenable*/ 0/*LCD_WINENABLE_WEN2*/, | ||
2228 | }, | ||
2229 | { | ||
2230 | /* xres, yres, xpos, ypos */ 0, 0, 0, 0, | ||
2231 | /* mode_winctrl1 */ LCD_WINCTRL1_FRM_16BPP565 | | ||
2232 | LCD_WINCTRL1_PO_16BPP | | ||
2233 | LCD_WINCTRL1_PIPE, | ||
2234 | /* mode_winenable*/ 0, | ||
2235 | }, | ||
2236 | }, | ||
2237 | }, | ||
2238 | /* Need VGA 640 @ 24bpp, @ 32bpp */ | ||
2239 | /* Need VGA 800 @ 24bpp, @ 32bpp */ | ||
2240 | /* Need VGA 1024 @ 24bpp, @ 32bpp */ | ||
2241 | }; | ||
2242 | |||
2243 | /* | ||
2244 | * Controller configurations for various panels. | ||
2245 | */ | ||
2246 | |||
2247 | struct panel_settings | ||
2248 | { | ||
2249 | const char name[25]; /* Full name <vendor>_<model> */ | ||
2250 | |||
2251 | struct fb_monspecs monspecs; /* FB monitor specs */ | ||
2252 | |||
2253 | /* panel timings */ | ||
2254 | uint32 mode_screen; | ||
2255 | uint32 mode_horztiming; | ||
2256 | uint32 mode_verttiming; | ||
2257 | uint32 mode_clkcontrol; | ||
2258 | uint32 mode_pwmdiv; | ||
2259 | uint32 mode_pwmhi; | ||
2260 | uint32 mode_outmask; | ||
2261 | uint32 mode_fifoctrl; | ||
2262 | uint32 mode_toyclksrc; | ||
2263 | uint32 mode_backlight; | ||
2264 | uint32 mode_auxpll; | ||
2265 | int (*device_init)(void); | ||
2266 | int (*device_shutdown)(void); | ||
2267 | #define Xres min_xres | ||
2268 | #define Yres min_yres | ||
2269 | u32 min_xres; /* Minimum horizontal resolution */ | ||
2270 | u32 max_xres; /* Maximum horizontal resolution */ | ||
2271 | u32 min_yres; /* Minimum vertical resolution */ | ||
2272 | u32 max_yres; /* Maximum vertical resolution */ | ||
2273 | }; | ||
2274 | |||
2275 | /********************************************************************/ | ||
2276 | /* fixme: Maybe a modedb for the CRT ? otherwise panels should be as-is */ | ||
2277 | |||
2278 | /* List of panels known to work with the AU1200 LCD controller. | ||
2279 | * To add a new panel, enter the same specifications as the | ||
2280 | * Generic_TFT one, and MAKE SURE that it doesn't conflicts | ||
2281 | * with the controller restrictions. Restrictions are: | ||
2282 | * | ||
2283 | * STN color panels: max_bpp <= 12 | ||
2284 | * STN mono panels: max_bpp <= 4 | ||
2285 | * TFT panels: max_bpp <= 16 | ||
2286 | * max_xres <= 800 | ||
2287 | * max_yres <= 600 | ||
2288 | */ | ||
2289 | static struct panel_settings known_lcd_panels[] = | ||
2290 | { | ||
2291 | [0] = { /* QVGA 320x240 H:33.3kHz V:110Hz */ | ||
2292 | .name = "QVGA_320x240", | ||
2293 | .monspecs = { | ||
2294 | .modedb = NULL, | ||
2295 | .modedb_len = 0, | ||
2296 | .hfmin = 30000, | ||
2297 | .hfmax = 70000, | ||
2298 | .vfmin = 60, | ||
2299 | .vfmax = 60, | ||
2300 | .dclkmin = 6000000, | ||
2301 | .dclkmax = 28000000, | ||
2302 | .input = FB_DISP_RGB, | ||
2303 | }, | ||
2304 | .mode_screen = LCD_SCREEN_SX_N(320) | | ||
2305 | LCD_SCREEN_SY_N(240), | ||
2306 | .mode_horztiming = 0x00c4623b, | ||
2307 | .mode_verttiming = 0x00502814, | ||
2308 | .mode_clkcontrol = 0x00020002, /* /4=24Mhz */ | ||
2309 | .mode_pwmdiv = 0x00000000, | ||
2310 | .mode_pwmhi = 0x00000000, | ||
2311 | .mode_outmask = 0x00FFFFFF, | ||
2312 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2313 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2314 | .mode_backlight = 0x00000000, | ||
2315 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2316 | .device_init = NULL, | ||
2317 | .device_shutdown = NULL, | ||
2318 | 320, 320, | ||
2319 | 240, 240, | ||
2320 | }, | ||
2321 | |||
2322 | [1] = { /* VGA 640x480 H:30.3kHz V:58Hz */ | ||
2323 | .name = "VGA_640x480", | ||
2324 | .monspecs = { | ||
2325 | .modedb = NULL, | ||
2326 | .modedb_len = 0, | ||
2327 | .hfmin = 30000, | ||
2328 | .hfmax = 70000, | ||
2329 | .vfmin = 60, | ||
2330 | .vfmax = 60, | ||
2331 | .dclkmin = 6000000, | ||
2332 | .dclkmax = 28000000, | ||
2333 | .input = FB_DISP_RGB, | ||
2334 | }, | ||
2335 | .mode_screen = 0x13f9df80, | ||
2336 | .mode_horztiming = 0x003c5859, | ||
2337 | .mode_verttiming = 0x00741201, | ||
2338 | .mode_clkcontrol = 0x00020001, /* /4=24Mhz */ | ||
2339 | .mode_pwmdiv = 0x00000000, | ||
2340 | .mode_pwmhi = 0x00000000, | ||
2341 | .mode_outmask = 0x00FFFFFF, | ||
2342 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2343 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2344 | .mode_backlight = 0x00000000, | ||
2345 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2346 | .device_init = NULL, | ||
2347 | .device_shutdown = NULL, | ||
2348 | 640, 480, | ||
2349 | 640, 480, | ||
2350 | }, | ||
2351 | |||
2352 | [2] = { /* SVGA 800x600 H:46.1kHz V:69Hz */ | ||
2353 | .name = "SVGA_800x600", | ||
2354 | .monspecs = { | ||
2355 | .modedb = NULL, | ||
2356 | .modedb_len = 0, | ||
2357 | .hfmin = 30000, | ||
2358 | .hfmax = 70000, | ||
2359 | .vfmin = 60, | ||
2360 | .vfmax = 60, | ||
2361 | .dclkmin = 6000000, | ||
2362 | .dclkmax = 28000000, | ||
2363 | .input = FB_DISP_RGB, | ||
2364 | }, | ||
2365 | .mode_screen = 0x18fa5780, | ||
2366 | .mode_horztiming = 0x00dc7e77, | ||
2367 | .mode_verttiming = 0x00584805, | ||
2368 | .mode_clkcontrol = 0x00020000, /* /2=48Mhz */ | ||
2369 | .mode_pwmdiv = 0x00000000, | ||
2370 | .mode_pwmhi = 0x00000000, | ||
2371 | .mode_outmask = 0x00FFFFFF, | ||
2372 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2373 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2374 | .mode_backlight = 0x00000000, | ||
2375 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2376 | .device_init = NULL, | ||
2377 | .device_shutdown = NULL, | ||
2378 | 800, 800, | ||
2379 | 600, 600, | ||
2380 | }, | ||
2381 | |||
2382 | [3] = { /* XVGA 1024x768 H:56.2kHz V:70Hz */ | ||
2383 | .name = "XVGA_1024x768", | ||
2384 | .monspecs = { | ||
2385 | .modedb = NULL, | ||
2386 | .modedb_len = 0, | ||
2387 | .hfmin = 30000, | ||
2388 | .hfmax = 70000, | ||
2389 | .vfmin = 60, | ||
2390 | .vfmax = 60, | ||
2391 | .dclkmin = 6000000, | ||
2392 | .dclkmax = 28000000, | ||
2393 | .input = FB_DISP_RGB, | ||
2394 | }, | ||
2395 | .mode_screen = 0x1ffaff80, | ||
2396 | .mode_horztiming = 0x007d0e57, | ||
2397 | .mode_verttiming = 0x00740a01, | ||
2398 | .mode_clkcontrol = 0x000A0000, /* /1 */ | ||
2399 | .mode_pwmdiv = 0x00000000, | ||
2400 | .mode_pwmhi = 0x00000000, | ||
2401 | .mode_outmask = 0x00FFFFFF, | ||
2402 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2403 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2404 | .mode_backlight = 0x00000000, | ||
2405 | .mode_auxpll = 6, /* 72MHz AUXPLL */ | ||
2406 | .device_init = NULL, | ||
2407 | .device_shutdown = NULL, | ||
2408 | 1024, 1024, | ||
2409 | 768, 768, | ||
2410 | }, | ||
2411 | |||
2412 | [4] = { /* XVGA XVGA 1280x1024 H:68.5kHz V:65Hz */ | ||
2413 | .name = "XVGA_1280x1024", | ||
2414 | .monspecs = { | ||
2415 | .modedb = NULL, | ||
2416 | .modedb_len = 0, | ||
2417 | .hfmin = 30000, | ||
2418 | .hfmax = 70000, | ||
2419 | .vfmin = 60, | ||
2420 | .vfmax = 60, | ||
2421 | .dclkmin = 6000000, | ||
2422 | .dclkmax = 28000000, | ||
2423 | .input = FB_DISP_RGB, | ||
2424 | }, | ||
2425 | .mode_screen = 0x27fbff80, | ||
2426 | .mode_horztiming = 0x00cdb2c7, | ||
2427 | .mode_verttiming = 0x00600002, | ||
2428 | .mode_clkcontrol = 0x000A0000, /* /1 */ | ||
2429 | .mode_pwmdiv = 0x00000000, | ||
2430 | .mode_pwmhi = 0x00000000, | ||
2431 | .mode_outmask = 0x00FFFFFF, | ||
2432 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2433 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2434 | .mode_backlight = 0x00000000, | ||
2435 | .mode_auxpll = 10, /* 120MHz AUXPLL */ | ||
2436 | .device_init = NULL, | ||
2437 | .device_shutdown = NULL, | ||
2438 | 1280, 1280, | ||
2439 | 1024, 1024, | ||
2440 | }, | ||
2441 | |||
2442 | [5] = { /* Samsung 1024x768 TFT */ | ||
2443 | .name = "Samsung_1024x768_TFT", | ||
2444 | .monspecs = { | ||
2445 | .modedb = NULL, | ||
2446 | .modedb_len = 0, | ||
2447 | .hfmin = 30000, | ||
2448 | .hfmax = 70000, | ||
2449 | .vfmin = 60, | ||
2450 | .vfmax = 60, | ||
2451 | .dclkmin = 6000000, | ||
2452 | .dclkmax = 28000000, | ||
2453 | .input = FB_DISP_RGB, | ||
2454 | }, | ||
2455 | .mode_screen = 0x1ffaff80, | ||
2456 | .mode_horztiming = 0x018cc677, | ||
2457 | .mode_verttiming = 0x00241217, | ||
2458 | .mode_clkcontrol = 0x00000000, /* SCB 0x1 /4=24Mhz */ | ||
2459 | .mode_pwmdiv = 0x8000063f, /* SCB 0x0 */ | ||
2460 | .mode_pwmhi = 0x03400000, /* SCB 0x0 */ | ||
2461 | .mode_outmask = 0x00FFFFFF, | ||
2462 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2463 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2464 | .mode_backlight = 0x00000000, | ||
2465 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2466 | .device_init = board_au1200fb_panel_init, | ||
2467 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
2468 | 1024, 1024, | ||
2469 | 768, 768, | ||
2470 | }, | ||
2471 | |||
2472 | [6] = { /* Toshiba 640x480 TFT */ | ||
2473 | .name = "Toshiba_640x480_TFT", | ||
2474 | .monspecs = { | ||
2475 | .modedb = NULL, | ||
2476 | .modedb_len = 0, | ||
2477 | .hfmin = 30000, | ||
2478 | .hfmax = 70000, | ||
2479 | .vfmin = 60, | ||
2480 | .vfmax = 60, | ||
2481 | .dclkmin = 6000000, | ||
2482 | .dclkmax = 28000000, | ||
2483 | .input = FB_DISP_RGB, | ||
2484 | }, | ||
2485 | .mode_screen = LCD_SCREEN_SX_N(640) | | ||
2486 | LCD_SCREEN_SY_N(480), | ||
2487 | .mode_horztiming = LCD_HORZTIMING_HPW_N(96) | | ||
2488 | LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(51), | ||
2489 | .mode_verttiming = LCD_VERTTIMING_VPW_N(2) | | ||
2490 | LCD_VERTTIMING_VND1_N(11) | LCD_VERTTIMING_VND2_N(32), | ||
2491 | .mode_clkcontrol = 0x00000000, /* /4=24Mhz */ | ||
2492 | .mode_pwmdiv = 0x8000063f, | ||
2493 | .mode_pwmhi = 0x03400000, | ||
2494 | .mode_outmask = 0x00fcfcfc, | ||
2495 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2496 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2497 | .mode_backlight = 0x00000000, | ||
2498 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2499 | .device_init = board_au1200fb_panel_init, | ||
2500 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
2501 | 640, 480, | ||
2502 | 640, 480, | ||
2503 | }, | ||
2504 | |||
2505 | [7] = { /* Sharp 320x240 TFT */ | ||
2506 | .name = "Sharp_320x240_TFT", | ||
2507 | .monspecs = { | ||
2508 | .modedb = NULL, | ||
2509 | .modedb_len = 0, | ||
2510 | .hfmin = 12500, | ||
2511 | .hfmax = 20000, | ||
2512 | .vfmin = 38, | ||
2513 | .vfmax = 81, | ||
2514 | .dclkmin = 4500000, | ||
2515 | .dclkmax = 6800000, | ||
2516 | .input = FB_DISP_RGB, | ||
2517 | }, | ||
2518 | .mode_screen = LCD_SCREEN_SX_N(320) | | ||
2519 | LCD_SCREEN_SY_N(240), | ||
2520 | .mode_horztiming = LCD_HORZTIMING_HPW_N(60) | | ||
2521 | LCD_HORZTIMING_HND1_N(13) | LCD_HORZTIMING_HND2_N(2), | ||
2522 | .mode_verttiming = LCD_VERTTIMING_VPW_N(2) | | ||
2523 | LCD_VERTTIMING_VND1_N(2) | LCD_VERTTIMING_VND2_N(5), | ||
2524 | .mode_clkcontrol = LCD_CLKCONTROL_PCD_N(7), /*16=6Mhz*/ | ||
2525 | .mode_pwmdiv = 0x8000063f, | ||
2526 | .mode_pwmhi = 0x03400000, | ||
2527 | .mode_outmask = 0x00fcfcfc, | ||
2528 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2529 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2530 | .mode_backlight = 0x00000000, | ||
2531 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2532 | .device_init = board_au1200fb_panel_init, | ||
2533 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
2534 | 320, 320, | ||
2535 | 240, 240, | ||
2536 | }, | ||
2537 | |||
2538 | [8] = { /* Toppoly TD070WGCB2 7" 856x480 TFT */ | ||
2539 | .name = "Toppoly_TD070WGCB2", | ||
2540 | .monspecs = { | ||
2541 | .modedb = NULL, | ||
2542 | .modedb_len = 0, | ||
2543 | .hfmin = 30000, | ||
2544 | .hfmax = 70000, | ||
2545 | .vfmin = 60, | ||
2546 | .vfmax = 60, | ||
2547 | .dclkmin = 6000000, | ||
2548 | .dclkmax = 28000000, | ||
2549 | .input = FB_DISP_RGB, | ||
2550 | }, | ||
2551 | .mode_screen = LCD_SCREEN_SX_N(856) | | ||
2552 | LCD_SCREEN_SY_N(480), | ||
2553 | .mode_horztiming = LCD_HORZTIMING_HND2_N(43) | | ||
2554 | LCD_HORZTIMING_HND1_N(43) | LCD_HORZTIMING_HPW_N(114), | ||
2555 | .mode_verttiming = LCD_VERTTIMING_VND2_N(20) | | ||
2556 | LCD_VERTTIMING_VND1_N(21) | LCD_VERTTIMING_VPW_N(4), | ||
2557 | .mode_clkcontrol = 0x00020001, /* /4=24Mhz */ | ||
2558 | .mode_pwmdiv = 0x8000063f, | ||
2559 | .mode_pwmhi = 0x03400000, | ||
2560 | .mode_outmask = 0x00fcfcfc, | ||
2561 | .mode_fifoctrl = 0x2f2f2f2f, | ||
2562 | .mode_toyclksrc = 0x00000004, /* AUXPLL directly */ | ||
2563 | .mode_backlight = 0x00000000, | ||
2564 | .mode_auxpll = 8, /* 96MHz AUXPLL */ | ||
2565 | .device_init = board_au1200fb_panel_init, | ||
2566 | .device_shutdown = board_au1200fb_panel_shutdown, | ||
2567 | 856, 856, | ||
2568 | 480, 480, | ||
2569 | }, | ||
2570 | }; | ||
2571 | |||
2572 | #define NUM_PANELS (ARRAY_SIZE(known_lcd_panels)) | ||
2573 | |||
2574 | /********************************************************************/ | ||
2575 | |||
2576 | #ifdef CONFIG_PM | ||
2577 | static int set_brightness(unsigned int brightness) | ||
2578 | { | ||
2579 | unsigned int hi1, divider; | ||
2580 | |||
2581 | /* limit brightness pwm duty to >= 30/1600 */ | ||
2582 | if (brightness < 30) { | ||
2583 | brightness = 30; | ||
2584 | } | ||
2585 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
2586 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
2587 | hi1 = (((brightness & 0xFF) + 1) * divider >> 8); | ||
2588 | lcd->pwmhi &= 0xFFFF; | ||
2589 | lcd->pwmhi |= (hi1 << 16); | ||
2590 | |||
2591 | return brightness; | ||
2592 | } | ||
2593 | #endif /* CONFIG_PM */ | ||
2594 | |||
2595 | static int winbpp (unsigned int winctrl1) | ||
2596 | { | ||
2597 | int bits = 0; | ||
2598 | |||
2599 | /* how many bits are needed for each pixel format */ | ||
2600 | switch (winctrl1 & LCD_WINCTRL1_FRM) { | ||
2601 | case LCD_WINCTRL1_FRM_1BPP: | ||
2602 | bits = 1; | ||
2603 | break; | ||
2604 | case LCD_WINCTRL1_FRM_2BPP: | ||
2605 | bits = 2; | ||
2606 | break; | ||
2607 | case LCD_WINCTRL1_FRM_4BPP: | ||
2608 | bits = 4; | ||
2609 | break; | ||
2610 | case LCD_WINCTRL1_FRM_8BPP: | ||
2611 | bits = 8; | ||
2612 | break; | ||
2613 | case LCD_WINCTRL1_FRM_12BPP: | ||
2614 | case LCD_WINCTRL1_FRM_16BPP655: | ||
2615 | case LCD_WINCTRL1_FRM_16BPP565: | ||
2616 | case LCD_WINCTRL1_FRM_16BPP556: | ||
2617 | case LCD_WINCTRL1_FRM_16BPPI1555: | ||
2618 | case LCD_WINCTRL1_FRM_16BPPI5551: | ||
2619 | case LCD_WINCTRL1_FRM_16BPPA1555: | ||
2620 | case LCD_WINCTRL1_FRM_16BPPA5551: | ||
2621 | bits = 16; | ||
2622 | break; | ||
2623 | case LCD_WINCTRL1_FRM_24BPP: | ||
2624 | case LCD_WINCTRL1_FRM_32BPP: | ||
2625 | bits = 32; | ||
2626 | break; | ||
2627 | } | ||
2628 | |||
2629 | return bits; | ||
2630 | } | ||
2631 | |||
2632 | static int fbinfo2index (struct fb_info *fb_info) | ||
2633 | { | ||
2634 | int i; | ||
2635 | |||
2636 | for (i = 0; i < CONFIG_FB_AU1200_DEVS; ++i) { | ||
2637 | if (fb_info == (struct fb_info *)(&_au1200fb_devices[i].fb_info)) | ||
2638 | return i; | ||
2639 | } | ||
2640 | printk("au1200fb: ERROR: fbinfo2index failed!\n"); | ||
2641 | return -1; | ||
2642 | } | ||
2643 | |||
2644 | static int au1200_setlocation (struct au1200fb_device *fbdev, int plane, | ||
2645 | int xpos, int ypos) | ||
2646 | { | ||
2647 | uint32 winctrl0, winctrl1, winenable, fb_offset = 0; | ||
2648 | int xsz, ysz; | ||
2649 | |||
2650 | /* FIX!!! NOT CHECKING FOR COMPLETE OFFSCREEN YET */ | ||
2651 | |||
2652 | winctrl0 = lcd->window[plane].winctrl0; | ||
2653 | winctrl1 = lcd->window[plane].winctrl1; | ||
2654 | winctrl0 &= (LCD_WINCTRL0_A | LCD_WINCTRL0_AEN); | ||
2655 | winctrl1 &= ~(LCD_WINCTRL1_SZX | LCD_WINCTRL1_SZY); | ||
2656 | |||
2657 | /* Check for off-screen adjustments */ | ||
2658 | xsz = win->w[plane].xres; | ||
2659 | ysz = win->w[plane].yres; | ||
2660 | if ((xpos + win->w[plane].xres) > panel->Xres) { | ||
2661 | /* Off-screen to the right */ | ||
2662 | xsz = panel->Xres - xpos; /* off by 1 ??? */ | ||
2663 | /*printk("off screen right\n");*/ | ||
2664 | } | ||
2665 | |||
2666 | if ((ypos + win->w[plane].yres) > panel->Yres) { | ||
2667 | /* Off-screen to the bottom */ | ||
2668 | ysz = panel->Yres - ypos; /* off by 1 ??? */ | ||
2669 | /*printk("off screen bottom\n");*/ | ||
2670 | } | ||
2671 | |||
2672 | if (xpos < 0) { | ||
2673 | /* Off-screen to the left */ | ||
2674 | xsz = win->w[plane].xres + xpos; | ||
2675 | fb_offset += (((0 - xpos) * winbpp(lcd->window[plane].winctrl1))/8); | ||
2676 | xpos = 0; | ||
2677 | /*printk("off screen left\n");*/ | ||
2678 | } | ||
2679 | |||
2680 | if (ypos < 0) { | ||
2681 | /* Off-screen to the top */ | ||
2682 | ysz = win->w[plane].yres + ypos; | ||
2683 | /* fixme: fb_offset += ((0-ypos)*fb_pars[plane].line_length); */ | ||
2684 | ypos = 0; | ||
2685 | /*printk("off screen top\n");*/ | ||
2686 | } | ||
2687 | |||
2688 | /* record settings */ | ||
2689 | win->w[plane].xpos = xpos; | ||
2690 | win->w[plane].ypos = ypos; | ||
2691 | |||
2692 | xsz -= 1; | ||
2693 | ysz -= 1; | ||
2694 | winctrl0 |= (xpos << 21); | ||
2695 | winctrl0 |= (ypos << 10); | ||
2696 | winctrl1 |= (xsz << 11); | ||
2697 | winctrl1 |= (ysz << 0); | ||
2698 | |||
2699 | /* Disable the window while making changes, then restore WINEN */ | ||
2700 | winenable = lcd->winenable & (1 << plane); | ||
2701 | au_sync(); | ||
2702 | lcd->winenable &= ~(1 << plane); | ||
2703 | lcd->window[plane].winctrl0 = winctrl0; | ||
2704 | lcd->window[plane].winctrl1 = winctrl1; | ||
2705 | lcd->window[plane].winbuf0 = | ||
2706 | lcd->window[plane].winbuf1 = fbdev->fb_phys; | ||
2707 | lcd->window[plane].winbufctrl = 0; /* select winbuf0 */ | ||
2708 | lcd->winenable |= winenable; | ||
2709 | au_sync(); | ||
2710 | |||
2711 | return 0; | ||
2712 | } | ||
2713 | |||
2714 | static void au1200_setpanel (struct panel_settings *newpanel) | ||
2715 | { | ||
2716 | /* | ||
2717 | * Perform global setup/init of LCD controller | ||
2718 | */ | ||
2719 | uint32 winenable; | ||
2720 | |||
2721 | /* Make sure all windows disabled */ | ||
2722 | winenable = lcd->winenable; | ||
2723 | lcd->winenable = 0; | ||
2724 | au_sync(); | ||
2725 | /* | ||
2726 | * Ensure everything is disabled before reconfiguring | ||
2727 | */ | ||
2728 | if (lcd->screen & LCD_SCREEN_SEN) { | ||
2729 | /* Wait for vertical sync period */ | ||
2730 | lcd->intstatus = LCD_INT_SS; | ||
2731 | while ((lcd->intstatus & LCD_INT_SS) == 0) { | ||
2732 | au_sync(); | ||
2733 | } | ||
2734 | |||
2735 | lcd->screen &= ~LCD_SCREEN_SEN; /*disable the controller*/ | ||
2736 | |||
2737 | do { | ||
2738 | lcd->intstatus = lcd->intstatus; /*clear interrupts*/ | ||
2739 | au_sync(); | ||
2740 | /*wait for controller to shut down*/ | ||
2741 | } while ((lcd->intstatus & LCD_INT_SD) == 0); | ||
2742 | |||
2743 | /* Call shutdown of current panel (if up) */ | ||
2744 | /* this must occur last, because if an external clock is driving | ||
2745 | the controller, the clock cannot be turned off before first | ||
2746 | shutting down the controller. | ||
2747 | */ | ||
2748 | if (panel->device_shutdown != NULL) | ||
2749 | panel->device_shutdown(); | ||
2750 | } | ||
2751 | |||
2752 | /* Newpanel == NULL indicates a shutdown operation only */ | ||
2753 | if (newpanel == NULL) | ||
2754 | return; | ||
2755 | |||
2756 | panel = newpanel; | ||
2757 | |||
2758 | printk("Panel(%s), %dx%d\n", panel->name, panel->Xres, panel->Yres); | ||
2759 | |||
2760 | /* | ||
2761 | * Setup clocking if internal LCD clock source (assumes sys_auxpll valid) | ||
2762 | */ | ||
2763 | if (!(panel->mode_clkcontrol & LCD_CLKCONTROL_EXT)) | ||
2764 | { | ||
2765 | uint32 sys_clksrc; | ||
2766 | au_writel(panel->mode_auxpll, SYS_AUXPLL); | ||
2767 | sys_clksrc = au_readl(SYS_CLKSRC) & ~0x0000001f; | ||
2768 | sys_clksrc |= panel->mode_toyclksrc; | ||
2769 | au_writel(sys_clksrc, SYS_CLKSRC); | ||
2770 | } | ||
2771 | |||
2772 | /* | ||
2773 | * Configure panel timings | ||
2774 | */ | ||
2775 | lcd->screen = panel->mode_screen; | ||
2776 | lcd->horztiming = panel->mode_horztiming; | ||
2777 | lcd->verttiming = panel->mode_verttiming; | ||
2778 | lcd->clkcontrol = panel->mode_clkcontrol; | ||
2779 | lcd->pwmdiv = panel->mode_pwmdiv; | ||
2780 | lcd->pwmhi = panel->mode_pwmhi; | ||
2781 | lcd->outmask = panel->mode_outmask; | ||
2782 | lcd->fifoctrl = panel->mode_fifoctrl; | ||
2783 | au_sync(); | ||
2784 | |||
2785 | /* fixme: Check window settings to make sure still valid | ||
2786 | * for new geometry */ | ||
2787 | #if 0 | ||
2788 | au1200_setlocation(fbdev, 0, win->w[0].xpos, win->w[0].ypos); | ||
2789 | au1200_setlocation(fbdev, 1, win->w[1].xpos, win->w[1].ypos); | ||
2790 | au1200_setlocation(fbdev, 2, win->w[2].xpos, win->w[2].ypos); | ||
2791 | au1200_setlocation(fbdev, 3, win->w[3].xpos, win->w[3].ypos); | ||
2792 | #endif | ||
2793 | lcd->winenable = winenable; | ||
2794 | |||
2795 | /* | ||
2796 | * Re-enable screen now that it is configured | ||
2797 | */ | ||
2798 | lcd->screen |= LCD_SCREEN_SEN; | ||
2799 | au_sync(); | ||
2800 | |||
2801 | /* Call init of panel */ | ||
2802 | if (panel->device_init != NULL) panel->device_init(); | ||
2803 | |||
2804 | /* FIX!!!! not appropriate on panel change!!! Global setup/init */ | ||
2805 | lcd->intenable = 0; | ||
2806 | lcd->intstatus = ~0; | ||
2807 | lcd->backcolor = win->mode_backcolor; | ||
2808 | |||
2809 | /* Setup Color Key - FIX!!! */ | ||
2810 | lcd->colorkey = win->mode_colorkey; | ||
2811 | lcd->colorkeymsk = win->mode_colorkeymsk; | ||
2812 | |||
2813 | /* Setup HWCursor - FIX!!! Need to support this eventually */ | ||
2814 | lcd->hwc.cursorctrl = 0; | ||
2815 | lcd->hwc.cursorpos = 0; | ||
2816 | lcd->hwc.cursorcolor0 = 0; | ||
2817 | lcd->hwc.cursorcolor1 = 0; | ||
2818 | lcd->hwc.cursorcolor2 = 0; | ||
2819 | lcd->hwc.cursorcolor3 = 0; | ||
2820 | |||
2821 | |||
2822 | #if 0 | ||
2823 | #define D(X) printk("%25s: %08X\n", #X, X) | ||
2824 | D(lcd->screen); | ||
2825 | D(lcd->horztiming); | ||
2826 | D(lcd->verttiming); | ||
2827 | D(lcd->clkcontrol); | ||
2828 | D(lcd->pwmdiv); | ||
2829 | D(lcd->pwmhi); | ||
2830 | D(lcd->outmask); | ||
2831 | D(lcd->fifoctrl); | ||
2832 | D(lcd->window[0].winctrl0); | ||
2833 | D(lcd->window[0].winctrl1); | ||
2834 | D(lcd->window[0].winctrl2); | ||
2835 | D(lcd->window[0].winbuf0); | ||
2836 | D(lcd->window[0].winbuf1); | ||
2837 | D(lcd->window[0].winbufctrl); | ||
2838 | D(lcd->window[1].winctrl0); | ||
2839 | D(lcd->window[1].winctrl1); | ||
2840 | D(lcd->window[1].winctrl2); | ||
2841 | D(lcd->window[1].winbuf0); | ||
2842 | D(lcd->window[1].winbuf1); | ||
2843 | D(lcd->window[1].winbufctrl); | ||
2844 | D(lcd->window[2].winctrl0); | ||
2845 | D(lcd->window[2].winctrl1); | ||
2846 | D(lcd->window[2].winctrl2); | ||
2847 | D(lcd->window[2].winbuf0); | ||
2848 | D(lcd->window[2].winbuf1); | ||
2849 | D(lcd->window[2].winbufctrl); | ||
2850 | D(lcd->window[3].winctrl0); | ||
2851 | D(lcd->window[3].winctrl1); | ||
2852 | D(lcd->window[3].winctrl2); | ||
2853 | D(lcd->window[3].winbuf0); | ||
2854 | D(lcd->window[3].winbuf1); | ||
2855 | D(lcd->window[3].winbufctrl); | ||
2856 | D(lcd->winenable); | ||
2857 | D(lcd->intenable); | ||
2858 | D(lcd->intstatus); | ||
2859 | D(lcd->backcolor); | ||
2860 | D(lcd->winenable); | ||
2861 | D(lcd->colorkey); | ||
2862 | D(lcd->colorkeymsk); | ||
2863 | D(lcd->hwc.cursorctrl); | ||
2864 | D(lcd->hwc.cursorpos); | ||
2865 | D(lcd->hwc.cursorcolor0); | ||
2866 | D(lcd->hwc.cursorcolor1); | ||
2867 | D(lcd->hwc.cursorcolor2); | ||
2868 | D(lcd->hwc.cursorcolor3); | ||
2869 | #endif | ||
2870 | } | ||
2871 | |||
2872 | static void au1200_setmode(struct au1200fb_device *fbdev) | ||
2873 | { | ||
2874 | int plane = fbdev->plane; | ||
2875 | /* Window/plane setup */ | ||
2876 | lcd->window[plane].winctrl1 = ( 0 | ||
2877 | | LCD_WINCTRL1_PRI_N(plane) | ||
2878 | | win->w[plane].mode_winctrl1 /* FRM,CCO,PO,PIPE */ | ||
2879 | ) ; | ||
2880 | |||
2881 | au1200_setlocation(fbdev, plane, win->w[plane].xpos, win->w[plane].ypos); | ||
2882 | |||
2883 | lcd->window[plane].winctrl2 = ( 0 | ||
2884 | | LCD_WINCTRL2_CKMODE_00 | ||
2885 | | LCD_WINCTRL2_DBM | ||
2886 | | LCD_WINCTRL2_BX_N( fbdev->fb_info.fix.line_length) | ||
2887 | | LCD_WINCTRL2_SCX_1 | ||
2888 | | LCD_WINCTRL2_SCY_1 | ||
2889 | ) ; | ||
2890 | lcd->winenable |= win->w[plane].mode_winenable; | ||
2891 | au_sync(); | ||
2892 | } | ||
2893 | |||
2894 | |||
2895 | /* Inline helpers */ | ||
2896 | |||
2897 | /*#define panel_is_dual(panel) ((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/ | ||
2898 | /*#define panel_is_active(panel)((panel->mode_screen & LCD_SCREEN_PT) == LCD_SCREEN_PT_010)*/ | ||
2899 | |||
2900 | #define panel_is_color(panel) ((panel->mode_screen & LCD_SCREEN_PT) <= LCD_SCREEN_PT_CDSTN) | ||
2901 | |||
2902 | /* Bitfields format supported by the controller. */ | ||
2903 | static struct fb_bitfield rgb_bitfields[][4] = { | ||
2904 | /* Red, Green, Blue, Transp */ | ||
2905 | [LCD_WINCTRL1_FRM_16BPP655 >> 25] = | ||
2906 | { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
2907 | |||
2908 | [LCD_WINCTRL1_FRM_16BPP565 >> 25] = | ||
2909 | { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
2910 | |||
2911 | [LCD_WINCTRL1_FRM_16BPP556 >> 25] = | ||
2912 | { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } }, | ||
2913 | |||
2914 | [LCD_WINCTRL1_FRM_16BPPI1555 >> 25] = | ||
2915 | { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } }, | ||
2916 | |||
2917 | [LCD_WINCTRL1_FRM_16BPPI5551 >> 25] = | ||
2918 | { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 0, 0 } }, | ||
2919 | |||
2920 | [LCD_WINCTRL1_FRM_16BPPA1555 >> 25] = | ||
2921 | { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } }, | ||
2922 | |||
2923 | [LCD_WINCTRL1_FRM_16BPPA5551 >> 25] = | ||
2924 | { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } }, | ||
2925 | |||
2926 | [LCD_WINCTRL1_FRM_24BPP >> 25] = | ||
2927 | { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 0, 0, 0 } }, | ||
2928 | |||
2929 | [LCD_WINCTRL1_FRM_32BPP >> 25] = | ||
2930 | { { 16, 8, 0 }, { 8, 8, 0 }, { 0, 8, 0 }, { 24, 0, 0 } }, | ||
2931 | }; | ||
2932 | |||
2933 | /*-------------------------------------------------------------------------*/ | ||
2934 | |||
2935 | /* Helpers */ | ||
2936 | |||
2937 | static void au1200fb_update_fbinfo(struct fb_info *fbi) | ||
2938 | { | ||
2939 | /* FIX!!!! This also needs to take the window pixel format into account!!! */ | ||
2940 | |||
2941 | /* Update var-dependent FB info */ | ||
2942 | if (panel_is_color(panel)) { | ||
2943 | if (fbi->var.bits_per_pixel <= 8) { | ||
2944 | /* palettized */ | ||
2945 | fbi->fix.visual = FB_VISUAL_PSEUDOCOLOR; | ||
2946 | fbi->fix.line_length = fbi->var.xres_virtual / | ||
2947 | (8/fbi->var.bits_per_pixel); | ||
2948 | } else { | ||
2949 | /* non-palettized */ | ||
2950 | fbi->fix.visual = FB_VISUAL_TRUECOLOR; | ||
2951 | fbi->fix.line_length = fbi->var.xres_virtual * (fbi->var.bits_per_pixel / 8); | ||
2952 | } | ||
2953 | } else { | ||
2954 | /* mono FIX!!! mono 8 and 4 bits */ | ||
2955 | fbi->fix.visual = FB_VISUAL_MONO10; | ||
2956 | fbi->fix.line_length = fbi->var.xres_virtual / 8; | ||
2957 | } | ||
2958 | |||
2959 | fbi->screen_size = fbi->fix.line_length * fbi->var.yres_virtual; | ||
2960 | print_dbg("line length: %d\n", fbi->fix.line_length); | ||
2961 | print_dbg("bits_per_pixel: %d\n", fbi->var.bits_per_pixel); | ||
2962 | } | ||
2963 | |||
2964 | /*-------------------------------------------------------------------------*/ | ||
2965 | |||
2966 | /* AU1200 framebuffer driver */ | ||
2967 | |||
2968 | /* fb_check_var | ||
2969 | * Validate var settings with hardware restrictions and modify it if necessary | ||
2970 | */ | ||
2971 | static int au1200fb_fb_check_var(struct fb_var_screeninfo *var, | ||
2972 | struct fb_info *fbi) | ||
2973 | { | ||
2974 | struct au1200fb_device *fbdev = (struct au1200fb_device *)fbi; | ||
2975 | u32 pixclock; | ||
2976 | int screen_size, plane; | ||
2977 | |||
2978 | plane = fbdev->plane; | ||
2979 | |||
2980 | /* Make sure that the mode respect all LCD controller and | ||
2981 | * panel restrictions. */ | ||
2982 | var->xres = win->w[plane].xres; | ||
2983 | var->yres = win->w[plane].yres; | ||
2984 | |||
2985 | /* No need for virtual resolution support */ | ||
2986 | var->xres_virtual = var->xres; | ||
2987 | var->yres_virtual = var->yres; | ||
2988 | |||
2989 | var->bits_per_pixel = winbpp(win->w[plane].mode_winctrl1); | ||
2990 | |||
2991 | screen_size = var->xres_virtual * var->yres_virtual; | ||
2992 | if (var->bits_per_pixel > 8) screen_size *= (var->bits_per_pixel / 8); | ||
2993 | else screen_size /= (8/var->bits_per_pixel); | ||
2994 | |||
2995 | if (fbdev->fb_len < screen_size) | ||
2996 | return -EINVAL; /* Virtual screen is to big, abort */ | ||
2997 | |||
2998 | /* FIX!!!! what are the implicaitons of ignoring this for windows ??? */ | ||
2999 | /* The max LCD clock is fixed to 48MHz (value of AUX_CLK). The pixel | ||
3000 | * clock can only be obtain by dividing this value by an even integer. | ||
3001 | * Fallback to a slower pixel clock if necessary. */ | ||
3002 | pixclock = max((u32)(PICOS2KHZ(var->pixclock) * 1000), fbi->monspecs.dclkmin); | ||
3003 | pixclock = min(pixclock, min(fbi->monspecs.dclkmax, (u32)AU1200_LCD_MAX_CLK/2)); | ||
3004 | |||
3005 | if (AU1200_LCD_MAX_CLK % pixclock) { | ||
3006 | int diff = AU1200_LCD_MAX_CLK % pixclock; | ||
3007 | pixclock -= diff; | ||
3008 | } | ||
3009 | |||
3010 | var->pixclock = KHZ2PICOS(pixclock/1000); | ||
3011 | #if 0 | ||
3012 | if (!panel_is_active(panel)) { | ||
3013 | int pcd = AU1200_LCD_MAX_CLK / (pixclock * 2) - 1; | ||
3014 | |||
3015 | if (!panel_is_color(panel) | ||
3016 | && (panel->control_base & LCD_CONTROL_MPI) && (pcd < 3)) { | ||
3017 | /* STN 8bit mono panel support is up to 6MHz pixclock */ | ||
3018 | var->pixclock = KHZ2PICOS(6000); | ||
3019 | } else if (!pcd) { | ||
3020 | /* Other STN panel support is up to 12MHz */ | ||
3021 | var->pixclock = KHZ2PICOS(12000); | ||
3022 | } | ||
3023 | } | ||
3024 | #endif | ||
3025 | /* Set bitfield accordingly */ | ||
3026 | switch (var->bits_per_pixel) { | ||
3027 | case 16: | ||
3028 | { | ||
3029 | /* 16bpp True color. | ||
3030 | * These must be set to MATCH WINCTRL[FORM] */ | ||
3031 | int idx; | ||
3032 | idx = (win->w[0].mode_winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
3033 | var->red = rgb_bitfields[idx][0]; | ||
3034 | var->green = rgb_bitfields[idx][1]; | ||
3035 | var->blue = rgb_bitfields[idx][2]; | ||
3036 | var->transp = rgb_bitfields[idx][3]; | ||
3037 | break; | ||
3038 | } | ||
3039 | |||
3040 | case 32: | ||
3041 | { | ||
3042 | /* 32bpp True color. | ||
3043 | * These must be set to MATCH WINCTRL[FORM] */ | ||
3044 | int idx; | ||
3045 | idx = (win->w[0].mode_winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
3046 | var->red = rgb_bitfields[idx][0]; | ||
3047 | var->green = rgb_bitfields[idx][1]; | ||
3048 | var->blue = rgb_bitfields[idx][2]; | ||
3049 | var->transp = rgb_bitfields[idx][3]; | ||
3050 | break; | ||
3051 | } | ||
3052 | default: | ||
3053 | print_dbg("Unsupported depth %dbpp", var->bits_per_pixel); | ||
3054 | return -EINVAL; | ||
3055 | } | ||
3056 | |||
3057 | return 0; | ||
3058 | } | ||
3059 | |||
3060 | /* fb_set_par | ||
3061 | * Set hardware with var settings. This will enable the controller with a | ||
3062 | * specific mode, normally validated with the fb_check_var method | ||
3063 | */ | ||
3064 | static int au1200fb_fb_set_par(struct fb_info *fbi) | ||
3065 | { | ||
3066 | struct au1200fb_device *fbdev = (struct au1200fb_device *)fbi; | ||
3067 | |||
3068 | au1200fb_update_fbinfo(fbi); | ||
3069 | au1200_setmode(fbdev); | ||
3070 | |||
3071 | return 0; | ||
3072 | } | ||
3073 | |||
3074 | /* fb_setcolreg | ||
3075 | * Set color in LCD palette. | ||
3076 | */ | ||
3077 | static int au1200fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, | ||
3078 | unsigned blue, unsigned transp, struct fb_info *fbi) | ||
3079 | { | ||
3080 | volatile u32 *palette = lcd->palette; | ||
3081 | u32 value; | ||
3082 | |||
3083 | if (regno > (AU1200_LCD_NBR_PALETTE_ENTRIES - 1)) | ||
3084 | return -EINVAL; | ||
3085 | |||
3086 | if (fbi->var.grayscale) { | ||
3087 | /* Convert color to grayscale */ | ||
3088 | red = green = blue = | ||
3089 | (19595 * red + 38470 * green + 7471 * blue) >> 16; | ||
3090 | } | ||
3091 | |||
3092 | if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) { | ||
3093 | /* Place color in the pseudopalette */ | ||
3094 | if (regno > 16) | ||
3095 | return -EINVAL; | ||
3096 | |||
3097 | palette = (u32*) fbi->pseudo_palette; | ||
3098 | |||
3099 | red >>= (16 - fbi->var.red.length); | ||
3100 | green >>= (16 - fbi->var.green.length); | ||
3101 | blue >>= (16 - fbi->var.blue.length); | ||
3102 | |||
3103 | value = (red << fbi->var.red.offset) | | ||
3104 | (green << fbi->var.green.offset)| | ||
3105 | (blue << fbi->var.blue.offset); | ||
3106 | value &= 0xFFFF; | ||
3107 | |||
3108 | } else if (1 /*FIX!!! panel_is_active(fbdev->panel)*/) { | ||
3109 | /* COLOR TFT PALLETTIZED (use RGB 565) */ | ||
3110 | value = (red & 0xF800)|((green >> 5) & | ||
3111 | 0x07E0)|((blue >> 11) & 0x001F); | ||
3112 | value &= 0xFFFF; | ||
3113 | |||
3114 | } else if (0 /*panel_is_color(fbdev->panel)*/) { | ||
3115 | /* COLOR STN MODE */ | ||
3116 | value = 0x1234; | ||
3117 | value &= 0xFFF; | ||
3118 | } else { | ||
3119 | /* MONOCHROME MODE */ | ||
3120 | value = (green >> 12) & 0x000F; | ||
3121 | value &= 0xF; | ||
3122 | } | ||
3123 | |||
3124 | palette[regno] = value; | ||
3125 | |||
3126 | return 0; | ||
3127 | } | ||
3128 | |||
3129 | /* fb_blank | ||
3130 | * Blank the screen. Depending on the mode, the screen will be | ||
3131 | * activated with the backlight color, or desactivated | ||
3132 | */ | ||
3133 | static int au1200fb_fb_blank(int blank_mode, struct fb_info *fbi) | ||
3134 | { | ||
3135 | /* Short-circuit screen blanking */ | ||
3136 | if (noblanking) | ||
3137 | return 0; | ||
3138 | |||
3139 | switch (blank_mode) { | ||
3140 | |||
3141 | case FB_BLANK_UNBLANK: | ||
3142 | case FB_BLANK_NORMAL: | ||
3143 | /* printk("turn on panel\n"); */ | ||
3144 | au1200_setpanel(panel); | ||
3145 | break; | ||
3146 | case FB_BLANK_VSYNC_SUSPEND: | ||
3147 | case FB_BLANK_HSYNC_SUSPEND: | ||
3148 | case FB_BLANK_POWERDOWN: | ||
3149 | /* printk("turn off panel\n"); */ | ||
3150 | au1200_setpanel(NULL); | ||
3151 | break; | ||
3152 | default: | ||
3153 | break; | ||
3154 | |||
3155 | } | ||
3156 | |||
3157 | /* FB_BLANK_NORMAL is a soft blank */ | ||
3158 | return (blank_mode == FB_BLANK_NORMAL) ? -EINVAL : 0; | ||
3159 | } | ||
3160 | |||
3161 | /* fb_mmap | ||
3162 | * Map video memory in user space. We don't use the generic fb_mmap | ||
3163 | * method mainly to allow the use of the TLB streaming flag (CCA=6) | ||
3164 | */ | ||
3165 | static int au1200fb_fb_mmap(struct fb_info *info, struct vm_area_struct *vma) | ||
3166 | |||
3167 | { | ||
3168 | unsigned int len; | ||
3169 | unsigned long start=0, off; | ||
3170 | struct au1200fb_device *fbdev = (struct au1200fb_device *) info; | ||
3171 | |||
3172 | #ifdef CONFIG_PM | ||
3173 | au1xxx_pm_access(LCD_pm_dev); | ||
3174 | #endif | ||
3175 | |||
3176 | if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT)) { | ||
3177 | return -EINVAL; | ||
3178 | } | ||
3179 | |||
3180 | start = fbdev->fb_phys & PAGE_MASK; | ||
3181 | len = PAGE_ALIGN((start & ~PAGE_MASK) + fbdev->fb_len); | ||
3182 | |||
3183 | off = vma->vm_pgoff << PAGE_SHIFT; | ||
3184 | |||
3185 | if ((vma->vm_end - vma->vm_start + off) > len) { | ||
3186 | return -EINVAL; | ||
3187 | } | ||
3188 | |||
3189 | off += start; | ||
3190 | vma->vm_pgoff = off >> PAGE_SHIFT; | ||
3191 | |||
3192 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); | ||
3193 | pgprot_val(vma->vm_page_prot) |= _CACHE_MASK; /* CCA=7 */ | ||
3194 | |||
3195 | vma->vm_flags |= VM_IO; | ||
3196 | |||
3197 | return io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT, | ||
3198 | vma->vm_end - vma->vm_start, | ||
3199 | vma->vm_page_prot); | ||
3200 | |||
3201 | return 0; | ||
3202 | } | ||
3203 | |||
3204 | static void set_global(u_int cmd, struct au1200_lcd_global_regs_t *pdata) | ||
3205 | { | ||
3206 | |||
3207 | unsigned int hi1, divider; | ||
3208 | |||
3209 | /* SCREEN_SIZE: user cannot reset size, must switch panel choice */ | ||
3210 | |||
3211 | if (pdata->flags & SCREEN_BACKCOLOR) | ||
3212 | lcd->backcolor = pdata->backcolor; | ||
3213 | |||
3214 | if (pdata->flags & SCREEN_BRIGHTNESS) { | ||
3215 | |||
3216 | // limit brightness pwm duty to >= 30/1600 | ||
3217 | if (pdata->brightness < 30) { | ||
3218 | pdata->brightness = 30; | ||
3219 | } | ||
3220 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
3221 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
3222 | hi1 = (((pdata->brightness & 0xFF)+1) * divider >> 8); | ||
3223 | lcd->pwmhi &= 0xFFFF; | ||
3224 | lcd->pwmhi |= (hi1 << 16); | ||
3225 | } | ||
3226 | |||
3227 | if (pdata->flags & SCREEN_COLORKEY) | ||
3228 | lcd->colorkey = pdata->colorkey; | ||
3229 | |||
3230 | if (pdata->flags & SCREEN_MASK) | ||
3231 | lcd->colorkeymsk = pdata->mask; | ||
3232 | au_sync(); | ||
3233 | } | ||
3234 | |||
3235 | static void get_global(u_int cmd, struct au1200_lcd_global_regs_t *pdata) | ||
3236 | { | ||
3237 | unsigned int hi1, divider; | ||
3238 | |||
3239 | pdata->xsize = ((lcd->screen & LCD_SCREEN_SX) >> 19) + 1; | ||
3240 | pdata->ysize = ((lcd->screen & LCD_SCREEN_SY) >> 8) + 1; | ||
3241 | |||
3242 | pdata->backcolor = lcd->backcolor; | ||
3243 | pdata->colorkey = lcd->colorkey; | ||
3244 | pdata->mask = lcd->colorkeymsk; | ||
3245 | |||
3246 | // brightness | ||
3247 | hi1 = (lcd->pwmhi >> 16) + 1; | ||
3248 | divider = (lcd->pwmdiv & 0x3FFFF) + 1; | ||
3249 | pdata->brightness = ((hi1 << 8) / divider) - 1; | ||
3250 | au_sync(); | ||
3251 | } | ||
3252 | |||
3253 | static void set_window(unsigned int plane, | ||
3254 | struct au1200_lcd_window_regs_t *pdata) | ||
3255 | { | ||
3256 | unsigned int val, bpp; | ||
3257 | |||
3258 | /* Window control register 0 */ | ||
3259 | if (pdata->flags & WIN_POSITION) { | ||
3260 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_OX | | ||
3261 | LCD_WINCTRL0_OY); | ||
3262 | val |= ((pdata->xpos << 21) & LCD_WINCTRL0_OX); | ||
3263 | val |= ((pdata->ypos << 10) & LCD_WINCTRL0_OY); | ||
3264 | lcd->window[plane].winctrl0 = val; | ||
3265 | } | ||
3266 | if (pdata->flags & WIN_ALPHA_COLOR) { | ||
3267 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_A); | ||
3268 | val |= ((pdata->alpha_color << 2) & LCD_WINCTRL0_A); | ||
3269 | lcd->window[plane].winctrl0 = val; | ||
3270 | } | ||
3271 | if (pdata->flags & WIN_ALPHA_MODE) { | ||
3272 | val = lcd->window[plane].winctrl0 & ~(LCD_WINCTRL0_AEN); | ||
3273 | val |= ((pdata->alpha_mode << 1) & LCD_WINCTRL0_AEN); | ||
3274 | lcd->window[plane].winctrl0 = val; | ||
3275 | } | ||
3276 | |||
3277 | /* Window control register 1 */ | ||
3278 | if (pdata->flags & WIN_PRIORITY) { | ||
3279 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PRI); | ||
3280 | val |= ((pdata->priority << 30) & LCD_WINCTRL1_PRI); | ||
3281 | lcd->window[plane].winctrl1 = val; | ||
3282 | } | ||
3283 | if (pdata->flags & WIN_CHANNEL) { | ||
3284 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PIPE); | ||
3285 | val |= ((pdata->channel << 29) & LCD_WINCTRL1_PIPE); | ||
3286 | lcd->window[plane].winctrl1 = val; | ||
3287 | } | ||
3288 | if (pdata->flags & WIN_BUFFER_FORMAT) { | ||
3289 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_FRM); | ||
3290 | val |= ((pdata->buffer_format << 25) & LCD_WINCTRL1_FRM); | ||
3291 | lcd->window[plane].winctrl1 = val; | ||
3292 | } | ||
3293 | if (pdata->flags & WIN_COLOR_ORDER) { | ||
3294 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_CCO); | ||
3295 | val |= ((pdata->color_order << 24) & LCD_WINCTRL1_CCO); | ||
3296 | lcd->window[plane].winctrl1 = val; | ||
3297 | } | ||
3298 | if (pdata->flags & WIN_PIXEL_ORDER) { | ||
3299 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_PO); | ||
3300 | val |= ((pdata->pixel_order << 22) & LCD_WINCTRL1_PO); | ||
3301 | lcd->window[plane].winctrl1 = val; | ||
3302 | } | ||
3303 | if (pdata->flags & WIN_SIZE) { | ||
3304 | val = lcd->window[plane].winctrl1 & ~(LCD_WINCTRL1_SZX | | ||
3305 | LCD_WINCTRL1_SZY); | ||
3306 | val |= (((pdata->xsize << 11) - 1) & LCD_WINCTRL1_SZX); | ||
3307 | val |= (((pdata->ysize) - 1) & LCD_WINCTRL1_SZY); | ||
3308 | lcd->window[plane].winctrl1 = val; | ||
3309 | /* program buffer line width */ | ||
3310 | bpp = winbpp(val) / 8; | ||
3311 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_BX); | ||
3312 | val |= (((pdata->xsize * bpp) << 8) & LCD_WINCTRL2_BX); | ||
3313 | lcd->window[plane].winctrl2 = val; | ||
3314 | } | ||
3315 | |||
3316 | /* Window control register 2 */ | ||
3317 | if (pdata->flags & WIN_COLORKEY_MODE) { | ||
3318 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_CKMODE); | ||
3319 | val |= ((pdata->colorkey_mode << 24) & LCD_WINCTRL2_CKMODE); | ||
3320 | lcd->window[plane].winctrl2 = val; | ||
3321 | } | ||
3322 | if (pdata->flags & WIN_DOUBLE_BUFFER_MODE) { | ||
3323 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_DBM); | ||
3324 | val |= ((pdata->double_buffer_mode << 23) & LCD_WINCTRL2_DBM); | ||
3325 | lcd->window[plane].winctrl2 = val; | ||
3326 | } | ||
3327 | if (pdata->flags & WIN_RAM_ARRAY_MODE) { | ||
3328 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_RAM); | ||
3329 | val |= ((pdata->ram_array_mode << 21) & LCD_WINCTRL2_RAM); | ||
3330 | lcd->window[plane].winctrl2 = val; | ||
3331 | } | ||
3332 | |||
3333 | /* Buffer line width programmed with WIN_SIZE */ | ||
3334 | |||
3335 | if (pdata->flags & WIN_BUFFER_SCALE) { | ||
3336 | val = lcd->window[plane].winctrl2 & ~(LCD_WINCTRL2_SCX | | ||
3337 | LCD_WINCTRL2_SCY); | ||
3338 | val |= ((pdata->xsize << 11) & LCD_WINCTRL2_SCX); | ||
3339 | val |= ((pdata->ysize) & LCD_WINCTRL2_SCY); | ||
3340 | lcd->window[plane].winctrl2 = val; | ||
3341 | } | ||
3342 | |||
3343 | if (pdata->flags & WIN_ENABLE) { | ||
3344 | val = lcd->winenable; | ||
3345 | val &= ~(1<<plane); | ||
3346 | val |= (pdata->enable & 1) << plane; | ||
3347 | lcd->winenable = val; | ||
3348 | } | ||
3349 | au_sync(); | ||
3350 | } | ||
3351 | |||
3352 | static void get_window(unsigned int plane, | ||
3353 | struct au1200_lcd_window_regs_t *pdata) | ||
3354 | { | ||
3355 | /* Window control register 0 */ | ||
3356 | pdata->xpos = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_OX) >> 21; | ||
3357 | pdata->ypos = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_OY) >> 10; | ||
3358 | pdata->alpha_color = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_A) >> 2; | ||
3359 | pdata->alpha_mode = (lcd->window[plane].winctrl0 & LCD_WINCTRL0_AEN) >> 1; | ||
3360 | |||
3361 | /* Window control register 1 */ | ||
3362 | pdata->priority = (lcd->window[plane].winctrl1& LCD_WINCTRL1_PRI) >> 30; | ||
3363 | pdata->channel = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_PIPE) >> 29; | ||
3364 | pdata->buffer_format = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_FRM) >> 25; | ||
3365 | pdata->color_order = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_CCO) >> 24; | ||
3366 | pdata->pixel_order = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_PO) >> 22; | ||
3367 | pdata->xsize = ((lcd->window[plane].winctrl1 & LCD_WINCTRL1_SZX) >> 11) + 1; | ||
3368 | pdata->ysize = (lcd->window[plane].winctrl1 & LCD_WINCTRL1_SZY) + 1; | ||
3369 | |||
3370 | /* Window control register 2 */ | ||
3371 | pdata->colorkey_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_CKMODE) >> 24; | ||
3372 | pdata->double_buffer_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_DBM) >> 23; | ||
3373 | pdata->ram_array_mode = (lcd->window[plane].winctrl2 & LCD_WINCTRL2_RAM) >> 21; | ||
3374 | |||
3375 | pdata->enable = (lcd->winenable >> plane) & 1; | ||
3376 | au_sync(); | ||
3377 | } | ||
3378 | |||
3379 | static int au1200fb_ioctl(struct fb_info *info, unsigned int cmd, | ||
3380 | unsigned long arg) | ||
3381 | { | ||
3382 | int plane; | ||
3383 | int val; | ||
3384 | |||
3385 | #ifdef CONFIG_PM | ||
3386 | au1xxx_pm_access(LCD_pm_dev); | ||
3387 | #endif | ||
3388 | |||
3389 | plane = fbinfo2index(info); | ||
3390 | print_dbg("au1200fb: ioctl %d on plane %d\n", cmd, plane); | ||
3391 | |||
3392 | if (cmd == AU1200_LCD_FB_IOCTL) { | ||
3393 | struct au1200_lcd_iodata_t iodata; | ||
3394 | |||
3395 | if (copy_from_user(&iodata, (void __user *) arg, sizeof(iodata))) | ||
3396 | return -EFAULT; | ||
3397 | |||
3398 | print_dbg("FB IOCTL called\n"); | ||
3399 | |||
3400 | switch (iodata.subcmd) { | ||
3401 | case AU1200_LCD_SET_SCREEN: | ||
3402 | print_dbg("AU1200_LCD_SET_SCREEN\n"); | ||
3403 | set_global(cmd, &iodata.global); | ||
3404 | break; | ||
3405 | |||
3406 | case AU1200_LCD_GET_SCREEN: | ||
3407 | print_dbg("AU1200_LCD_GET_SCREEN\n"); | ||
3408 | get_global(cmd, &iodata.global); | ||
3409 | break; | ||
3410 | |||
3411 | case AU1200_LCD_SET_WINDOW: | ||
3412 | print_dbg("AU1200_LCD_SET_WINDOW\n"); | ||
3413 | set_window(plane, &iodata.window); | ||
3414 | break; | ||
3415 | |||
3416 | case AU1200_LCD_GET_WINDOW: | ||
3417 | print_dbg("AU1200_LCD_GET_WINDOW\n"); | ||
3418 | get_window(plane, &iodata.window); | ||
3419 | break; | ||
3420 | |||
3421 | case AU1200_LCD_SET_PANEL: | ||
3422 | print_dbg("AU1200_LCD_SET_PANEL\n"); | ||
3423 | if ((iodata.global.panel_choice >= 0) && | ||
3424 | (iodata.global.panel_choice < | ||
3425 | NUM_PANELS)) | ||
3426 | { | ||
3427 | struct panel_settings *newpanel; | ||
3428 | panel_index = iodata.global.panel_choice; | ||
3429 | newpanel = &known_lcd_panels[panel_index]; | ||
3430 | au1200_setpanel(newpanel); | ||
3431 | } | ||
3432 | break; | ||
3433 | |||
3434 | case AU1200_LCD_GET_PANEL: | ||
3435 | print_dbg("AU1200_LCD_GET_PANEL\n"); | ||
3436 | iodata.global.panel_choice = panel_index; | ||
3437 | break; | ||
3438 | |||
3439 | default: | ||
3440 | return -EINVAL; | ||
3441 | } | ||
3442 | |||
3443 | val = copy_to_user((void __user *) arg, &iodata, sizeof(iodata)); | ||
3444 | if (val) { | ||
3445 | print_dbg("error: could not copy %d bytes\n", val); | ||
3446 | return -EFAULT; | ||
3447 | } | ||
3448 | } | ||
3449 | |||
3450 | return 0; | ||
3451 | } | ||
3452 | |||
3453 | |||
3454 | static struct fb_ops au1200fb_fb_ops = { | ||
3455 | .owner = THIS_MODULE, | ||
3456 | .fb_check_var = au1200fb_fb_check_var, | ||
3457 | .fb_set_par = au1200fb_fb_set_par, | ||
3458 | .fb_setcolreg = au1200fb_fb_setcolreg, | ||
3459 | .fb_blank = au1200fb_fb_blank, | ||
3460 | .fb_fillrect = cfb_fillrect, | ||
3461 | .fb_copyarea = cfb_copyarea, | ||
3462 | .fb_imageblit = cfb_imageblit, | ||
3463 | .fb_sync = NULL, | ||
3464 | .fb_ioctl = au1200fb_ioctl, | ||
3465 | .fb_mmap = au1200fb_fb_mmap, | ||
3466 | }; | ||
3467 | |||
3468 | /*-------------------------------------------------------------------------*/ | ||
3469 | |||
3470 | static irqreturn_t au1200fb_handle_irq(int irq, void* dev_id, struct pt_regs *regs) | ||
3471 | { | ||
3472 | /* Nothing to do for now, just clear any pending interrupt */ | ||
3473 | lcd->intstatus = lcd->intstatus; | ||
3474 | au_sync(); | ||
3475 | |||
3476 | return IRQ_HANDLED; | ||
3477 | } | ||
3478 | |||
3479 | /*-------------------------------------------------------------------------*/ | ||
3480 | |||
3481 | /* AU1200 LCD device probe helpers */ | ||
3482 | |||
3483 | static int au1200fb_init_fbinfo(struct au1200fb_device *fbdev) | ||
3484 | { | ||
3485 | struct fb_info *fbi = &fbdev->fb_info; | ||
3486 | int bpp; | ||
3487 | |||
3488 | memset(fbi, 0, sizeof(struct fb_info)); | ||
3489 | fbi->fbops = &au1200fb_fb_ops; | ||
3490 | |||
3491 | bpp = winbpp(win->w[fbdev->plane].mode_winctrl1); | ||
3492 | |||
3493 | /* Copy monitor specs from panel data */ | ||
3494 | /* fixme: we're setting up LCD controller windows, so these dont give a | ||
3495 | damn as to what the monitor specs are (the panel itself does, but that | ||
3496 | isnt done here...so maybe need a generic catchall monitor setting??? */ | ||
3497 | memcpy(&fbi->monspecs, &panel->monspecs, sizeof(struct fb_monspecs)); | ||
3498 | |||
3499 | /* We first try the user mode passed in argument. If that failed, | ||
3500 | * or if no one has been specified, we default to the first mode of the | ||
3501 | * panel list. Note that after this call, var data will be set */ | ||
3502 | if (!fb_find_mode(&fbi->var, | ||
3503 | fbi, | ||
3504 | NULL, /* drv_info.opt_mode, */ | ||
3505 | fbi->monspecs.modedb, | ||
3506 | fbi->monspecs.modedb_len, | ||
3507 | fbi->monspecs.modedb, | ||
3508 | bpp)) { | ||
3509 | |||
3510 | print_err("Cannot find valid mode for panel %s", panel->name); | ||
3511 | return -EFAULT; | ||
3512 | } | ||
3513 | |||
3514 | fbi->pseudo_palette = kmalloc(sizeof(u32) * 16, GFP_KERNEL); | ||
3515 | if (!fbi->pseudo_palette) { | ||
3516 | return -ENOMEM; | ||
3517 | } | ||
3518 | memset(fbi->pseudo_palette, 0, sizeof(u32) * 16); | ||
3519 | |||
3520 | if (fb_alloc_cmap(&fbi->cmap, AU1200_LCD_NBR_PALETTE_ENTRIES, 0) < 0) { | ||
3521 | print_err("Fail to allocate colormap (%d entries)", | ||
3522 | AU1200_LCD_NBR_PALETTE_ENTRIES); | ||
3523 | kfree(fbi->pseudo_palette); | ||
3524 | return -EFAULT; | ||
3525 | } | ||
3526 | |||
3527 | strncpy(fbi->fix.id, "AU1200", sizeof(fbi->fix.id)); | ||
3528 | fbi->fix.smem_start = fbdev->fb_phys; | ||
3529 | fbi->fix.smem_len = fbdev->fb_len; | ||
3530 | fbi->fix.type = FB_TYPE_PACKED_PIXELS; | ||
3531 | fbi->fix.xpanstep = 0; | ||
3532 | fbi->fix.ypanstep = 0; | ||
3533 | fbi->fix.mmio_start = 0; | ||
3534 | fbi->fix.mmio_len = 0; | ||
3535 | fbi->fix.accel = FB_ACCEL_NONE; | ||
3536 | |||
3537 | fbi->screen_base = (char __iomem *) fbdev->fb_mem; | ||
3538 | |||
3539 | au1200fb_update_fbinfo(fbi); | ||
3540 | |||
3541 | return 0; | ||
3542 | } | ||
3543 | |||
3544 | /*-------------------------------------------------------------------------*/ | ||
3545 | |||
3546 | /* AU1200 LCD controller device driver */ | ||
3547 | |||
3548 | static int au1200fb_drv_probe(struct device *dev) | ||
3549 | { | ||
3550 | struct au1200fb_device *fbdev; | ||
3551 | unsigned long page; | ||
3552 | int bpp, plane, ret; | ||
3553 | |||
3554 | if (!dev) | ||
3555 | return -EINVAL; | ||
3556 | |||
3557 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) { | ||
3558 | bpp = winbpp(win->w[plane].mode_winctrl1); | ||
3559 | if (win->w[plane].xres == 0) | ||
3560 | win->w[plane].xres = panel->Xres; | ||
3561 | if (win->w[plane].yres == 0) | ||
3562 | win->w[plane].yres = panel->Yres; | ||
3563 | |||
3564 | fbdev = &_au1200fb_devices[plane]; | ||
3565 | memset(fbdev, 0, sizeof(struct au1200fb_device)); | ||
3566 | fbdev->plane = plane; | ||
3567 | |||
3568 | /* Allocate the framebuffer to the maximum screen size */ | ||
3569 | fbdev->fb_len = (win->w[plane].xres * win->w[plane].yres * bpp) / 8; | ||
3570 | |||
3571 | fbdev->fb_mem = dma_alloc_noncoherent(dev, | ||
3572 | PAGE_ALIGN(fbdev->fb_len), | ||
3573 | &fbdev->fb_phys, GFP_KERNEL); | ||
3574 | if (!fbdev->fb_mem) { | ||
3575 | print_err("fail to allocate frambuffer (size: %dK))", | ||
3576 | fbdev->fb_len / 1024); | ||
3577 | return -ENOMEM; | ||
3578 | } | ||
3579 | |||
3580 | /* | ||
3581 | * Set page reserved so that mmap will work. This is necessary | ||
3582 | * since we'll be remapping normal memory. | ||
3583 | */ | ||
3584 | for (page = (unsigned long)fbdev->fb_phys; | ||
3585 | page < PAGE_ALIGN((unsigned long)fbdev->fb_phys + | ||
3586 | fbdev->fb_len); | ||
3587 | page += PAGE_SIZE) { | ||
3588 | SetPageReserved(pfn_to_page(page >> PAGE_SHIFT)); /* LCD DMA is NOT coherent on Au1200 */ | ||
3589 | } | ||
3590 | print_dbg("Framebuffer memory map at %p", fbdev->fb_mem); | ||
3591 | print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024); | ||
3592 | |||
3593 | /* Init FB data */ | ||
3594 | if ((ret = au1200fb_init_fbinfo(fbdev)) < 0) | ||
3595 | goto failed; | ||
3596 | |||
3597 | /* Register new framebuffer */ | ||
3598 | if ((ret = register_framebuffer(&fbdev->fb_info)) < 0) { | ||
3599 | print_err("cannot register new framebuffer"); | ||
3600 | goto failed; | ||
3601 | } | ||
3602 | |||
3603 | au1200fb_fb_set_par(&fbdev->fb_info); | ||
3604 | |||
3605 | #if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO) | ||
3606 | if (plane == 0) | ||
3607 | if (fb_prepare_logo(&fbdev->fb_info, FB_ROTATE_UR)) { | ||
3608 | /* Start display and show logo on boot */ | ||
3609 | fb_set_cmap(&fbdev->fb_info.cmap, | ||
3610 | &fbdev->fb_info); | ||
3611 | |||
3612 | fb_show_logo(&fbdev->fb_info, FB_ROTATE_UR); | ||
3613 | } | ||
3614 | #endif | ||
3615 | } | ||
3616 | |||
3617 | /* Now hook interrupt too */ | ||
3618 | if ((ret = request_irq(AU1200_LCD_INT, au1200fb_handle_irq, | ||
3619 | SA_INTERRUPT | SA_SHIRQ, "lcd", (void *)dev)) < 0) { | ||
3620 | print_err("fail to request interrupt line %d (err: %d)", | ||
3621 | AU1200_LCD_INT, ret); | ||
3622 | goto failed; | ||
3623 | } | ||
3624 | |||
3625 | return 0; | ||
3626 | |||
3627 | failed: | ||
3628 | /* NOTE: This only does the current plane/window that failed; others are still active */ | ||
3629 | if (fbdev->fb_mem) | ||
3630 | dma_free_noncoherent(dev, PAGE_ALIGN(fbdev->fb_len), | ||
3631 | fbdev->fb_mem, fbdev->fb_phys); | ||
3632 | if (fbdev->fb_info.cmap.len != 0) | ||
3633 | fb_dealloc_cmap(&fbdev->fb_info.cmap); | ||
3634 | if (fbdev->fb_info.pseudo_palette) | ||
3635 | kfree(fbdev->fb_info.pseudo_palette); | ||
3636 | if (plane == 0) | ||
3637 | free_irq(AU1200_LCD_INT, (void*)dev); | ||
3638 | return ret; | ||
3639 | } | ||
3640 | |||
3641 | static int au1200fb_drv_remove(struct device *dev) | ||
3642 | { | ||
3643 | struct au1200fb_device *fbdev; | ||
3644 | int plane; | ||
3645 | |||
3646 | if (!dev) | ||
3647 | return -ENODEV; | ||
3648 | |||
3649 | /* Turn off the panel */ | ||
3650 | au1200_setpanel(NULL); | ||
3651 | |||
3652 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) | ||
3653 | { | ||
3654 | fbdev = &_au1200fb_devices[plane]; | ||
3655 | |||
3656 | /* Clean up all probe data */ | ||
3657 | unregister_framebuffer(&fbdev->fb_info); | ||
3658 | if (fbdev->fb_mem) | ||
3659 | dma_free_noncoherent(dev, PAGE_ALIGN(fbdev->fb_len), | ||
3660 | fbdev->fb_mem, fbdev->fb_phys); | ||
3661 | if (fbdev->fb_info.cmap.len != 0) | ||
3662 | fb_dealloc_cmap(&fbdev->fb_info.cmap); | ||
3663 | if (fbdev->fb_info.pseudo_palette) | ||
3664 | kfree(fbdev->fb_info.pseudo_palette); | ||
3665 | } | ||
3666 | |||
3667 | free_irq(AU1200_LCD_INT, (void *)dev); | ||
3668 | |||
3669 | return 0; | ||
3670 | } | ||
3671 | |||
3672 | #ifdef CONFIG_PM | ||
3673 | static int au1200fb_drv_suspend(struct device *dev, u32 state, u32 level) | ||
3674 | { | ||
3675 | /* TODO */ | ||
3676 | return 0; | ||
3677 | } | ||
3678 | |||
3679 | static int au1200fb_drv_resume(struct device *dev, u32 level) | ||
3680 | { | ||
3681 | /* TODO */ | ||
3682 | return 0; | ||
3683 | } | ||
3684 | #endif /* CONFIG_PM */ | ||
3685 | |||
3686 | static struct device_driver au1200fb_driver = { | ||
3687 | .name = "au1200-lcd", | ||
3688 | .bus = &platform_bus_type, | ||
3689 | .probe = au1200fb_drv_probe, | ||
3690 | .remove = au1200fb_drv_remove, | ||
3691 | #ifdef CONFIG_PM | ||
3692 | .suspend = au1200fb_drv_suspend, | ||
3693 | .resume = au1200fb_drv_resume, | ||
3694 | #endif | ||
3695 | }; | ||
3696 | |||
3697 | /*-------------------------------------------------------------------------*/ | ||
3698 | |||
3699 | /* Kernel driver */ | ||
3700 | |||
3701 | static void au1200fb_setup(void) | ||
3702 | { | ||
3703 | char* options = NULL; | ||
3704 | char* this_opt; | ||
3705 | int num_panels = ARRAY_SIZE(known_lcd_panels); | ||
3706 | int panel_idx = -1; | ||
3707 | |||
3708 | fb_get_options(DRIVER_NAME, &options); | ||
3709 | |||
3710 | if (options) { | ||
3711 | while ((this_opt = strsep(&options,",")) != NULL) { | ||
3712 | /* Panel option - can be panel name, | ||
3713 | * "bs" for board-switch, or number/index */ | ||
3714 | if (!strncmp(this_opt, "panel:", 6)) { | ||
3715 | int i; | ||
3716 | long int li; | ||
3717 | char *endptr; | ||
3718 | this_opt += 6; | ||
3719 | /* First check for index, which allows | ||
3720 | * to short circuit this mess */ | ||
3721 | li = simple_strtol(this_opt, &endptr, 0); | ||
3722 | if (*endptr == '\0') { | ||
3723 | panel_idx = (int)li; | ||
3724 | } | ||
3725 | else if (strcmp(this_opt, "bs") == 0) { | ||
3726 | extern int board_au1200fb_panel(void); | ||
3727 | panel_idx = board_au1200fb_panel(); | ||
3728 | } | ||
3729 | |||
3730 | else | ||
3731 | for (i = 0; i < num_panels; i++) { | ||
3732 | if (!strcmp(this_opt, known_lcd_panels[i].name)) { | ||
3733 | panel_idx = i; | ||
3734 | break; | ||
3735 | } | ||
3736 | } | ||
3737 | |||
3738 | if ((panel_idx < 0) || (panel_idx >= num_panels)) { | ||
3739 | print_warn("Panel %s not supported!", this_opt); | ||
3740 | } | ||
3741 | else | ||
3742 | panel_index = panel_idx; | ||
3743 | } | ||
3744 | |||
3745 | else if (strncmp(this_opt, "nohwcursor", 10) == 0) { | ||
3746 | nohwcursor = 1; | ||
3747 | } | ||
3748 | |||
3749 | /* Unsupported option */ | ||
3750 | else { | ||
3751 | print_warn("Unsupported option \"%s\"", this_opt); | ||
3752 | } | ||
3753 | } | ||
3754 | } | ||
3755 | } | ||
3756 | |||
3757 | #ifdef CONFIG_PM | ||
3758 | static int au1200fb_pm_callback(au1xxx_power_dev_t *dev, | ||
3759 | au1xxx_request_t request, void *data) { | ||
3760 | int retval = -1; | ||
3761 | unsigned int d = 0; | ||
3762 | unsigned int brightness = 0; | ||
3763 | |||
3764 | if (request == AU1XXX_PM_SLEEP) { | ||
3765 | board_au1200fb_panel_shutdown(); | ||
3766 | } | ||
3767 | else if (request == AU1XXX_PM_WAKEUP) { | ||
3768 | if(dev->prev_state == SLEEP_STATE) | ||
3769 | { | ||
3770 | int plane; | ||
3771 | au1200_setpanel(panel); | ||
3772 | for (plane = 0; plane < CONFIG_FB_AU1200_DEVS; ++plane) { | ||
3773 | struct au1200fb_device *fbdev; | ||
3774 | fbdev = &_au1200fb_devices[plane]; | ||
3775 | au1200fb_fb_set_par(&fbdev->fb_info); | ||
3776 | } | ||
3777 | } | ||
3778 | |||
3779 | d = *((unsigned int*)data); | ||
3780 | if(d <=10) brightness = 26; | ||
3781 | else if(d<=20) brightness = 51; | ||
3782 | else if(d<=30) brightness = 77; | ||
3783 | else if(d<=40) brightness = 102; | ||
3784 | else if(d<=50) brightness = 128; | ||
3785 | else if(d<=60) brightness = 153; | ||
3786 | else if(d<=70) brightness = 179; | ||
3787 | else if(d<=80) brightness = 204; | ||
3788 | else if(d<=90) brightness = 230; | ||
3789 | else brightness = 255; | ||
3790 | set_brightness(brightness); | ||
3791 | } else if (request == AU1XXX_PM_GETSTATUS) { | ||
3792 | return dev->cur_state; | ||
3793 | } else if (request == AU1XXX_PM_ACCESS) { | ||
3794 | if (dev->cur_state != SLEEP_STATE) | ||
3795 | return retval; | ||
3796 | else { | ||
3797 | au1200_setpanel(panel); | ||
3798 | } | ||
3799 | } else if (request == AU1XXX_PM_IDLE) { | ||
3800 | } else if (request == AU1XXX_PM_CLEANUP) { | ||
3801 | } | ||
3802 | |||
3803 | return retval; | ||
3804 | } | ||
3805 | #endif | ||
3806 | |||
3807 | static int __init au1200fb_init(void) | ||
3808 | { | ||
3809 | print_info("" DRIVER_DESC ""); | ||
3810 | |||
3811 | /* Setup driver with options */ | ||
3812 | au1200fb_setup(); | ||
3813 | |||
3814 | /* Point to the panel selected */ | ||
3815 | panel = &known_lcd_panels[panel_index]; | ||
3816 | win = &windows[window_index]; | ||
3817 | |||
3818 | printk(DRIVER_NAME ": Panel %d %s\n", panel_index, panel->name); | ||
3819 | printk(DRIVER_NAME ": Win %d %s\n", window_index, win->name); | ||
3820 | |||
3821 | /* Kickstart the panel, the framebuffers/windows come soon enough */ | ||
3822 | au1200_setpanel(panel); | ||
3823 | |||
3824 | #ifdef CONFIG_PM | ||
3825 | LCD_pm_dev = new_au1xxx_power_device("LCD", &au1200fb_pm_callback, NULL); | ||
3826 | if ( LCD_pm_dev == NULL) | ||
3827 | printk(KERN_INFO "Unable to create a power management device entry for the au1200fb.\n"); | ||
3828 | else | ||
3829 | printk(KERN_INFO "Power management device entry for the au1200fb loaded.\n"); | ||
3830 | #endif | ||
3831 | |||
3832 | return driver_register(&au1200fb_driver); | ||
3833 | } | ||
3834 | |||
3835 | static void __exit au1200fb_cleanup(void) | ||
3836 | { | ||
3837 | driver_unregister(&au1200fb_driver); | ||
3838 | } | ||
3839 | |||
3840 | module_init(au1200fb_init); | ||
3841 | module_exit(au1200fb_cleanup); | ||
3842 | |||
3843 | MODULE_DESCRIPTION(DRIVER_DESC); | ||
3844 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/au1200fb.h b/drivers/video/au1200fb.h new file mode 100644 index 000000000000..e2672714d8d4 --- /dev/null +++ b/drivers/video/au1200fb.h | |||
@@ -0,0 +1,572 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * Hardware definitions for the Au1200 LCD controller | ||
4 | * | ||
5 | * Copyright 2004 AMD | ||
6 | * Author: AMD | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
14 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
15 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
16 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
17 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
18 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
19 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
20 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
23 | * | ||
24 | * You should have received a copy of the GNU General Public License along | ||
25 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
26 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
27 | */ | ||
28 | |||
29 | #ifndef _AU1200LCD_H | ||
30 | #define _AU1200LCD_H | ||
31 | |||
32 | /********************************************************************/ | ||
33 | #define AU1200_LCD_ADDR 0xB5000000 | ||
34 | |||
35 | #define uint8 unsigned char | ||
36 | #define uint32 unsigned int | ||
37 | |||
38 | struct au1200_lcd { | ||
39 | volatile uint32 reserved0; | ||
40 | volatile uint32 screen; | ||
41 | volatile uint32 backcolor; | ||
42 | volatile uint32 horztiming; | ||
43 | volatile uint32 verttiming; | ||
44 | volatile uint32 clkcontrol; | ||
45 | volatile uint32 pwmdiv; | ||
46 | volatile uint32 pwmhi; | ||
47 | volatile uint32 reserved1; | ||
48 | volatile uint32 winenable; | ||
49 | volatile uint32 colorkey; | ||
50 | volatile uint32 colorkeymsk; | ||
51 | struct | ||
52 | { | ||
53 | volatile uint32 cursorctrl; | ||
54 | volatile uint32 cursorpos; | ||
55 | volatile uint32 cursorcolor0; | ||
56 | volatile uint32 cursorcolor1; | ||
57 | volatile uint32 cursorcolor2; | ||
58 | uint32 cursorcolor3; | ||
59 | } hwc; | ||
60 | volatile uint32 intstatus; | ||
61 | volatile uint32 intenable; | ||
62 | volatile uint32 outmask; | ||
63 | volatile uint32 fifoctrl; | ||
64 | uint32 reserved2[(0x0100-0x0058)/4]; | ||
65 | struct | ||
66 | { | ||
67 | volatile uint32 winctrl0; | ||
68 | volatile uint32 winctrl1; | ||
69 | volatile uint32 winctrl2; | ||
70 | volatile uint32 winbuf0; | ||
71 | volatile uint32 winbuf1; | ||
72 | volatile uint32 winbufctrl; | ||
73 | uint32 winreserved0; | ||
74 | uint32 winreserved1; | ||
75 | } window[4]; | ||
76 | |||
77 | uint32 reserved3[(0x0400-0x0180)/4]; | ||
78 | |||
79 | volatile uint32 palette[(0x0800-0x0400)/4]; | ||
80 | |||
81 | volatile uint8 cursorpattern[256]; | ||
82 | }; | ||
83 | |||
84 | /* lcd_screen */ | ||
85 | #define LCD_SCREEN_SEN (1<<31) | ||
86 | #define LCD_SCREEN_SX (0x07FF<<19) | ||
87 | #define LCD_SCREEN_SY (0x07FF<< 8) | ||
88 | #define LCD_SCREEN_SWP (1<<7) | ||
89 | #define LCD_SCREEN_SWD (1<<6) | ||
90 | #define LCD_SCREEN_PT (7<<0) | ||
91 | #define LCD_SCREEN_PT_TFT (0<<0) | ||
92 | #define LCD_SCREEN_SX_N(WIDTH) ((WIDTH-1)<<19) | ||
93 | #define LCD_SCREEN_SY_N(HEIGHT) ((HEIGHT-1)<<8) | ||
94 | #define LCD_SCREEN_PT_CSTN (1<<0) | ||
95 | #define LCD_SCREEN_PT_CDSTN (2<<0) | ||
96 | #define LCD_SCREEN_PT_M8STN (3<<0) | ||
97 | #define LCD_SCREEN_PT_M4STN (4<<0) | ||
98 | |||
99 | /* lcd_backcolor */ | ||
100 | #define LCD_BACKCOLOR_SBGR (0xFF<<16) | ||
101 | #define LCD_BACKCOLOR_SBGG (0xFF<<8) | ||
102 | #define LCD_BACKCOLOR_SBGB (0xFF<<0) | ||
103 | #define LCD_BACKCOLOR_SBGR_N(N) ((N)<<16) | ||
104 | #define LCD_BACKCOLOR_SBGG_N(N) ((N)<<8) | ||
105 | #define LCD_BACKCOLOR_SBGB_N(N) ((N)<<0) | ||
106 | |||
107 | /* lcd_winenable */ | ||
108 | #define LCD_WINENABLE_WEN3 (1<<3) | ||
109 | #define LCD_WINENABLE_WEN2 (1<<2) | ||
110 | #define LCD_WINENABLE_WEN1 (1<<1) | ||
111 | #define LCD_WINENABLE_WEN0 (1<<0) | ||
112 | |||
113 | /* lcd_colorkey */ | ||
114 | #define LCD_COLORKEY_CKR (0xFF<<16) | ||
115 | #define LCD_COLORKEY_CKG (0xFF<<8) | ||
116 | #define LCD_COLORKEY_CKB (0xFF<<0) | ||
117 | #define LCD_COLORKEY_CKR_N(N) ((N)<<16) | ||
118 | #define LCD_COLORKEY_CKG_N(N) ((N)<<8) | ||
119 | #define LCD_COLORKEY_CKB_N(N) ((N)<<0) | ||
120 | |||
121 | /* lcd_colorkeymsk */ | ||
122 | #define LCD_COLORKEYMSK_CKMR (0xFF<<16) | ||
123 | #define LCD_COLORKEYMSK_CKMG (0xFF<<8) | ||
124 | #define LCD_COLORKEYMSK_CKMB (0xFF<<0) | ||
125 | #define LCD_COLORKEYMSK_CKMR_N(N) ((N)<<16) | ||
126 | #define LCD_COLORKEYMSK_CKMG_N(N) ((N)<<8) | ||
127 | #define LCD_COLORKEYMSK_CKMB_N(N) ((N)<<0) | ||
128 | |||
129 | /* lcd windows control 0 */ | ||
130 | #define LCD_WINCTRL0_OX (0x07FF<<21) | ||
131 | #define LCD_WINCTRL0_OY (0x07FF<<10) | ||
132 | #define LCD_WINCTRL0_A (0x00FF<<2) | ||
133 | #define LCD_WINCTRL0_AEN (1<<1) | ||
134 | #define LCD_WINCTRL0_OX_N(N) ((N)<<21) | ||
135 | #define LCD_WINCTRL0_OY_N(N) ((N)<<10) | ||
136 | #define LCD_WINCTRL0_A_N(N) ((N)<<2) | ||
137 | |||
138 | /* lcd windows control 1 */ | ||
139 | #define LCD_WINCTRL1_PRI (3<<30) | ||
140 | #define LCD_WINCTRL1_PIPE (1<<29) | ||
141 | #define LCD_WINCTRL1_FRM (0xF<<25) | ||
142 | #define LCD_WINCTRL1_CCO (1<<24) | ||
143 | #define LCD_WINCTRL1_PO (3<<22) | ||
144 | #define LCD_WINCTRL1_SZX (0x07FF<<11) | ||
145 | #define LCD_WINCTRL1_SZY (0x07FF<<0) | ||
146 | #define LCD_WINCTRL1_FRM_1BPP (0<<25) | ||
147 | #define LCD_WINCTRL1_FRM_2BPP (1<<25) | ||
148 | #define LCD_WINCTRL1_FRM_4BPP (2<<25) | ||
149 | #define LCD_WINCTRL1_FRM_8BPP (3<<25) | ||
150 | #define LCD_WINCTRL1_FRM_12BPP (4<<25) | ||
151 | #define LCD_WINCTRL1_FRM_16BPP655 (5<<25) | ||
152 | #define LCD_WINCTRL1_FRM_16BPP565 (6<<25) | ||
153 | #define LCD_WINCTRL1_FRM_16BPP556 (7<<25) | ||
154 | #define LCD_WINCTRL1_FRM_16BPPI1555 (8<<25) | ||
155 | #define LCD_WINCTRL1_FRM_16BPPI5551 (9<<25) | ||
156 | #define LCD_WINCTRL1_FRM_16BPPA1555 (10<<25) | ||
157 | #define LCD_WINCTRL1_FRM_16BPPA5551 (11<<25) | ||
158 | #define LCD_WINCTRL1_FRM_24BPP (12<<25) | ||
159 | #define LCD_WINCTRL1_FRM_32BPP (13<<25) | ||
160 | #define LCD_WINCTRL1_PRI_N(N) ((N)<<30) | ||
161 | #define LCD_WINCTRL1_PO_00 (0<<22) | ||
162 | #define LCD_WINCTRL1_PO_01 (1<<22) | ||
163 | #define LCD_WINCTRL1_PO_10 (2<<22) | ||
164 | #define LCD_WINCTRL1_PO_11 (3<<22) | ||
165 | #define LCD_WINCTRL1_SZX_N(N) ((N-1)<<11) | ||
166 | #define LCD_WINCTRL1_SZY_N(N) ((N-1)<<0) | ||
167 | |||
168 | /* lcd windows control 2 */ | ||
169 | #define LCD_WINCTRL2_CKMODE (3<<24) | ||
170 | #define LCD_WINCTRL2_DBM (1<<23) | ||
171 | #define LCD_WINCTRL2_RAM (3<<21) | ||
172 | #define LCD_WINCTRL2_BX (0x1FFF<<8) | ||
173 | #define LCD_WINCTRL2_SCX (0xF<<4) | ||
174 | #define LCD_WINCTRL2_SCY (0xF<<0) | ||
175 | #define LCD_WINCTRL2_CKMODE_00 (0<<24) | ||
176 | #define LCD_WINCTRL2_CKMODE_01 (1<<24) | ||
177 | #define LCD_WINCTRL2_CKMODE_10 (2<<24) | ||
178 | #define LCD_WINCTRL2_CKMODE_11 (3<<24) | ||
179 | #define LCD_WINCTRL2_RAM_NONE (0<<21) | ||
180 | #define LCD_WINCTRL2_RAM_PALETTE (1<<21) | ||
181 | #define LCD_WINCTRL2_RAM_GAMMA (2<<21) | ||
182 | #define LCD_WINCTRL2_RAM_BUFFER (3<<21) | ||
183 | #define LCD_WINCTRL2_BX_N(N) ((N)<<8) | ||
184 | #define LCD_WINCTRL2_SCX_1 (0<<4) | ||
185 | #define LCD_WINCTRL2_SCX_2 (1<<4) | ||
186 | #define LCD_WINCTRL2_SCX_4 (2<<4) | ||
187 | #define LCD_WINCTRL2_SCY_1 (0<<0) | ||
188 | #define LCD_WINCTRL2_SCY_2 (1<<0) | ||
189 | #define LCD_WINCTRL2_SCY_4 (2<<0) | ||
190 | |||
191 | /* lcd windows buffer control */ | ||
192 | #define LCD_WINBUFCTRL_DB (1<<1) | ||
193 | #define LCD_WINBUFCTRL_DBN (1<<0) | ||
194 | |||
195 | /* lcd_intstatus, lcd_intenable */ | ||
196 | #define LCD_INT_IFO (0xF<<14) | ||
197 | #define LCD_INT_IFU (0xF<<10) | ||
198 | #define LCD_INT_OFO (1<<9) | ||
199 | #define LCD_INT_OFU (1<<8) | ||
200 | #define LCD_INT_WAIT (1<<3) | ||
201 | #define LCD_INT_SD (1<<2) | ||
202 | #define LCD_INT_SA (1<<1) | ||
203 | #define LCD_INT_SS (1<<0) | ||
204 | |||
205 | /* lcd_horztiming */ | ||
206 | #define LCD_HORZTIMING_HND2 (0x1FF<<18) | ||
207 | #define LCD_HORZTIMING_HND1 (0x1FF<<9) | ||
208 | #define LCD_HORZTIMING_HPW (0x1FF<<0) | ||
209 | #define LCD_HORZTIMING_HND2_N(N)(((N)-1)<<18) | ||
210 | #define LCD_HORZTIMING_HND1_N(N)(((N)-1)<<9) | ||
211 | #define LCD_HORZTIMING_HPW_N(N) (((N)-1)<<0) | ||
212 | |||
213 | /* lcd_verttiming */ | ||
214 | #define LCD_VERTTIMING_VND2 (0x1FF<<18) | ||
215 | #define LCD_VERTTIMING_VND1 (0x1FF<<9) | ||
216 | #define LCD_VERTTIMING_VPW (0x1FF<<0) | ||
217 | #define LCD_VERTTIMING_VND2_N(N)(((N)-1)<<18) | ||
218 | #define LCD_VERTTIMING_VND1_N(N)(((N)-1)<<9) | ||
219 | #define LCD_VERTTIMING_VPW_N(N) (((N)-1)<<0) | ||
220 | |||
221 | /* lcd_clkcontrol */ | ||
222 | #define LCD_CLKCONTROL_EXT (1<<22) | ||
223 | #define LCD_CLKCONTROL_DELAY (3<<20) | ||
224 | #define LCD_CLKCONTROL_CDD (1<<19) | ||
225 | #define LCD_CLKCONTROL_IB (1<<18) | ||
226 | #define LCD_CLKCONTROL_IC (1<<17) | ||
227 | #define LCD_CLKCONTROL_IH (1<<16) | ||
228 | #define LCD_CLKCONTROL_IV (1<<15) | ||
229 | #define LCD_CLKCONTROL_BF (0x1F<<10) | ||
230 | #define LCD_CLKCONTROL_PCD (0x3FF<<0) | ||
231 | #define LCD_CLKCONTROL_BF_N(N) (((N)-1)<<10) | ||
232 | #define LCD_CLKCONTROL_PCD_N(N) ((N)<<0) | ||
233 | |||
234 | /* lcd_pwmdiv */ | ||
235 | #define LCD_PWMDIV_EN (1<<31) | ||
236 | #define LCD_PWMDIV_PWMDIV (0x1FFFF<<0) | ||
237 | #define LCD_PWMDIV_PWMDIV_N(N) ((N)<<0) | ||
238 | |||
239 | /* lcd_pwmhi */ | ||
240 | #define LCD_PWMHI_PWMHI1 (0xFFFF<<16) | ||
241 | #define LCD_PWMHI_PWMHI0 (0xFFFF<<0) | ||
242 | #define LCD_PWMHI_PWMHI1_N(N) ((N)<<16) | ||
243 | #define LCD_PWMHI_PWMHI0_N(N) ((N)<<0) | ||
244 | |||
245 | /* lcd_hwccon */ | ||
246 | #define LCD_HWCCON_EN (1<<0) | ||
247 | |||
248 | /* lcd_cursorpos */ | ||
249 | #define LCD_CURSORPOS_HWCXOFF (0x1F<<27) | ||
250 | #define LCD_CURSORPOS_HWCXPOS (0x07FF<<16) | ||
251 | #define LCD_CURSORPOS_HWCYOFF (0x1F<<11) | ||
252 | #define LCD_CURSORPOS_HWCYPOS (0x07FF<<0) | ||
253 | #define LCD_CURSORPOS_HWCXOFF_N(N) ((N)<<27) | ||
254 | #define LCD_CURSORPOS_HWCXPOS_N(N) ((N)<<16) | ||
255 | #define LCD_CURSORPOS_HWCYOFF_N(N) ((N)<<11) | ||
256 | #define LCD_CURSORPOS_HWCYPOS_N(N) ((N)<<0) | ||
257 | |||
258 | /* lcd_cursorcolor */ | ||
259 | #define LCD_CURSORCOLOR_HWCA (0xFF<<24) | ||
260 | #define LCD_CURSORCOLOR_HWCR (0xFF<<16) | ||
261 | #define LCD_CURSORCOLOR_HWCG (0xFF<<8) | ||
262 | #define LCD_CURSORCOLOR_HWCB (0xFF<<0) | ||
263 | #define LCD_CURSORCOLOR_HWCA_N(N) ((N)<<24) | ||
264 | #define LCD_CURSORCOLOR_HWCR_N(N) ((N)<<16) | ||
265 | #define LCD_CURSORCOLOR_HWCG_N(N) ((N)<<8) | ||
266 | #define LCD_CURSORCOLOR_HWCB_N(N) ((N)<<0) | ||
267 | |||
268 | /* lcd_fifoctrl */ | ||
269 | #define LCD_FIFOCTRL_F3IF (1<<29) | ||
270 | #define LCD_FIFOCTRL_F3REQ (0x1F<<24) | ||
271 | #define LCD_FIFOCTRL_F2IF (1<<29) | ||
272 | #define LCD_FIFOCTRL_F2REQ (0x1F<<16) | ||
273 | #define LCD_FIFOCTRL_F1IF (1<<29) | ||
274 | #define LCD_FIFOCTRL_F1REQ (0x1F<<8) | ||
275 | #define LCD_FIFOCTRL_F0IF (1<<29) | ||
276 | #define LCD_FIFOCTRL_F0REQ (0x1F<<0) | ||
277 | #define LCD_FIFOCTRL_F3REQ_N(N) ((N-1)<<24) | ||
278 | #define LCD_FIFOCTRL_F2REQ_N(N) ((N-1)<<16) | ||
279 | #define LCD_FIFOCTRL_F1REQ_N(N) ((N-1)<<8) | ||
280 | #define LCD_FIFOCTRL_F0REQ_N(N) ((N-1)<<0) | ||
281 | |||
282 | /* lcd_outmask */ | ||
283 | #define LCD_OUTMASK_MASK (0x00FFFFFF) | ||
284 | |||
285 | /********************************************************************/ | ||
286 | #endif /* _AU1200LCD_H */ | ||
287 | /* | ||
288 | * BRIEF MODULE DESCRIPTION | ||
289 | * Hardware definitions for the Au1200 LCD controller | ||
290 | * | ||
291 | * Copyright 2004 AMD | ||
292 | * Author: AMD | ||
293 | * | ||
294 | * This program is free software; you can redistribute it and/or modify it | ||
295 | * under the terms of the GNU General Public License as published by the | ||
296 | * Free Software Foundation; either version 2 of the License, or (at your | ||
297 | * option) any later version. | ||
298 | * | ||
299 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
300 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
301 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
302 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
303 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
304 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
305 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
306 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
307 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
308 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
309 | * | ||
310 | * You should have received a copy of the GNU General Public License along | ||
311 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
312 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
313 | */ | ||
314 | |||
315 | #ifndef _AU1200LCD_H | ||
316 | #define _AU1200LCD_H | ||
317 | |||
318 | /********************************************************************/ | ||
319 | #define AU1200_LCD_ADDR 0xB5000000 | ||
320 | |||
321 | #define uint8 unsigned char | ||
322 | #define uint32 unsigned int | ||
323 | |||
324 | struct au1200_lcd { | ||
325 | volatile uint32 reserved0; | ||
326 | volatile uint32 screen; | ||
327 | volatile uint32 backcolor; | ||
328 | volatile uint32 horztiming; | ||
329 | volatile uint32 verttiming; | ||
330 | volatile uint32 clkcontrol; | ||
331 | volatile uint32 pwmdiv; | ||
332 | volatile uint32 pwmhi; | ||
333 | volatile uint32 reserved1; | ||
334 | volatile uint32 winenable; | ||
335 | volatile uint32 colorkey; | ||
336 | volatile uint32 colorkeymsk; | ||
337 | struct | ||
338 | { | ||
339 | volatile uint32 cursorctrl; | ||
340 | volatile uint32 cursorpos; | ||
341 | volatile uint32 cursorcolor0; | ||
342 | volatile uint32 cursorcolor1; | ||
343 | volatile uint32 cursorcolor2; | ||
344 | uint32 cursorcolor3; | ||
345 | } hwc; | ||
346 | volatile uint32 intstatus; | ||
347 | volatile uint32 intenable; | ||
348 | volatile uint32 outmask; | ||
349 | volatile uint32 fifoctrl; | ||
350 | uint32 reserved2[(0x0100-0x0058)/4]; | ||
351 | struct | ||
352 | { | ||
353 | volatile uint32 winctrl0; | ||
354 | volatile uint32 winctrl1; | ||
355 | volatile uint32 winctrl2; | ||
356 | volatile uint32 winbuf0; | ||
357 | volatile uint32 winbuf1; | ||
358 | volatile uint32 winbufctrl; | ||
359 | uint32 winreserved0; | ||
360 | uint32 winreserved1; | ||
361 | } window[4]; | ||
362 | |||
363 | uint32 reserved3[(0x0400-0x0180)/4]; | ||
364 | |||
365 | volatile uint32 palette[(0x0800-0x0400)/4]; | ||
366 | |||
367 | volatile uint8 cursorpattern[256]; | ||
368 | }; | ||
369 | |||
370 | /* lcd_screen */ | ||
371 | #define LCD_SCREEN_SEN (1<<31) | ||
372 | #define LCD_SCREEN_SX (0x07FF<<19) | ||
373 | #define LCD_SCREEN_SY (0x07FF<< 8) | ||
374 | #define LCD_SCREEN_SWP (1<<7) | ||
375 | #define LCD_SCREEN_SWD (1<<6) | ||
376 | #define LCD_SCREEN_PT (7<<0) | ||
377 | #define LCD_SCREEN_PT_TFT (0<<0) | ||
378 | #define LCD_SCREEN_SX_N(WIDTH) ((WIDTH-1)<<19) | ||
379 | #define LCD_SCREEN_SY_N(HEIGHT) ((HEIGHT-1)<<8) | ||
380 | #define LCD_SCREEN_PT_CSTN (1<<0) | ||
381 | #define LCD_SCREEN_PT_CDSTN (2<<0) | ||
382 | #define LCD_SCREEN_PT_M8STN (3<<0) | ||
383 | #define LCD_SCREEN_PT_M4STN (4<<0) | ||
384 | |||
385 | /* lcd_backcolor */ | ||
386 | #define LCD_BACKCOLOR_SBGR (0xFF<<16) | ||
387 | #define LCD_BACKCOLOR_SBGG (0xFF<<8) | ||
388 | #define LCD_BACKCOLOR_SBGB (0xFF<<0) | ||
389 | #define LCD_BACKCOLOR_SBGR_N(N) ((N)<<16) | ||
390 | #define LCD_BACKCOLOR_SBGG_N(N) ((N)<<8) | ||
391 | #define LCD_BACKCOLOR_SBGB_N(N) ((N)<<0) | ||
392 | |||
393 | /* lcd_winenable */ | ||
394 | #define LCD_WINENABLE_WEN3 (1<<3) | ||
395 | #define LCD_WINENABLE_WEN2 (1<<2) | ||
396 | #define LCD_WINENABLE_WEN1 (1<<1) | ||
397 | #define LCD_WINENABLE_WEN0 (1<<0) | ||
398 | |||
399 | /* lcd_colorkey */ | ||
400 | #define LCD_COLORKEY_CKR (0xFF<<16) | ||
401 | #define LCD_COLORKEY_CKG (0xFF<<8) | ||
402 | #define LCD_COLORKEY_CKB (0xFF<<0) | ||
403 | #define LCD_COLORKEY_CKR_N(N) ((N)<<16) | ||
404 | #define LCD_COLORKEY_CKG_N(N) ((N)<<8) | ||
405 | #define LCD_COLORKEY_CKB_N(N) ((N)<<0) | ||
406 | |||
407 | /* lcd_colorkeymsk */ | ||
408 | #define LCD_COLORKEYMSK_CKMR (0xFF<<16) | ||
409 | #define LCD_COLORKEYMSK_CKMG (0xFF<<8) | ||
410 | #define LCD_COLORKEYMSK_CKMB (0xFF<<0) | ||
411 | #define LCD_COLORKEYMSK_CKMR_N(N) ((N)<<16) | ||
412 | #define LCD_COLORKEYMSK_CKMG_N(N) ((N)<<8) | ||
413 | #define LCD_COLORKEYMSK_CKMB_N(N) ((N)<<0) | ||
414 | |||
415 | /* lcd windows control 0 */ | ||
416 | #define LCD_WINCTRL0_OX (0x07FF<<21) | ||
417 | #define LCD_WINCTRL0_OY (0x07FF<<10) | ||
418 | #define LCD_WINCTRL0_A (0x00FF<<2) | ||
419 | #define LCD_WINCTRL0_AEN (1<<1) | ||
420 | #define LCD_WINCTRL0_OX_N(N) ((N)<<21) | ||
421 | #define LCD_WINCTRL0_OY_N(N) ((N)<<10) | ||
422 | #define LCD_WINCTRL0_A_N(N) ((N)<<2) | ||
423 | |||
424 | /* lcd windows control 1 */ | ||
425 | #define LCD_WINCTRL1_PRI (3<<30) | ||
426 | #define LCD_WINCTRL1_PIPE (1<<29) | ||
427 | #define LCD_WINCTRL1_FRM (0xF<<25) | ||
428 | #define LCD_WINCTRL1_CCO (1<<24) | ||
429 | #define LCD_WINCTRL1_PO (3<<22) | ||
430 | #define LCD_WINCTRL1_SZX (0x07FF<<11) | ||
431 | #define LCD_WINCTRL1_SZY (0x07FF<<0) | ||
432 | #define LCD_WINCTRL1_FRM_1BPP (0<<25) | ||
433 | #define LCD_WINCTRL1_FRM_2BPP (1<<25) | ||
434 | #define LCD_WINCTRL1_FRM_4BPP (2<<25) | ||
435 | #define LCD_WINCTRL1_FRM_8BPP (3<<25) | ||
436 | #define LCD_WINCTRL1_FRM_12BPP (4<<25) | ||
437 | #define LCD_WINCTRL1_FRM_16BPP655 (5<<25) | ||
438 | #define LCD_WINCTRL1_FRM_16BPP565 (6<<25) | ||
439 | #define LCD_WINCTRL1_FRM_16BPP556 (7<<25) | ||
440 | #define LCD_WINCTRL1_FRM_16BPPI1555 (8<<25) | ||
441 | #define LCD_WINCTRL1_FRM_16BPPI5551 (9<<25) | ||
442 | #define LCD_WINCTRL1_FRM_16BPPA1555 (10<<25) | ||
443 | #define LCD_WINCTRL1_FRM_16BPPA5551 (11<<25) | ||
444 | #define LCD_WINCTRL1_FRM_24BPP (12<<25) | ||
445 | #define LCD_WINCTRL1_FRM_32BPP (13<<25) | ||
446 | #define LCD_WINCTRL1_PRI_N(N) ((N)<<30) | ||
447 | #define LCD_WINCTRL1_PO_00 (0<<22) | ||
448 | #define LCD_WINCTRL1_PO_01 (1<<22) | ||
449 | #define LCD_WINCTRL1_PO_10 (2<<22) | ||
450 | #define LCD_WINCTRL1_PO_11 (3<<22) | ||
451 | #define LCD_WINCTRL1_SZX_N(N) ((N-1)<<11) | ||
452 | #define LCD_WINCTRL1_SZY_N(N) ((N-1)<<0) | ||
453 | |||
454 | /* lcd windows control 2 */ | ||
455 | #define LCD_WINCTRL2_CKMODE (3<<24) | ||
456 | #define LCD_WINCTRL2_DBM (1<<23) | ||
457 | #define LCD_WINCTRL2_RAM (3<<21) | ||
458 | #define LCD_WINCTRL2_BX (0x1FFF<<8) | ||
459 | #define LCD_WINCTRL2_SCX (0xF<<4) | ||
460 | #define LCD_WINCTRL2_SCY (0xF<<0) | ||
461 | #define LCD_WINCTRL2_CKMODE_00 (0<<24) | ||
462 | #define LCD_WINCTRL2_CKMODE_01 (1<<24) | ||
463 | #define LCD_WINCTRL2_CKMODE_10 (2<<24) | ||
464 | #define LCD_WINCTRL2_CKMODE_11 (3<<24) | ||
465 | #define LCD_WINCTRL2_RAM_NONE (0<<21) | ||
466 | #define LCD_WINCTRL2_RAM_PALETTE (1<<21) | ||
467 | #define LCD_WINCTRL2_RAM_GAMMA (2<<21) | ||
468 | #define LCD_WINCTRL2_RAM_BUFFER (3<<21) | ||
469 | #define LCD_WINCTRL2_BX_N(N) ((N)<<8) | ||
470 | #define LCD_WINCTRL2_SCX_1 (0<<4) | ||
471 | #define LCD_WINCTRL2_SCX_2 (1<<4) | ||
472 | #define LCD_WINCTRL2_SCX_4 (2<<4) | ||
473 | #define LCD_WINCTRL2_SCY_1 (0<<0) | ||
474 | #define LCD_WINCTRL2_SCY_2 (1<<0) | ||
475 | #define LCD_WINCTRL2_SCY_4 (2<<0) | ||
476 | |||
477 | /* lcd windows buffer control */ | ||
478 | #define LCD_WINBUFCTRL_DB (1<<1) | ||
479 | #define LCD_WINBUFCTRL_DBN (1<<0) | ||
480 | |||
481 | /* lcd_intstatus, lcd_intenable */ | ||
482 | #define LCD_INT_IFO (0xF<<14) | ||
483 | #define LCD_INT_IFU (0xF<<10) | ||
484 | #define LCD_INT_OFO (1<<9) | ||
485 | #define LCD_INT_OFU (1<<8) | ||
486 | #define LCD_INT_WAIT (1<<3) | ||
487 | #define LCD_INT_SD (1<<2) | ||
488 | #define LCD_INT_SA (1<<1) | ||
489 | #define LCD_INT_SS (1<<0) | ||
490 | |||
491 | /* lcd_horztiming */ | ||
492 | #define LCD_HORZTIMING_HND2 (0x1FF<<18) | ||
493 | #define LCD_HORZTIMING_HND1 (0x1FF<<9) | ||
494 | #define LCD_HORZTIMING_HPW (0x1FF<<0) | ||
495 | #define LCD_HORZTIMING_HND2_N(N)(((N)-1)<<18) | ||
496 | #define LCD_HORZTIMING_HND1_N(N)(((N)-1)<<9) | ||
497 | #define LCD_HORZTIMING_HPW_N(N) (((N)-1)<<0) | ||
498 | |||
499 | /* lcd_verttiming */ | ||
500 | #define LCD_VERTTIMING_VND2 (0x1FF<<18) | ||
501 | #define LCD_VERTTIMING_VND1 (0x1FF<<9) | ||
502 | #define LCD_VERTTIMING_VPW (0x1FF<<0) | ||
503 | #define LCD_VERTTIMING_VND2_N(N)(((N)-1)<<18) | ||
504 | #define LCD_VERTTIMING_VND1_N(N)(((N)-1)<<9) | ||
505 | #define LCD_VERTTIMING_VPW_N(N) (((N)-1)<<0) | ||
506 | |||
507 | /* lcd_clkcontrol */ | ||
508 | #define LCD_CLKCONTROL_EXT (1<<22) | ||
509 | #define LCD_CLKCONTROL_DELAY (3<<20) | ||
510 | #define LCD_CLKCONTROL_CDD (1<<19) | ||
511 | #define LCD_CLKCONTROL_IB (1<<18) | ||
512 | #define LCD_CLKCONTROL_IC (1<<17) | ||
513 | #define LCD_CLKCONTROL_IH (1<<16) | ||
514 | #define LCD_CLKCONTROL_IV (1<<15) | ||
515 | #define LCD_CLKCONTROL_BF (0x1F<<10) | ||
516 | #define LCD_CLKCONTROL_PCD (0x3FF<<0) | ||
517 | #define LCD_CLKCONTROL_BF_N(N) (((N)-1)<<10) | ||
518 | #define LCD_CLKCONTROL_PCD_N(N) ((N)<<0) | ||
519 | |||
520 | /* lcd_pwmdiv */ | ||
521 | #define LCD_PWMDIV_EN (1<<31) | ||
522 | #define LCD_PWMDIV_PWMDIV (0x1FFFF<<0) | ||
523 | #define LCD_PWMDIV_PWMDIV_N(N) ((N)<<0) | ||
524 | |||
525 | /* lcd_pwmhi */ | ||
526 | #define LCD_PWMHI_PWMHI1 (0xFFFF<<16) | ||
527 | #define LCD_PWMHI_PWMHI0 (0xFFFF<<0) | ||
528 | #define LCD_PWMHI_PWMHI1_N(N) ((N)<<16) | ||
529 | #define LCD_PWMHI_PWMHI0_N(N) ((N)<<0) | ||
530 | |||
531 | /* lcd_hwccon */ | ||
532 | #define LCD_HWCCON_EN (1<<0) | ||
533 | |||
534 | /* lcd_cursorpos */ | ||
535 | #define LCD_CURSORPOS_HWCXOFF (0x1F<<27) | ||
536 | #define LCD_CURSORPOS_HWCXPOS (0x07FF<<16) | ||
537 | #define LCD_CURSORPOS_HWCYOFF (0x1F<<11) | ||
538 | #define LCD_CURSORPOS_HWCYPOS (0x07FF<<0) | ||
539 | #define LCD_CURSORPOS_HWCXOFF_N(N) ((N)<<27) | ||
540 | #define LCD_CURSORPOS_HWCXPOS_N(N) ((N)<<16) | ||
541 | #define LCD_CURSORPOS_HWCYOFF_N(N) ((N)<<11) | ||
542 | #define LCD_CURSORPOS_HWCYPOS_N(N) ((N)<<0) | ||
543 | |||
544 | /* lcd_cursorcolor */ | ||
545 | #define LCD_CURSORCOLOR_HWCA (0xFF<<24) | ||
546 | #define LCD_CURSORCOLOR_HWCR (0xFF<<16) | ||
547 | #define LCD_CURSORCOLOR_HWCG (0xFF<<8) | ||
548 | #define LCD_CURSORCOLOR_HWCB (0xFF<<0) | ||
549 | #define LCD_CURSORCOLOR_HWCA_N(N) ((N)<<24) | ||
550 | #define LCD_CURSORCOLOR_HWCR_N(N) ((N)<<16) | ||
551 | #define LCD_CURSORCOLOR_HWCG_N(N) ((N)<<8) | ||
552 | #define LCD_CURSORCOLOR_HWCB_N(N) ((N)<<0) | ||
553 | |||
554 | /* lcd_fifoctrl */ | ||
555 | #define LCD_FIFOCTRL_F3IF (1<<29) | ||
556 | #define LCD_FIFOCTRL_F3REQ (0x1F<<24) | ||
557 | #define LCD_FIFOCTRL_F2IF (1<<29) | ||
558 | #define LCD_FIFOCTRL_F2REQ (0x1F<<16) | ||
559 | #define LCD_FIFOCTRL_F1IF (1<<29) | ||
560 | #define LCD_FIFOCTRL_F1REQ (0x1F<<8) | ||
561 | #define LCD_FIFOCTRL_F0IF (1<<29) | ||
562 | #define LCD_FIFOCTRL_F0REQ (0x1F<<0) | ||
563 | #define LCD_FIFOCTRL_F3REQ_N(N) ((N-1)<<24) | ||
564 | #define LCD_FIFOCTRL_F2REQ_N(N) ((N-1)<<16) | ||
565 | #define LCD_FIFOCTRL_F1REQ_N(N) ((N-1)<<8) | ||
566 | #define LCD_FIFOCTRL_F0REQ_N(N) ((N-1)<<0) | ||
567 | |||
568 | /* lcd_outmask */ | ||
569 | #define LCD_OUTMASK_MASK (0x00FFFFFF) | ||
570 | |||
571 | /********************************************************************/ | ||
572 | #endif /* _AU1200LCD_H */ | ||
diff --git a/drivers/video/chipsfb.c b/drivers/video/chipsfb.c index bc061d4ec786..72ff6bf75e5e 100644 --- a/drivers/video/chipsfb.c +++ b/drivers/video/chipsfb.c | |||
@@ -178,8 +178,6 @@ struct chips_init_reg { | |||
178 | unsigned char data; | 178 | unsigned char data; |
179 | }; | 179 | }; |
180 | 180 | ||
181 | #define N_ELTS(x) (sizeof(x) / sizeof(x[0])) | ||
182 | |||
183 | static struct chips_init_reg chips_init_sr[] = { | 181 | static struct chips_init_reg chips_init_sr[] = { |
184 | { 0x00, 0x03 }, | 182 | { 0x00, 0x03 }, |
185 | { 0x01, 0x01 }, | 183 | { 0x01, 0x01 }, |
@@ -287,18 +285,18 @@ static void __init chips_hw_init(void) | |||
287 | { | 285 | { |
288 | int i; | 286 | int i; |
289 | 287 | ||
290 | for (i = 0; i < N_ELTS(chips_init_xr); ++i) | 288 | for (i = 0; i < ARRAY_SIZE(chips_init_xr); ++i) |
291 | write_xr(chips_init_xr[i].addr, chips_init_xr[i].data); | 289 | write_xr(chips_init_xr[i].addr, chips_init_xr[i].data); |
292 | outb(0x29, 0x3c2); /* set misc output reg */ | 290 | outb(0x29, 0x3c2); /* set misc output reg */ |
293 | for (i = 0; i < N_ELTS(chips_init_sr); ++i) | 291 | for (i = 0; i < ARRAY_SIZE(chips_init_sr); ++i) |
294 | write_sr(chips_init_sr[i].addr, chips_init_sr[i].data); | 292 | write_sr(chips_init_sr[i].addr, chips_init_sr[i].data); |
295 | for (i = 0; i < N_ELTS(chips_init_gr); ++i) | 293 | for (i = 0; i < ARRAY_SIZE(chips_init_gr); ++i) |
296 | write_gr(chips_init_gr[i].addr, chips_init_gr[i].data); | 294 | write_gr(chips_init_gr[i].addr, chips_init_gr[i].data); |
297 | for (i = 0; i < N_ELTS(chips_init_ar); ++i) | 295 | for (i = 0; i < ARRAY_SIZE(chips_init_ar); ++i) |
298 | write_ar(chips_init_ar[i].addr, chips_init_ar[i].data); | 296 | write_ar(chips_init_ar[i].addr, chips_init_ar[i].data); |
299 | for (i = 0; i < N_ELTS(chips_init_cr); ++i) | 297 | for (i = 0; i < ARRAY_SIZE(chips_init_cr); ++i) |
300 | write_cr(chips_init_cr[i].addr, chips_init_cr[i].data); | 298 | write_cr(chips_init_cr[i].addr, chips_init_cr[i].data); |
301 | for (i = 0; i < N_ELTS(chips_init_fr); ++i) | 299 | for (i = 0; i < ARRAY_SIZE(chips_init_fr); ++i) |
302 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); | 300 | write_fr(chips_init_fr[i].addr, chips_init_fr[i].data); |
303 | } | 301 | } |
304 | 302 | ||
diff --git a/drivers/video/console/Kconfig b/drivers/video/console/Kconfig index 6ee449858a5c..4444bef68fba 100644 --- a/drivers/video/console/Kconfig +++ b/drivers/video/console/Kconfig | |||
@@ -26,6 +26,30 @@ config VGA_CONSOLE | |||
26 | # fi | 26 | # fi |
27 | # fi | 27 | # fi |
28 | 28 | ||
29 | config VGACON_SOFT_SCROLLBACK | ||
30 | bool "Enable Scrollback Buffer in System RAM" | ||
31 | depends on VGA_CONSOLE | ||
32 | default n | ||
33 | help | ||
34 | The scrollback buffer of the standard VGA console is located in | ||
35 | the VGA RAM. The size of this RAM is fixed and is quite small. | ||
36 | If you require a larger scrollback buffer, this can be placed in | ||
37 | System RAM which is dynamically allocated during intialization. | ||
38 | Placing the scrollback buffer in System RAM will slightly slow | ||
39 | down the console. | ||
40 | |||
41 | If you want this feature, say 'Y' here and enter the amount of | ||
42 | RAM to allocate for this buffer. If unsure, say 'N'. | ||
43 | |||
44 | config VGACON_SOFT_SCROLLBACK_SIZE | ||
45 | int "Scrollback Buffer Size (in KB)" | ||
46 | depends on VGACON_SOFT_SCROLLBACK | ||
47 | default "64" | ||
48 | help | ||
49 | Enter the amount of System RAM to allocate for the scrollback | ||
50 | buffer. Each 64KB will give you approximately 16 80x25 | ||
51 | screenfuls of scrollback buffer | ||
52 | |||
29 | config VIDEO_SELECT | 53 | config VIDEO_SELECT |
30 | bool "Video mode selection support" | 54 | bool "Video mode selection support" |
31 | depends on X86 && VGA_CONSOLE | 55 | depends on X86 && VGA_CONSOLE |
diff --git a/drivers/video/console/fonts.c b/drivers/video/console/fonts.c index 4fd07d9eca03..0cc1bfda76a6 100644 --- a/drivers/video/console/fonts.c +++ b/drivers/video/console/fonts.c | |||
@@ -66,7 +66,7 @@ static const struct font_desc *fonts[] = { | |||
66 | #endif | 66 | #endif |
67 | }; | 67 | }; |
68 | 68 | ||
69 | #define num_fonts (sizeof(fonts)/sizeof(*fonts)) | 69 | #define num_fonts ARRAY_SIZE(fonts) |
70 | 70 | ||
71 | #ifdef NO_FONTS | 71 | #ifdef NO_FONTS |
72 | #error No fonts configured. | 72 | #error No fonts configured. |
diff --git a/drivers/video/console/newport_con.c b/drivers/video/console/newport_con.c index 762c7a593141..e99fe30e568c 100644 --- a/drivers/video/console/newport_con.c +++ b/drivers/video/console/newport_con.c | |||
@@ -149,7 +149,7 @@ static inline void newport_clear_lines(int ystart, int yend, int ci) | |||
149 | newport_clear_screen(0, ystart, 1280 + 63, yend, ci); | 149 | newport_clear_screen(0, ystart, 1280 + 63, yend, ci); |
150 | } | 150 | } |
151 | 151 | ||
152 | void newport_reset(void) | 152 | static void newport_reset(void) |
153 | { | 153 | { |
154 | unsigned short treg; | 154 | unsigned short treg; |
155 | int i; | 155 | int i; |
@@ -193,7 +193,7 @@ void newport_reset(void) | |||
193 | * calculate the actual screen size by reading | 193 | * calculate the actual screen size by reading |
194 | * the video timing out of the VC2 | 194 | * the video timing out of the VC2 |
195 | */ | 195 | */ |
196 | void newport_get_screensize(void) | 196 | static void newport_get_screensize(void) |
197 | { | 197 | { |
198 | int i, cols; | 198 | int i, cols; |
199 | unsigned short ventry, treg; | 199 | unsigned short ventry, treg; |
diff --git a/drivers/video/console/vgacon.c b/drivers/video/console/vgacon.c index 5a86978537d2..d5a04b68c4d4 100644 --- a/drivers/video/console/vgacon.c +++ b/drivers/video/console/vgacon.c | |||
@@ -93,7 +93,6 @@ static u8 vgacon_build_attr(struct vc_data *c, u8 color, u8 intensity, | |||
93 | static void vgacon_invert_region(struct vc_data *c, u16 * p, int count); | 93 | static void vgacon_invert_region(struct vc_data *c, u16 * p, int count); |
94 | static unsigned long vgacon_uni_pagedir[2]; | 94 | static unsigned long vgacon_uni_pagedir[2]; |
95 | 95 | ||
96 | |||
97 | /* Description of the hardware situation */ | 96 | /* Description of the hardware situation */ |
98 | static unsigned long vga_vram_base; /* Base of video memory */ | 97 | static unsigned long vga_vram_base; /* Base of video memory */ |
99 | static unsigned long vga_vram_end; /* End of video memory */ | 98 | static unsigned long vga_vram_end; /* End of video memory */ |
@@ -161,6 +160,201 @@ static inline void write_vga(unsigned char reg, unsigned int val) | |||
161 | spin_unlock_irqrestore(&vga_lock, flags); | 160 | spin_unlock_irqrestore(&vga_lock, flags); |
162 | } | 161 | } |
163 | 162 | ||
163 | static inline void vga_set_mem_top(struct vc_data *c) | ||
164 | { | ||
165 | write_vga(12, (c->vc_visible_origin - vga_vram_base) / 2); | ||
166 | } | ||
167 | |||
168 | #ifdef CONFIG_VGACON_SOFT_SCROLLBACK | ||
169 | #include <linux/bootmem.h> | ||
170 | /* software scrollback */ | ||
171 | static void *vgacon_scrollback; | ||
172 | static int vgacon_scrollback_tail; | ||
173 | static int vgacon_scrollback_size; | ||
174 | static int vgacon_scrollback_rows; | ||
175 | static int vgacon_scrollback_cnt; | ||
176 | static int vgacon_scrollback_cur; | ||
177 | static int vgacon_scrollback_save; | ||
178 | static int vgacon_scrollback_restore; | ||
179 | |||
180 | static void vgacon_scrollback_init(int pitch) | ||
181 | { | ||
182 | int rows = CONFIG_VGACON_SOFT_SCROLLBACK_SIZE * 1024/pitch; | ||
183 | |||
184 | if (vgacon_scrollback) { | ||
185 | vgacon_scrollback_cnt = 0; | ||
186 | vgacon_scrollback_tail = 0; | ||
187 | vgacon_scrollback_cur = 0; | ||
188 | vgacon_scrollback_rows = rows - 1; | ||
189 | vgacon_scrollback_size = rows * pitch; | ||
190 | } | ||
191 | } | ||
192 | |||
193 | static void __init vgacon_scrollback_startup(void) | ||
194 | { | ||
195 | vgacon_scrollback = alloc_bootmem(CONFIG_VGACON_SOFT_SCROLLBACK_SIZE | ||
196 | * 1024); | ||
197 | vgacon_scrollback_init(vga_video_num_columns * 2); | ||
198 | } | ||
199 | |||
200 | static void vgacon_scrollback_update(struct vc_data *c, int t, int count) | ||
201 | { | ||
202 | void *p; | ||
203 | |||
204 | if (!vgacon_scrollback_size || c->vc_num != fg_console) | ||
205 | return; | ||
206 | |||
207 | p = (void *) (c->vc_origin + t * c->vc_size_row); | ||
208 | |||
209 | while (count--) { | ||
210 | scr_memcpyw(vgacon_scrollback + vgacon_scrollback_tail, | ||
211 | p, c->vc_size_row); | ||
212 | vgacon_scrollback_cnt++; | ||
213 | p += c->vc_size_row; | ||
214 | vgacon_scrollback_tail += c->vc_size_row; | ||
215 | |||
216 | if (vgacon_scrollback_tail >= vgacon_scrollback_size) | ||
217 | vgacon_scrollback_tail = 0; | ||
218 | |||
219 | if (vgacon_scrollback_cnt > vgacon_scrollback_rows) | ||
220 | vgacon_scrollback_cnt = vgacon_scrollback_rows; | ||
221 | |||
222 | vgacon_scrollback_cur = vgacon_scrollback_cnt; | ||
223 | } | ||
224 | } | ||
225 | |||
226 | static void vgacon_restore_screen(struct vc_data *c) | ||
227 | { | ||
228 | vgacon_scrollback_save = 0; | ||
229 | |||
230 | if (!vga_is_gfx && !vgacon_scrollback_restore) { | ||
231 | scr_memcpyw((u16 *) c->vc_origin, (u16 *) c->vc_screenbuf, | ||
232 | c->vc_screenbuf_size > vga_vram_size ? | ||
233 | vga_vram_size : c->vc_screenbuf_size); | ||
234 | vgacon_scrollback_restore = 1; | ||
235 | vgacon_scrollback_cur = vgacon_scrollback_cnt; | ||
236 | } | ||
237 | } | ||
238 | |||
239 | static int vgacon_scrolldelta(struct vc_data *c, int lines) | ||
240 | { | ||
241 | int start, end, count, soff, diff; | ||
242 | void *d, *s; | ||
243 | |||
244 | if (!lines) { | ||
245 | c->vc_visible_origin = c->vc_origin; | ||
246 | vga_set_mem_top(c); | ||
247 | return 1; | ||
248 | } | ||
249 | |||
250 | if (!vgacon_scrollback) | ||
251 | return 1; | ||
252 | |||
253 | if (!vgacon_scrollback_save) { | ||
254 | vgacon_cursor(c, CM_ERASE); | ||
255 | vgacon_save_screen(c); | ||
256 | vgacon_scrollback_save = 1; | ||
257 | } | ||
258 | |||
259 | vgacon_scrollback_restore = 0; | ||
260 | start = vgacon_scrollback_cur + lines; | ||
261 | end = start + abs(lines); | ||
262 | |||
263 | if (start < 0) | ||
264 | start = 0; | ||
265 | |||
266 | if (start > vgacon_scrollback_cnt) | ||
267 | start = vgacon_scrollback_cnt; | ||
268 | |||
269 | if (end < 0) | ||
270 | end = 0; | ||
271 | |||
272 | if (end > vgacon_scrollback_cnt) | ||
273 | end = vgacon_scrollback_cnt; | ||
274 | |||
275 | vgacon_scrollback_cur = start; | ||
276 | count = end - start; | ||
277 | soff = vgacon_scrollback_tail - ((vgacon_scrollback_cnt - end) * | ||
278 | c->vc_size_row); | ||
279 | soff -= count * c->vc_size_row; | ||
280 | |||
281 | if (soff < 0) | ||
282 | soff += vgacon_scrollback_size; | ||
283 | |||
284 | count = vgacon_scrollback_cnt - start; | ||
285 | |||
286 | if (count > c->vc_rows) | ||
287 | count = c->vc_rows; | ||
288 | |||
289 | diff = c->vc_rows - count; | ||
290 | |||
291 | d = (void *) c->vc_origin; | ||
292 | s = (void *) c->vc_screenbuf; | ||
293 | |||
294 | while (count--) { | ||
295 | scr_memcpyw(d, vgacon_scrollback + soff, c->vc_size_row); | ||
296 | d += c->vc_size_row; | ||
297 | soff += c->vc_size_row; | ||
298 | |||
299 | if (soff >= vgacon_scrollback_size) | ||
300 | soff = 0; | ||
301 | } | ||
302 | |||
303 | if (diff == c->vc_rows) { | ||
304 | vgacon_cursor(c, CM_MOVE); | ||
305 | } else { | ||
306 | while (diff--) { | ||
307 | scr_memcpyw(d, s, c->vc_size_row); | ||
308 | d += c->vc_size_row; | ||
309 | s += c->vc_size_row; | ||
310 | } | ||
311 | } | ||
312 | |||
313 | return 1; | ||
314 | } | ||
315 | #else | ||
316 | #define vgacon_scrollback_startup(...) do { } while (0) | ||
317 | #define vgacon_scrollback_init(...) do { } while (0) | ||
318 | #define vgacon_scrollback_update(...) do { } while (0) | ||
319 | |||
320 | static void vgacon_restore_screen(struct vc_data *c) | ||
321 | { | ||
322 | if (c->vc_origin != c->vc_visible_origin) | ||
323 | vgacon_scrolldelta(c, 0); | ||
324 | } | ||
325 | |||
326 | static int vgacon_scrolldelta(struct vc_data *c, int lines) | ||
327 | { | ||
328 | if (!lines) /* Turn scrollback off */ | ||
329 | c->vc_visible_origin = c->vc_origin; | ||
330 | else { | ||
331 | int margin = c->vc_size_row * 4; | ||
332 | int ul, we, p, st; | ||
333 | |||
334 | if (vga_rolled_over > | ||
335 | (c->vc_scr_end - vga_vram_base) + margin) { | ||
336 | ul = c->vc_scr_end - vga_vram_base; | ||
337 | we = vga_rolled_over + c->vc_size_row; | ||
338 | } else { | ||
339 | ul = 0; | ||
340 | we = vga_vram_size; | ||
341 | } | ||
342 | p = (c->vc_visible_origin - vga_vram_base - ul + we) % we + | ||
343 | lines * c->vc_size_row; | ||
344 | st = (c->vc_origin - vga_vram_base - ul + we) % we; | ||
345 | if (st < 2 * margin) | ||
346 | margin = 0; | ||
347 | if (p < margin) | ||
348 | p = 0; | ||
349 | if (p > st - margin) | ||
350 | p = st; | ||
351 | c->vc_visible_origin = vga_vram_base + (p + ul) % we; | ||
352 | } | ||
353 | vga_set_mem_top(c); | ||
354 | return 1; | ||
355 | } | ||
356 | #endif /* CONFIG_VGACON_SOFT_SCROLLBACK */ | ||
357 | |||
164 | static const char __init *vgacon_startup(void) | 358 | static const char __init *vgacon_startup(void) |
165 | { | 359 | { |
166 | const char *display_desc = NULL; | 360 | const char *display_desc = NULL; |
@@ -330,7 +524,7 @@ static const char __init *vgacon_startup(void) | |||
330 | 524 | ||
331 | vgacon_xres = ORIG_VIDEO_COLS * VGA_FONTWIDTH; | 525 | vgacon_xres = ORIG_VIDEO_COLS * VGA_FONTWIDTH; |
332 | vgacon_yres = vga_scan_lines; | 526 | vgacon_yres = vga_scan_lines; |
333 | 527 | vgacon_scrollback_startup(); | |
334 | return display_desc; | 528 | return display_desc; |
335 | } | 529 | } |
336 | 530 | ||
@@ -357,11 +551,6 @@ static void vgacon_init(struct vc_data *c, int init) | |||
357 | con_set_default_unimap(c); | 551 | con_set_default_unimap(c); |
358 | } | 552 | } |
359 | 553 | ||
360 | static inline void vga_set_mem_top(struct vc_data *c) | ||
361 | { | ||
362 | write_vga(12, (c->vc_visible_origin - vga_vram_base) / 2); | ||
363 | } | ||
364 | |||
365 | static void vgacon_deinit(struct vc_data *c) | 554 | static void vgacon_deinit(struct vc_data *c) |
366 | { | 555 | { |
367 | /* When closing the last console, reset video origin */ | 556 | /* When closing the last console, reset video origin */ |
@@ -433,29 +622,37 @@ static void vgacon_set_cursor_size(int xpos, int from, int to) | |||
433 | cursor_size_lastto = to; | 622 | cursor_size_lastto = to; |
434 | 623 | ||
435 | spin_lock_irqsave(&vga_lock, flags); | 624 | spin_lock_irqsave(&vga_lock, flags); |
436 | outb_p(0x0a, vga_video_port_reg); /* Cursor start */ | 625 | if (vga_video_type >= VIDEO_TYPE_VGAC) { |
437 | curs = inb_p(vga_video_port_val); | 626 | outb_p(VGA_CRTC_CURSOR_START, vga_video_port_reg); |
438 | outb_p(0x0b, vga_video_port_reg); /* Cursor end */ | 627 | curs = inb_p(vga_video_port_val); |
439 | cure = inb_p(vga_video_port_val); | 628 | outb_p(VGA_CRTC_CURSOR_END, vga_video_port_reg); |
629 | cure = inb_p(vga_video_port_val); | ||
630 | } else { | ||
631 | curs = 0; | ||
632 | cure = 0; | ||
633 | } | ||
440 | 634 | ||
441 | curs = (curs & 0xc0) | from; | 635 | curs = (curs & 0xc0) | from; |
442 | cure = (cure & 0xe0) | to; | 636 | cure = (cure & 0xe0) | to; |
443 | 637 | ||
444 | outb_p(0x0a, vga_video_port_reg); /* Cursor start */ | 638 | outb_p(VGA_CRTC_CURSOR_START, vga_video_port_reg); |
445 | outb_p(curs, vga_video_port_val); | 639 | outb_p(curs, vga_video_port_val); |
446 | outb_p(0x0b, vga_video_port_reg); /* Cursor end */ | 640 | outb_p(VGA_CRTC_CURSOR_END, vga_video_port_reg); |
447 | outb_p(cure, vga_video_port_val); | 641 | outb_p(cure, vga_video_port_val); |
448 | spin_unlock_irqrestore(&vga_lock, flags); | 642 | spin_unlock_irqrestore(&vga_lock, flags); |
449 | } | 643 | } |
450 | 644 | ||
451 | static void vgacon_cursor(struct vc_data *c, int mode) | 645 | static void vgacon_cursor(struct vc_data *c, int mode) |
452 | { | 646 | { |
453 | if (c->vc_origin != c->vc_visible_origin) | 647 | vgacon_restore_screen(c); |
454 | vgacon_scrolldelta(c, 0); | 648 | |
455 | switch (mode) { | 649 | switch (mode) { |
456 | case CM_ERASE: | 650 | case CM_ERASE: |
457 | write_vga(14, (c->vc_pos - vga_vram_base) / 2); | 651 | write_vga(14, (c->vc_pos - vga_vram_base) / 2); |
458 | vgacon_set_cursor_size(c->vc_x, 31, 30); | 652 | if (vga_video_type >= VIDEO_TYPE_VGAC) |
653 | vgacon_set_cursor_size(c->vc_x, 31, 30); | ||
654 | else | ||
655 | vgacon_set_cursor_size(c->vc_x, 31, 31); | ||
459 | break; | 656 | break; |
460 | 657 | ||
461 | case CM_MOVE: | 658 | case CM_MOVE: |
@@ -493,7 +690,10 @@ static void vgacon_cursor(struct vc_data *c, int mode) | |||
493 | 10 ? 1 : 2)); | 690 | 10 ? 1 : 2)); |
494 | break; | 691 | break; |
495 | case CUR_NONE: | 692 | case CUR_NONE: |
496 | vgacon_set_cursor_size(c->vc_x, 31, 30); | 693 | if (vga_video_type >= VIDEO_TYPE_VGAC) |
694 | vgacon_set_cursor_size(c->vc_x, 31, 30); | ||
695 | else | ||
696 | vgacon_set_cursor_size(c->vc_x, 31, 31); | ||
497 | break; | 697 | break; |
498 | default: | 698 | default: |
499 | vgacon_set_cursor_size(c->vc_x, 1, | 699 | vgacon_set_cursor_size(c->vc_x, 1, |
@@ -595,6 +795,7 @@ static int vgacon_switch(struct vc_data *c) | |||
595 | vgacon_doresize(c, c->vc_cols, c->vc_rows); | 795 | vgacon_doresize(c, c->vc_cols, c->vc_rows); |
596 | } | 796 | } |
597 | 797 | ||
798 | vgacon_scrollback_init(c->vc_size_row); | ||
598 | return 0; /* Redrawing not needed */ | 799 | return 0; /* Redrawing not needed */ |
599 | } | 800 | } |
600 | 801 | ||
@@ -1062,37 +1263,6 @@ static int vgacon_resize(struct vc_data *c, unsigned int width, | |||
1062 | return 0; | 1263 | return 0; |
1063 | } | 1264 | } |
1064 | 1265 | ||
1065 | static int vgacon_scrolldelta(struct vc_data *c, int lines) | ||
1066 | { | ||
1067 | if (!lines) /* Turn scrollback off */ | ||
1068 | c->vc_visible_origin = c->vc_origin; | ||
1069 | else { | ||
1070 | int margin = c->vc_size_row * 4; | ||
1071 | int ul, we, p, st; | ||
1072 | |||
1073 | if (vga_rolled_over > | ||
1074 | (c->vc_scr_end - vga_vram_base) + margin) { | ||
1075 | ul = c->vc_scr_end - vga_vram_base; | ||
1076 | we = vga_rolled_over + c->vc_size_row; | ||
1077 | } else { | ||
1078 | ul = 0; | ||
1079 | we = vga_vram_size; | ||
1080 | } | ||
1081 | p = (c->vc_visible_origin - vga_vram_base - ul + we) % we + | ||
1082 | lines * c->vc_size_row; | ||
1083 | st = (c->vc_origin - vga_vram_base - ul + we) % we; | ||
1084 | if (st < 2 * margin) | ||
1085 | margin = 0; | ||
1086 | if (p < margin) | ||
1087 | p = 0; | ||
1088 | if (p > st - margin) | ||
1089 | p = st; | ||
1090 | c->vc_visible_origin = vga_vram_base + (p + ul) % we; | ||
1091 | } | ||
1092 | vga_set_mem_top(c); | ||
1093 | return 1; | ||
1094 | } | ||
1095 | |||
1096 | static int vgacon_set_origin(struct vc_data *c) | 1266 | static int vgacon_set_origin(struct vc_data *c) |
1097 | { | 1267 | { |
1098 | if (vga_is_gfx || /* We don't play origin tricks in graphic modes */ | 1268 | if (vga_is_gfx || /* We don't play origin tricks in graphic modes */ |
@@ -1135,15 +1305,14 @@ static int vgacon_scroll(struct vc_data *c, int t, int b, int dir, | |||
1135 | if (t || b != c->vc_rows || vga_is_gfx) | 1305 | if (t || b != c->vc_rows || vga_is_gfx) |
1136 | return 0; | 1306 | return 0; |
1137 | 1307 | ||
1138 | if (c->vc_origin != c->vc_visible_origin) | ||
1139 | vgacon_scrolldelta(c, 0); | ||
1140 | |||
1141 | if (!vga_hardscroll_enabled || lines >= c->vc_rows / 2) | 1308 | if (!vga_hardscroll_enabled || lines >= c->vc_rows / 2) |
1142 | return 0; | 1309 | return 0; |
1143 | 1310 | ||
1311 | vgacon_restore_screen(c); | ||
1144 | oldo = c->vc_origin; | 1312 | oldo = c->vc_origin; |
1145 | delta = lines * c->vc_size_row; | 1313 | delta = lines * c->vc_size_row; |
1146 | if (dir == SM_UP) { | 1314 | if (dir == SM_UP) { |
1315 | vgacon_scrollback_update(c, t, lines); | ||
1147 | if (c->vc_scr_end + delta >= vga_vram_end) { | 1316 | if (c->vc_scr_end + delta >= vga_vram_end) { |
1148 | scr_memcpyw((u16 *) vga_vram_base, | 1317 | scr_memcpyw((u16 *) vga_vram_base, |
1149 | (u16 *) (oldo + delta), | 1318 | (u16 *) (oldo + delta), |
diff --git a/drivers/video/fbcmap.c b/drivers/video/fbcmap.c index c32a2a50bfa2..1f98392a43b3 100644 --- a/drivers/video/fbcmap.c +++ b/drivers/video/fbcmap.c | |||
@@ -85,7 +85,7 @@ static struct fb_cmap default_16_colors = { | |||
85 | * Allocates memory for a colormap @cmap. @len is the | 85 | * Allocates memory for a colormap @cmap. @len is the |
86 | * number of entries in the palette. | 86 | * number of entries in the palette. |
87 | * | 87 | * |
88 | * Returns -1 errno on error, or zero on success. | 88 | * Returns negative errno on error, or zero on success. |
89 | * | 89 | * |
90 | */ | 90 | */ |
91 | 91 | ||
@@ -116,7 +116,7 @@ int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp) | |||
116 | 116 | ||
117 | fail: | 117 | fail: |
118 | fb_dealloc_cmap(cmap); | 118 | fb_dealloc_cmap(cmap); |
119 | return -1; | 119 | return -ENOMEM; |
120 | } | 120 | } |
121 | 121 | ||
122 | /** | 122 | /** |
diff --git a/drivers/video/fbmem.c b/drivers/video/fbmem.c index 07d882b14396..b1a8dca76430 100644 --- a/drivers/video/fbmem.c +++ b/drivers/video/fbmem.c | |||
@@ -55,7 +55,7 @@ | |||
55 | 55 | ||
56 | #define FBPIXMAPSIZE (1024 * 8) | 56 | #define FBPIXMAPSIZE (1024 * 8) |
57 | 57 | ||
58 | static struct notifier_block *fb_notifier_list; | 58 | static BLOCKING_NOTIFIER_HEAD(fb_notifier_list); |
59 | struct fb_info *registered_fb[FB_MAX]; | 59 | struct fb_info *registered_fb[FB_MAX]; |
60 | int num_registered_fb; | 60 | int num_registered_fb; |
61 | 61 | ||
@@ -784,7 +784,7 @@ fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var) | |||
784 | 784 | ||
785 | event.info = info; | 785 | event.info = info; |
786 | event.data = &mode1; | 786 | event.data = &mode1; |
787 | ret = notifier_call_chain(&fb_notifier_list, | 787 | ret = blocking_notifier_call_chain(&fb_notifier_list, |
788 | FB_EVENT_MODE_DELETE, &event); | 788 | FB_EVENT_MODE_DELETE, &event); |
789 | } | 789 | } |
790 | 790 | ||
@@ -830,8 +830,8 @@ fb_set_var(struct fb_info *info, struct fb_var_screeninfo *var) | |||
830 | 830 | ||
831 | info->flags &= ~FBINFO_MISC_USEREVENT; | 831 | info->flags &= ~FBINFO_MISC_USEREVENT; |
832 | event.info = info; | 832 | event.info = info; |
833 | notifier_call_chain(&fb_notifier_list, evnt, | 833 | blocking_notifier_call_chain(&fb_notifier_list, |
834 | &event); | 834 | evnt, &event); |
835 | } | 835 | } |
836 | } | 836 | } |
837 | } | 837 | } |
@@ -854,7 +854,8 @@ fb_blank(struct fb_info *info, int blank) | |||
854 | 854 | ||
855 | event.info = info; | 855 | event.info = info; |
856 | event.data = ␣ | 856 | event.data = ␣ |
857 | notifier_call_chain(&fb_notifier_list, FB_EVENT_BLANK, &event); | 857 | blocking_notifier_call_chain(&fb_notifier_list, |
858 | FB_EVENT_BLANK, &event); | ||
858 | } | 859 | } |
859 | 860 | ||
860 | return ret; | 861 | return ret; |
@@ -925,7 +926,7 @@ fb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | |||
925 | con2fb.framebuffer = -1; | 926 | con2fb.framebuffer = -1; |
926 | event.info = info; | 927 | event.info = info; |
927 | event.data = &con2fb; | 928 | event.data = &con2fb; |
928 | notifier_call_chain(&fb_notifier_list, | 929 | blocking_notifier_call_chain(&fb_notifier_list, |
929 | FB_EVENT_GET_CONSOLE_MAP, &event); | 930 | FB_EVENT_GET_CONSOLE_MAP, &event); |
930 | return copy_to_user(argp, &con2fb, | 931 | return copy_to_user(argp, &con2fb, |
931 | sizeof(con2fb)) ? -EFAULT : 0; | 932 | sizeof(con2fb)) ? -EFAULT : 0; |
@@ -944,7 +945,7 @@ fb_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | |||
944 | return -EINVAL; | 945 | return -EINVAL; |
945 | event.info = info; | 946 | event.info = info; |
946 | event.data = &con2fb; | 947 | event.data = &con2fb; |
947 | return notifier_call_chain(&fb_notifier_list, | 948 | return blocking_notifier_call_chain(&fb_notifier_list, |
948 | FB_EVENT_SET_CONSOLE_MAP, | 949 | FB_EVENT_SET_CONSOLE_MAP, |
949 | &event); | 950 | &event); |
950 | case FBIOBLANK: | 951 | case FBIOBLANK: |
@@ -1324,7 +1325,7 @@ register_framebuffer(struct fb_info *fb_info) | |||
1324 | devfs_mk_cdev(MKDEV(FB_MAJOR, i), | 1325 | devfs_mk_cdev(MKDEV(FB_MAJOR, i), |
1325 | S_IFCHR | S_IRUGO | S_IWUGO, "fb/%d", i); | 1326 | S_IFCHR | S_IRUGO | S_IWUGO, "fb/%d", i); |
1326 | event.info = fb_info; | 1327 | event.info = fb_info; |
1327 | notifier_call_chain(&fb_notifier_list, | 1328 | blocking_notifier_call_chain(&fb_notifier_list, |
1328 | FB_EVENT_FB_REGISTERED, &event); | 1329 | FB_EVENT_FB_REGISTERED, &event); |
1329 | return 0; | 1330 | return 0; |
1330 | } | 1331 | } |
@@ -1366,7 +1367,7 @@ unregister_framebuffer(struct fb_info *fb_info) | |||
1366 | */ | 1367 | */ |
1367 | int fb_register_client(struct notifier_block *nb) | 1368 | int fb_register_client(struct notifier_block *nb) |
1368 | { | 1369 | { |
1369 | return notifier_chain_register(&fb_notifier_list, nb); | 1370 | return blocking_notifier_chain_register(&fb_notifier_list, nb); |
1370 | } | 1371 | } |
1371 | 1372 | ||
1372 | /** | 1373 | /** |
@@ -1375,7 +1376,7 @@ int fb_register_client(struct notifier_block *nb) | |||
1375 | */ | 1376 | */ |
1376 | int fb_unregister_client(struct notifier_block *nb) | 1377 | int fb_unregister_client(struct notifier_block *nb) |
1377 | { | 1378 | { |
1378 | return notifier_chain_unregister(&fb_notifier_list, nb); | 1379 | return blocking_notifier_chain_unregister(&fb_notifier_list, nb); |
1379 | } | 1380 | } |
1380 | 1381 | ||
1381 | /** | 1382 | /** |
@@ -1393,11 +1394,13 @@ void fb_set_suspend(struct fb_info *info, int state) | |||
1393 | 1394 | ||
1394 | event.info = info; | 1395 | event.info = info; |
1395 | if (state) { | 1396 | if (state) { |
1396 | notifier_call_chain(&fb_notifier_list, FB_EVENT_SUSPEND, &event); | 1397 | blocking_notifier_call_chain(&fb_notifier_list, |
1398 | FB_EVENT_SUSPEND, &event); | ||
1397 | info->state = FBINFO_STATE_SUSPENDED; | 1399 | info->state = FBINFO_STATE_SUSPENDED; |
1398 | } else { | 1400 | } else { |
1399 | info->state = FBINFO_STATE_RUNNING; | 1401 | info->state = FBINFO_STATE_RUNNING; |
1400 | notifier_call_chain(&fb_notifier_list, FB_EVENT_RESUME, &event); | 1402 | blocking_notifier_call_chain(&fb_notifier_list, |
1403 | FB_EVENT_RESUME, &event); | ||
1401 | } | 1404 | } |
1402 | } | 1405 | } |
1403 | 1406 | ||
@@ -1469,7 +1472,7 @@ int fb_new_modelist(struct fb_info *info) | |||
1469 | 1472 | ||
1470 | if (!list_empty(&info->modelist)) { | 1473 | if (!list_empty(&info->modelist)) { |
1471 | event.info = info; | 1474 | event.info = info; |
1472 | err = notifier_call_chain(&fb_notifier_list, | 1475 | err = blocking_notifier_call_chain(&fb_notifier_list, |
1473 | FB_EVENT_NEW_MODELIST, | 1476 | FB_EVENT_NEW_MODELIST, |
1474 | &event); | 1477 | &event); |
1475 | } | 1478 | } |
@@ -1495,7 +1498,7 @@ int fb_con_duit(struct fb_info *info, int event, void *data) | |||
1495 | evnt.info = info; | 1498 | evnt.info = info; |
1496 | evnt.data = data; | 1499 | evnt.data = data; |
1497 | 1500 | ||
1498 | return notifier_call_chain(&fb_notifier_list, event, &evnt); | 1501 | return blocking_notifier_call_chain(&fb_notifier_list, event, &evnt); |
1499 | } | 1502 | } |
1500 | EXPORT_SYMBOL(fb_con_duit); | 1503 | EXPORT_SYMBOL(fb_con_duit); |
1501 | 1504 | ||
diff --git a/drivers/video/fbmon.c b/drivers/video/fbmon.c index 7c74e7325d95..53beeb4a9998 100644 --- a/drivers/video/fbmon.c +++ b/drivers/video/fbmon.c | |||
@@ -1281,7 +1281,7 @@ int fb_validate_mode(const struct fb_var_screeninfo *var, struct fb_info *info) | |||
1281 | -EINVAL : 0; | 1281 | -EINVAL : 0; |
1282 | } | 1282 | } |
1283 | 1283 | ||
1284 | #if defined(__i386__) | 1284 | #if defined(CONFIG_FB_FIRMWARE_EDID) && defined(__i386__) |
1285 | #include <linux/pci.h> | 1285 | #include <linux/pci.h> |
1286 | 1286 | ||
1287 | /* | 1287 | /* |
@@ -1311,11 +1311,11 @@ const unsigned char *fb_firmware_edid(struct device *device) | |||
1311 | { | 1311 | { |
1312 | return NULL; | 1312 | return NULL; |
1313 | } | 1313 | } |
1314 | #endif /* _i386_ */ | 1314 | #endif |
1315 | EXPORT_SYMBOL(fb_firmware_edid); | ||
1315 | 1316 | ||
1316 | EXPORT_SYMBOL(fb_parse_edid); | 1317 | EXPORT_SYMBOL(fb_parse_edid); |
1317 | EXPORT_SYMBOL(fb_edid_to_monspecs); | 1318 | EXPORT_SYMBOL(fb_edid_to_monspecs); |
1318 | EXPORT_SYMBOL(fb_firmware_edid); | ||
1319 | EXPORT_SYMBOL(fb_get_mode); | 1319 | EXPORT_SYMBOL(fb_get_mode); |
1320 | EXPORT_SYMBOL(fb_validate_mode); | 1320 | EXPORT_SYMBOL(fb_validate_mode); |
1321 | EXPORT_SYMBOL(fb_destroy_modedb); | 1321 | EXPORT_SYMBOL(fb_destroy_modedb); |
diff --git a/drivers/video/fbsysfs.c b/drivers/video/fbsysfs.c index 6d26057337e2..b72b05250a9d 100644 --- a/drivers/video/fbsysfs.c +++ b/drivers/video/fbsysfs.c | |||
@@ -348,7 +348,7 @@ static ssize_t store_cmap(struct class_device *class_device, const char *buf, | |||
348 | fb_copy_cmap(&umap, &fb_info->cmap); | 348 | fb_copy_cmap(&umap, &fb_info->cmap); |
349 | fb_dealloc_cmap(&umap); | 349 | fb_dealloc_cmap(&umap); |
350 | 350 | ||
351 | return rc; | 351 | return rc ?: count; |
352 | } | 352 | } |
353 | for (i = 0; i < length; i++) { | 353 | for (i = 0; i < length; i++) { |
354 | u16 red, blue, green, tsp; | 354 | u16 red, blue, green, tsp; |
@@ -367,7 +367,7 @@ static ssize_t store_cmap(struct class_device *class_device, const char *buf, | |||
367 | if (transp) | 367 | if (transp) |
368 | fb_info->cmap.transp[i] = tsp; | 368 | fb_info->cmap.transp[i] = tsp; |
369 | } | 369 | } |
370 | return 0; | 370 | return count; |
371 | } | 371 | } |
372 | 372 | ||
373 | static ssize_t show_cmap(struct class_device *class_device, char *buf) | 373 | static ssize_t show_cmap(struct class_device *class_device, char *buf) |
diff --git a/drivers/video/geode/Kconfig b/drivers/video/geode/Kconfig index 42fb9a89a792..4e173ef20a7d 100644 --- a/drivers/video/geode/Kconfig +++ b/drivers/video/geode/Kconfig | |||
@@ -8,9 +8,24 @@ config FB_GEODE | |||
8 | Say 'Y' here to allow you to select framebuffer drivers for | 8 | Say 'Y' here to allow you to select framebuffer drivers for |
9 | the AMD Geode family of processors. | 9 | the AMD Geode family of processors. |
10 | 10 | ||
11 | config FB_GEODE_GX | ||
12 | tristate "AMD Geode GX framebuffer support (EXPERIMENTAL)" | ||
13 | depends on FB && FB_GEODE && EXPERIMENTAL | ||
14 | select FB_CFB_FILLRECT | ||
15 | select FB_CFB_COPYAREA | ||
16 | select FB_CFB_IMAGEBLIT | ||
17 | ---help--- | ||
18 | Framebuffer driver for the display controller integrated into the | ||
19 | AMD Geode GX processors. | ||
20 | |||
21 | To compile this driver as a module, choose M here: the module will be | ||
22 | called gxfb. | ||
23 | |||
24 | If unsure, say N. | ||
25 | |||
11 | config FB_GEODE_GX1 | 26 | config FB_GEODE_GX1 |
12 | tristate "AMD Geode GX1 framebuffer support (EXPERIMENTAL)" | 27 | tristate "AMD Geode GX1 framebuffer support (EXPERIMENTAL)" |
13 | depends on FB_GEODE && EXPERIMENTAL | 28 | depends on FB && FB_GEODE && EXPERIMENTAL |
14 | select FB_CFB_FILLRECT | 29 | select FB_CFB_FILLRECT |
15 | select FB_CFB_COPYAREA | 30 | select FB_CFB_COPYAREA |
16 | select FB_CFB_IMAGEBLIT | 31 | select FB_CFB_IMAGEBLIT |
diff --git a/drivers/video/geode/Makefile b/drivers/video/geode/Makefile index 13ad501ea990..f896565bc312 100644 --- a/drivers/video/geode/Makefile +++ b/drivers/video/geode/Makefile | |||
@@ -1,5 +1,7 @@ | |||
1 | # Makefile for the Geode family framebuffer drivers | 1 | # Makefile for the Geode family framebuffer drivers |
2 | 2 | ||
3 | obj-$(CONFIG_FB_GEODE_GX1) += gx1fb.o | 3 | obj-$(CONFIG_FB_GEODE_GX1) += gx1fb.o |
4 | obj-$(CONFIG_FB_GEODE_GX) += gxfb.o | ||
4 | 5 | ||
5 | gx1fb-objs := gx1fb_core.o display_gx1.o video_cs5530.o | 6 | gx1fb-objs := gx1fb_core.o display_gx1.o video_cs5530.o |
7 | gxfb-objs := gxfb_core.o display_gx.o video_gx.o | ||
diff --git a/drivers/video/geode/display_gx.c b/drivers/video/geode/display_gx.c new file mode 100644 index 000000000000..825c3405f5c2 --- /dev/null +++ b/drivers/video/geode/display_gx.c | |||
@@ -0,0 +1,156 @@ | |||
1 | /* | ||
2 | * Geode GX display controller. | ||
3 | * | ||
4 | * Copyright (C) 2005 Arcom Control Systems Ltd. | ||
5 | * | ||
6 | * Portions from AMD's original 2.4 driver: | ||
7 | * Copyright (C) 2004 Advanced Micro Devices, Inc. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by * the | ||
11 | * Free Software Foundation; either version 2 of the License, or * (at your | ||
12 | * option) any later version. | ||
13 | */ | ||
14 | #include <linux/spinlock.h> | ||
15 | #include <linux/fb.h> | ||
16 | #include <linux/delay.h> | ||
17 | #include <asm/io.h> | ||
18 | #include <asm/div64.h> | ||
19 | #include <asm/delay.h> | ||
20 | |||
21 | #include "geodefb.h" | ||
22 | #include "display_gx.h" | ||
23 | |||
24 | int gx_frame_buffer_size(void) | ||
25 | { | ||
26 | /* Assuming 16 MiB. */ | ||
27 | return 16*1024*1024; | ||
28 | } | ||
29 | |||
30 | int gx_line_delta(int xres, int bpp) | ||
31 | { | ||
32 | /* Must be a multiple of 8 bytes. */ | ||
33 | return (xres * (bpp >> 3) + 7) & ~0x7; | ||
34 | } | ||
35 | |||
36 | static void gx_set_mode(struct fb_info *info) | ||
37 | { | ||
38 | struct geodefb_par *par = info->par; | ||
39 | u32 gcfg, dcfg; | ||
40 | int hactive, hblankstart, hsyncstart, hsyncend, hblankend, htotal; | ||
41 | int vactive, vblankstart, vsyncstart, vsyncend, vblankend, vtotal; | ||
42 | |||
43 | /* Unlock the display controller registers. */ | ||
44 | readl(par->dc_regs + DC_UNLOCK); | ||
45 | writel(DC_UNLOCK_CODE, par->dc_regs + DC_UNLOCK); | ||
46 | |||
47 | gcfg = readl(par->dc_regs + DC_GENERAL_CFG); | ||
48 | dcfg = readl(par->dc_regs + DC_DISPLAY_CFG); | ||
49 | |||
50 | /* Disable the timing generator. */ | ||
51 | dcfg &= ~(DC_DCFG_TGEN); | ||
52 | writel(dcfg, par->dc_regs + DC_DISPLAY_CFG); | ||
53 | |||
54 | /* Wait for pending memory requests before disabling the FIFO load. */ | ||
55 | udelay(100); | ||
56 | |||
57 | /* Disable FIFO load and compression. */ | ||
58 | gcfg &= ~(DC_GCFG_DFLE | DC_GCFG_CMPE | DC_GCFG_DECE); | ||
59 | writel(gcfg, par->dc_regs + DC_GENERAL_CFG); | ||
60 | |||
61 | /* Setup DCLK and its divisor. */ | ||
62 | par->vid_ops->set_dclk(info); | ||
63 | |||
64 | /* | ||
65 | * Setup new mode. | ||
66 | */ | ||
67 | |||
68 | /* Clear all unused feature bits. */ | ||
69 | gcfg &= DC_GCFG_YUVM | DC_GCFG_VDSE; | ||
70 | dcfg = 0; | ||
71 | |||
72 | /* Set FIFO priority (default 6/5) and enable. */ | ||
73 | /* FIXME: increase fifo priority for 1280x1024 and higher modes? */ | ||
74 | gcfg |= (6 << DC_GCFG_DFHPEL_POS) | (5 << DC_GCFG_DFHPSL_POS) | DC_GCFG_DFLE; | ||
75 | |||
76 | /* Framebuffer start offset. */ | ||
77 | writel(0, par->dc_regs + DC_FB_ST_OFFSET); | ||
78 | |||
79 | /* Line delta and line buffer length. */ | ||
80 | writel(info->fix.line_length >> 3, par->dc_regs + DC_GFX_PITCH); | ||
81 | writel(((info->var.xres * info->var.bits_per_pixel/8) >> 3) + 2, | ||
82 | par->dc_regs + DC_LINE_SIZE); | ||
83 | |||
84 | /* Enable graphics and video data and unmask address lines. */ | ||
85 | dcfg |= DC_DCFG_GDEN | DC_DCFG_VDEN | DC_DCFG_A20M | DC_DCFG_A18M; | ||
86 | |||
87 | /* Set pixel format. */ | ||
88 | switch (info->var.bits_per_pixel) { | ||
89 | case 8: | ||
90 | dcfg |= DC_DCFG_DISP_MODE_8BPP; | ||
91 | break; | ||
92 | case 16: | ||
93 | dcfg |= DC_DCFG_DISP_MODE_16BPP; | ||
94 | dcfg |= DC_DCFG_16BPP_MODE_565; | ||
95 | break; | ||
96 | case 32: | ||
97 | dcfg |= DC_DCFG_DISP_MODE_24BPP; | ||
98 | dcfg |= DC_DCFG_PALB; | ||
99 | break; | ||
100 | } | ||
101 | |||
102 | /* Enable timing generator. */ | ||
103 | dcfg |= DC_DCFG_TGEN; | ||
104 | |||
105 | /* Horizontal and vertical timings. */ | ||
106 | hactive = info->var.xres; | ||
107 | hblankstart = hactive; | ||
108 | hsyncstart = hblankstart + info->var.right_margin; | ||
109 | hsyncend = hsyncstart + info->var.hsync_len; | ||
110 | hblankend = hsyncend + info->var.left_margin; | ||
111 | htotal = hblankend; | ||
112 | |||
113 | vactive = info->var.yres; | ||
114 | vblankstart = vactive; | ||
115 | vsyncstart = vblankstart + info->var.lower_margin; | ||
116 | vsyncend = vsyncstart + info->var.vsync_len; | ||
117 | vblankend = vsyncend + info->var.upper_margin; | ||
118 | vtotal = vblankend; | ||
119 | |||
120 | writel((hactive - 1) | ((htotal - 1) << 16), par->dc_regs + DC_H_ACTIVE_TIMING); | ||
121 | writel((hblankstart - 1) | ((hblankend - 1) << 16), par->dc_regs + DC_H_BLANK_TIMING); | ||
122 | writel((hsyncstart - 1) | ((hsyncend - 1) << 16), par->dc_regs + DC_H_SYNC_TIMING); | ||
123 | |||
124 | writel((vactive - 1) | ((vtotal - 1) << 16), par->dc_regs + DC_V_ACTIVE_TIMING); | ||
125 | writel((vblankstart - 1) | ((vblankend - 1) << 16), par->dc_regs + DC_V_BLANK_TIMING); | ||
126 | writel((vsyncstart - 1) | ((vsyncend - 1) << 16), par->dc_regs + DC_V_SYNC_TIMING); | ||
127 | |||
128 | /* Write final register values. */ | ||
129 | writel(dcfg, par->dc_regs + DC_DISPLAY_CFG); | ||
130 | writel(gcfg, par->dc_regs + DC_GENERAL_CFG); | ||
131 | |||
132 | par->vid_ops->configure_display(info); | ||
133 | |||
134 | /* Relock display controller registers */ | ||
135 | writel(0, par->dc_regs + DC_UNLOCK); | ||
136 | } | ||
137 | |||
138 | static void gx_set_hw_palette_reg(struct fb_info *info, unsigned regno, | ||
139 | unsigned red, unsigned green, unsigned blue) | ||
140 | { | ||
141 | struct geodefb_par *par = info->par; | ||
142 | int val; | ||
143 | |||
144 | /* Hardware palette is in RGB 8-8-8 format. */ | ||
145 | val = (red << 8) & 0xff0000; | ||
146 | val |= (green) & 0x00ff00; | ||
147 | val |= (blue >> 8) & 0x0000ff; | ||
148 | |||
149 | writel(regno, par->dc_regs + DC_PAL_ADDRESS); | ||
150 | writel(val, par->dc_regs + DC_PAL_DATA); | ||
151 | } | ||
152 | |||
153 | struct geode_dc_ops gx_dc_ops = { | ||
154 | .set_mode = gx_set_mode, | ||
155 | .set_palette_reg = gx_set_hw_palette_reg, | ||
156 | }; | ||
diff --git a/drivers/video/geode/display_gx.h b/drivers/video/geode/display_gx.h new file mode 100644 index 000000000000..86c623361305 --- /dev/null +++ b/drivers/video/geode/display_gx.h | |||
@@ -0,0 +1,96 @@ | |||
1 | /* | ||
2 | * Geode GX display controller | ||
3 | * | ||
4 | * Copyright (C) 2006 Arcom Control Systems Ltd. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | #ifndef __DISPLAY_GX_H__ | ||
12 | #define __DISPLAY_GX_H__ | ||
13 | |||
14 | int gx_frame_buffer_size(void); | ||
15 | int gx_line_delta(int xres, int bpp); | ||
16 | |||
17 | extern struct geode_dc_ops gx_dc_ops; | ||
18 | |||
19 | /* Display controller registers */ | ||
20 | |||
21 | #define DC_UNLOCK 0x00 | ||
22 | # define DC_UNLOCK_CODE 0x00004758 | ||
23 | |||
24 | #define DC_GENERAL_CFG 0x04 | ||
25 | # define DC_GCFG_DFLE 0x00000001 | ||
26 | # define DC_GCFG_CURE 0x00000002 | ||
27 | # define DC_GCFG_ICNE 0x00000004 | ||
28 | # define DC_GCFG_VIDE 0x00000008 | ||
29 | # define DC_GCFG_CMPE 0x00000020 | ||
30 | # define DC_GCFG_DECE 0x00000040 | ||
31 | # define DC_GCFG_VGAE 0x00000080 | ||
32 | # define DC_GCFG_DFHPSL_MASK 0x00000F00 | ||
33 | # define DC_GCFG_DFHPSL_POS 8 | ||
34 | # define DC_GCFG_DFHPEL_MASK 0x0000F000 | ||
35 | # define DC_GCFG_DFHPEL_POS 12 | ||
36 | # define DC_GCFG_STFM 0x00010000 | ||
37 | # define DC_GCFG_FDTY 0x00020000 | ||
38 | # define DC_GCFG_VGAFT 0x00040000 | ||
39 | # define DC_GCFG_VDSE 0x00080000 | ||
40 | # define DC_GCFG_YUVM 0x00100000 | ||
41 | # define DC_GCFG_VFSL 0x00800000 | ||
42 | # define DC_GCFG_SIGE 0x01000000 | ||
43 | # define DC_GCFG_SGRE 0x02000000 | ||
44 | # define DC_GCFG_SGFR 0x04000000 | ||
45 | # define DC_GCFG_CRC_MODE 0x08000000 | ||
46 | # define DC_GCFG_DIAG 0x10000000 | ||
47 | # define DC_GCFG_CFRW 0x20000000 | ||
48 | |||
49 | #define DC_DISPLAY_CFG 0x08 | ||
50 | # define DC_DCFG_TGEN 0x00000001 | ||
51 | # define DC_DCFG_GDEN 0x00000008 | ||
52 | # define DC_DCFG_VDEN 0x00000010 | ||
53 | # define DC_DCFG_TRUP 0x00000040 | ||
54 | # define DC_DCFG_DISP_MODE_MASK 0x00000300 | ||
55 | # define DC_DCFG_DISP_MODE_8BPP 0x00000000 | ||
56 | # define DC_DCFG_DISP_MODE_16BPP 0x00000100 | ||
57 | # define DC_DCFG_DISP_MODE_24BPP 0x00000200 | ||
58 | # define DC_DCFG_16BPP_MODE_MASK 0x00000c00 | ||
59 | # define DC_DCFG_16BPP_MODE_565 0x00000000 | ||
60 | # define DC_DCFG_16BPP_MODE_555 0x00000100 | ||
61 | # define DC_DCFG_16BPP_MODE_444 0x00000200 | ||
62 | # define DC_DCFG_DCEN 0x00080000 | ||
63 | # define DC_DCFG_PALB 0x02000000 | ||
64 | # define DC_DCFG_FRLK 0x04000000 | ||
65 | # define DC_DCFG_VISL 0x08000000 | ||
66 | # define DC_DCFG_FRSL 0x20000000 | ||
67 | # define DC_DCFG_A18M 0x40000000 | ||
68 | # define DC_DCFG_A20M 0x80000000 | ||
69 | |||
70 | #define DC_FB_ST_OFFSET 0x10 | ||
71 | |||
72 | #define DC_LINE_SIZE 0x30 | ||
73 | # define DC_LINE_SIZE_FB_LINE_SIZE_MASK 0x000007ff | ||
74 | # define DC_LINE_SIZE_FB_LINE_SIZE_POS 0 | ||
75 | # define DC_LINE_SIZE_CB_LINE_SIZE_MASK 0x007f0000 | ||
76 | # define DC_LINE_SIZE_CB_LINE_SIZE_POS 16 | ||
77 | # define DC_LINE_SIZE_VID_LINE_SIZE_MASK 0xff000000 | ||
78 | # define DC_LINE_SIZE_VID_LINE_SIZE_POS 24 | ||
79 | |||
80 | #define DC_GFX_PITCH 0x34 | ||
81 | # define DC_GFX_PITCH_FB_PITCH_MASK 0x0000ffff | ||
82 | # define DC_GFX_PITCH_FB_PITCH_POS 0 | ||
83 | # define DC_GFX_PITCH_CB_PITCH_MASK 0xffff0000 | ||
84 | # define DC_GFX_PITCH_CB_PITCH_POS 16 | ||
85 | |||
86 | #define DC_H_ACTIVE_TIMING 0x40 | ||
87 | #define DC_H_BLANK_TIMING 0x44 | ||
88 | #define DC_H_SYNC_TIMING 0x48 | ||
89 | #define DC_V_ACTIVE_TIMING 0x50 | ||
90 | #define DC_V_BLANK_TIMING 0x54 | ||
91 | #define DC_V_SYNC_TIMING 0x58 | ||
92 | |||
93 | #define DC_PAL_ADDRESS 0x70 | ||
94 | #define DC_PAL_DATA 0x74 | ||
95 | |||
96 | #endif /* !__DISPLAY_GX1_H__ */ | ||
diff --git a/drivers/video/geode/gxfb_core.c b/drivers/video/geode/gxfb_core.c new file mode 100644 index 000000000000..89c34b15f5d4 --- /dev/null +++ b/drivers/video/geode/gxfb_core.c | |||
@@ -0,0 +1,423 @@ | |||
1 | /* | ||
2 | * Geode GX framebuffer driver. | ||
3 | * | ||
4 | * Copyright (C) 2006 Arcom Control Systems Ltd. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | * | ||
12 | * This driver assumes that the BIOS has created a virtual PCI device header | ||
13 | * for the video device. The PCI header is assumed to contain the following | ||
14 | * BARs: | ||
15 | * | ||
16 | * BAR0 - framebuffer memory | ||
17 | * BAR1 - graphics processor registers | ||
18 | * BAR2 - display controller registers | ||
19 | * BAR3 - video processor and flat panel control registers. | ||
20 | * | ||
21 | * 16 MiB of framebuffer memory is assumed to be available. | ||
22 | */ | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/kernel.h> | ||
25 | #include <linux/errno.h> | ||
26 | #include <linux/string.h> | ||
27 | #include <linux/mm.h> | ||
28 | #include <linux/tty.h> | ||
29 | #include <linux/slab.h> | ||
30 | #include <linux/delay.h> | ||
31 | #include <linux/fb.h> | ||
32 | #include <linux/init.h> | ||
33 | #include <linux/pci.h> | ||
34 | |||
35 | #include "geodefb.h" | ||
36 | #include "display_gx.h" | ||
37 | #include "video_gx.h" | ||
38 | |||
39 | static char mode_option[32] = "640x480-16@60"; | ||
40 | |||
41 | /* Modes relevant to the GX (taken from modedb.c) */ | ||
42 | static const struct fb_videomode __initdata gx_modedb[] = { | ||
43 | /* 640x480-60 VESA */ | ||
44 | { NULL, 60, 640, 480, 39682, 48, 16, 33, 10, 96, 2, | ||
45 | 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
46 | /* 640x480-75 VESA */ | ||
47 | { NULL, 75, 640, 480, 31746, 120, 16, 16, 01, 64, 3, | ||
48 | 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
49 | /* 640x480-85 VESA */ | ||
50 | { NULL, 85, 640, 480, 27777, 80, 56, 25, 01, 56, 3, | ||
51 | 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
52 | /* 800x600-60 VESA */ | ||
53 | { NULL, 60, 800, 600, 25000, 88, 40, 23, 01, 128, 4, | ||
54 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
55 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
56 | /* 800x600-75 VESA */ | ||
57 | { NULL, 75, 800, 600, 20202, 160, 16, 21, 01, 80, 3, | ||
58 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
59 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
60 | /* 800x600-85 VESA */ | ||
61 | { NULL, 85, 800, 600, 17761, 152, 32, 27, 01, 64, 3, | ||
62 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
63 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
64 | /* 1024x768-60 VESA */ | ||
65 | { NULL, 60, 1024, 768, 15384, 160, 24, 29, 3, 136, 6, | ||
66 | 0, FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
67 | /* 1024x768-75 VESA */ | ||
68 | { NULL, 75, 1024, 768, 12690, 176, 16, 28, 1, 96, 3, | ||
69 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
70 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
71 | /* 1024x768-85 VESA */ | ||
72 | { NULL, 85, 1024, 768, 10582, 208, 48, 36, 1, 96, 3, | ||
73 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
74 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
75 | /* 1280x960-60 VESA */ | ||
76 | { NULL, 60, 1280, 960, 9259, 312, 96, 36, 1, 112, 3, | ||
77 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
78 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
79 | /* 1280x960-85 VESA */ | ||
80 | { NULL, 85, 1280, 960, 6734, 224, 64, 47, 1, 160, 3, | ||
81 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
82 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
83 | /* 1280x1024-60 VESA */ | ||
84 | { NULL, 60, 1280, 1024, 9259, 248, 48, 38, 1, 112, 3, | ||
85 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
86 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
87 | /* 1280x1024-75 VESA */ | ||
88 | { NULL, 75, 1280, 1024, 7407, 248, 16, 38, 1, 144, 3, | ||
89 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
90 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
91 | /* 1280x1024-85 VESA */ | ||
92 | { NULL, 85, 1280, 1024, 6349, 224, 64, 44, 1, 160, 3, | ||
93 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
94 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
95 | /* 1600x1200-60 VESA */ | ||
96 | { NULL, 60, 1600, 1200, 6172, 304, 64, 46, 1, 192, 3, | ||
97 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
98 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
99 | /* 1600x1200-75 VESA */ | ||
100 | { NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3, | ||
101 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
102 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
103 | /* 1600x1200-85 VESA */ | ||
104 | { NULL, 85, 1600, 1200, 4357, 304, 64, 46, 1, 192, 3, | ||
105 | FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | ||
106 | FB_VMODE_NONINTERLACED, FB_MODE_IS_VESA }, | ||
107 | }; | ||
108 | |||
109 | static int gxfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) | ||
110 | { | ||
111 | if (var->xres > 1600 || var->yres > 1200) | ||
112 | return -EINVAL; | ||
113 | if ((var->xres > 1280 || var->yres > 1024) && var->bits_per_pixel > 16) | ||
114 | return -EINVAL; | ||
115 | |||
116 | if (var->bits_per_pixel == 32) { | ||
117 | var->red.offset = 16; var->red.length = 8; | ||
118 | var->green.offset = 8; var->green.length = 8; | ||
119 | var->blue.offset = 0; var->blue.length = 8; | ||
120 | } else if (var->bits_per_pixel == 16) { | ||
121 | var->red.offset = 11; var->red.length = 5; | ||
122 | var->green.offset = 5; var->green.length = 6; | ||
123 | var->blue.offset = 0; var->blue.length = 5; | ||
124 | } else if (var->bits_per_pixel == 8) { | ||
125 | var->red.offset = 0; var->red.length = 8; | ||
126 | var->green.offset = 0; var->green.length = 8; | ||
127 | var->blue.offset = 0; var->blue.length = 8; | ||
128 | } else | ||
129 | return -EINVAL; | ||
130 | var->transp.offset = 0; var->transp.length = 0; | ||
131 | |||
132 | /* Enough video memory? */ | ||
133 | if (gx_line_delta(var->xres, var->bits_per_pixel) * var->yres > info->fix.smem_len) | ||
134 | return -EINVAL; | ||
135 | |||
136 | /* FIXME: Check timing parameters here? */ | ||
137 | |||
138 | return 0; | ||
139 | } | ||
140 | |||
141 | static int gxfb_set_par(struct fb_info *info) | ||
142 | { | ||
143 | struct geodefb_par *par = info->par; | ||
144 | |||
145 | if (info->var.bits_per_pixel > 8) { | ||
146 | info->fix.visual = FB_VISUAL_TRUECOLOR; | ||
147 | fb_dealloc_cmap(&info->cmap); | ||
148 | } else { | ||
149 | info->fix.visual = FB_VISUAL_PSEUDOCOLOR; | ||
150 | fb_alloc_cmap(&info->cmap, 1<<info->var.bits_per_pixel, 0); | ||
151 | } | ||
152 | |||
153 | info->fix.line_length = gx_line_delta(info->var.xres, info->var.bits_per_pixel); | ||
154 | |||
155 | par->dc_ops->set_mode(info); | ||
156 | |||
157 | return 0; | ||
158 | } | ||
159 | |||
160 | static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf) | ||
161 | { | ||
162 | chan &= 0xffff; | ||
163 | chan >>= 16 - bf->length; | ||
164 | return chan << bf->offset; | ||
165 | } | ||
166 | |||
167 | static int gxfb_setcolreg(unsigned regno, unsigned red, unsigned green, | ||
168 | unsigned blue, unsigned transp, | ||
169 | struct fb_info *info) | ||
170 | { | ||
171 | struct geodefb_par *par = info->par; | ||
172 | |||
173 | if (info->var.grayscale) { | ||
174 | /* grayscale = 0.30*R + 0.59*G + 0.11*B */ | ||
175 | red = green = blue = (red * 77 + green * 151 + blue * 28) >> 8; | ||
176 | } | ||
177 | |||
178 | /* Truecolor has hardware independent palette */ | ||
179 | if (info->fix.visual == FB_VISUAL_TRUECOLOR) { | ||
180 | u32 *pal = info->pseudo_palette; | ||
181 | u32 v; | ||
182 | |||
183 | if (regno >= 16) | ||
184 | return -EINVAL; | ||
185 | |||
186 | v = chan_to_field(red, &info->var.red); | ||
187 | v |= chan_to_field(green, &info->var.green); | ||
188 | v |= chan_to_field(blue, &info->var.blue); | ||
189 | |||
190 | pal[regno] = v; | ||
191 | } else { | ||
192 | if (regno >= 256) | ||
193 | return -EINVAL; | ||
194 | |||
195 | par->dc_ops->set_palette_reg(info, regno, red, green, blue); | ||
196 | } | ||
197 | |||
198 | return 0; | ||
199 | } | ||
200 | |||
201 | static int gxfb_blank(int blank_mode, struct fb_info *info) | ||
202 | { | ||
203 | struct geodefb_par *par = info->par; | ||
204 | |||
205 | return par->vid_ops->blank_display(info, blank_mode); | ||
206 | } | ||
207 | |||
208 | static int __init gxfb_map_video_memory(struct fb_info *info, struct pci_dev *dev) | ||
209 | { | ||
210 | struct geodefb_par *par = info->par; | ||
211 | int fb_len; | ||
212 | int ret; | ||
213 | |||
214 | ret = pci_enable_device(dev); | ||
215 | if (ret < 0) | ||
216 | return ret; | ||
217 | |||
218 | ret = pci_request_region(dev, 3, "gxfb (video processor)"); | ||
219 | if (ret < 0) | ||
220 | return ret; | ||
221 | par->vid_regs = ioremap(pci_resource_start(dev, 3), | ||
222 | pci_resource_len(dev, 3)); | ||
223 | if (!par->vid_regs) | ||
224 | return -ENOMEM; | ||
225 | |||
226 | ret = pci_request_region(dev, 2, "gxfb (display controller)"); | ||
227 | if (ret < 0) | ||
228 | return ret; | ||
229 | par->dc_regs = ioremap(pci_resource_start(dev, 2), pci_resource_len(dev, 2)); | ||
230 | if (!par->dc_regs) | ||
231 | return -ENOMEM; | ||
232 | |||
233 | ret = pci_request_region(dev, 0, "gxfb (framebuffer)"); | ||
234 | if (ret < 0) | ||
235 | return ret; | ||
236 | if ((fb_len = gx_frame_buffer_size()) < 0) | ||
237 | return -ENOMEM; | ||
238 | info->fix.smem_start = pci_resource_start(dev, 0); | ||
239 | info->fix.smem_len = fb_len; | ||
240 | info->screen_base = ioremap(info->fix.smem_start, info->fix.smem_len); | ||
241 | if (!info->screen_base) | ||
242 | return -ENOMEM; | ||
243 | |||
244 | dev_info(&dev->dev, "%d Kibyte of video memory at 0x%lx\n", | ||
245 | info->fix.smem_len / 1024, info->fix.smem_start); | ||
246 | |||
247 | return 0; | ||
248 | } | ||
249 | |||
250 | static struct fb_ops gxfb_ops = { | ||
251 | .owner = THIS_MODULE, | ||
252 | .fb_check_var = gxfb_check_var, | ||
253 | .fb_set_par = gxfb_set_par, | ||
254 | .fb_setcolreg = gxfb_setcolreg, | ||
255 | .fb_blank = gxfb_blank, | ||
256 | /* No HW acceleration for now. */ | ||
257 | .fb_fillrect = cfb_fillrect, | ||
258 | .fb_copyarea = cfb_copyarea, | ||
259 | .fb_imageblit = cfb_imageblit, | ||
260 | }; | ||
261 | |||
262 | static struct fb_info * __init gxfb_init_fbinfo(struct device *dev) | ||
263 | { | ||
264 | struct geodefb_par *par; | ||
265 | struct fb_info *info; | ||
266 | |||
267 | /* Alloc enough space for the pseudo palette. */ | ||
268 | info = framebuffer_alloc(sizeof(struct geodefb_par) + sizeof(u32) * 16, dev); | ||
269 | if (!info) | ||
270 | return NULL; | ||
271 | |||
272 | par = info->par; | ||
273 | |||
274 | strcpy(info->fix.id, "Geode GX"); | ||
275 | |||
276 | info->fix.type = FB_TYPE_PACKED_PIXELS; | ||
277 | info->fix.type_aux = 0; | ||
278 | info->fix.xpanstep = 0; | ||
279 | info->fix.ypanstep = 0; | ||
280 | info->fix.ywrapstep = 0; | ||
281 | info->fix.accel = FB_ACCEL_NONE; | ||
282 | |||
283 | info->var.nonstd = 0; | ||
284 | info->var.activate = FB_ACTIVATE_NOW; | ||
285 | info->var.height = -1; | ||
286 | info->var.width = -1; | ||
287 | info->var.accel_flags = 0; | ||
288 | info->var.vmode = FB_VMODE_NONINTERLACED; | ||
289 | |||
290 | info->fbops = &gxfb_ops; | ||
291 | info->flags = FBINFO_DEFAULT; | ||
292 | info->node = -1; | ||
293 | |||
294 | info->pseudo_palette = (void *)par + sizeof(struct geodefb_par); | ||
295 | |||
296 | info->var.grayscale = 0; | ||
297 | |||
298 | return info; | ||
299 | } | ||
300 | |||
301 | static int __init gxfb_probe(struct pci_dev *pdev, const struct pci_device_id *id) | ||
302 | { | ||
303 | struct geodefb_par *par; | ||
304 | struct fb_info *info; | ||
305 | int ret; | ||
306 | |||
307 | info = gxfb_init_fbinfo(&pdev->dev); | ||
308 | if (!info) | ||
309 | return -ENOMEM; | ||
310 | par = info->par; | ||
311 | |||
312 | /* GX display controller and GX video device. */ | ||
313 | par->dc_ops = &gx_dc_ops; | ||
314 | par->vid_ops = &gx_vid_ops; | ||
315 | |||
316 | if ((ret = gxfb_map_video_memory(info, pdev)) < 0) { | ||
317 | dev_err(&pdev->dev, "failed to map frame buffer or controller registers\n"); | ||
318 | goto err; | ||
319 | } | ||
320 | |||
321 | ret = fb_find_mode(&info->var, info, mode_option, | ||
322 | gx_modedb, ARRAY_SIZE(gx_modedb), NULL, 16); | ||
323 | if (ret == 0 || ret == 4) { | ||
324 | dev_err(&pdev->dev, "could not find valid video mode\n"); | ||
325 | ret = -EINVAL; | ||
326 | goto err; | ||
327 | } | ||
328 | |||
329 | /* Clear the frame buffer of garbage. */ | ||
330 | memset_io(info->screen_base, 0, info->fix.smem_len); | ||
331 | |||
332 | gxfb_check_var(&info->var, info); | ||
333 | gxfb_set_par(info); | ||
334 | |||
335 | if (register_framebuffer(info) < 0) { | ||
336 | ret = -EINVAL; | ||
337 | goto err; | ||
338 | } | ||
339 | pci_set_drvdata(pdev, info); | ||
340 | printk(KERN_INFO "fb%d: %s frame buffer device\n", info->node, info->fix.id); | ||
341 | return 0; | ||
342 | |||
343 | err: | ||
344 | if (info->screen_base) { | ||
345 | iounmap(info->screen_base); | ||
346 | pci_release_region(pdev, 0); | ||
347 | } | ||
348 | if (par->vid_regs) { | ||
349 | iounmap(par->vid_regs); | ||
350 | pci_release_region(pdev, 3); | ||
351 | } | ||
352 | if (par->dc_regs) { | ||
353 | iounmap(par->dc_regs); | ||
354 | pci_release_region(pdev, 2); | ||
355 | } | ||
356 | |||
357 | pci_disable_device(pdev); | ||
358 | |||
359 | if (info) | ||
360 | framebuffer_release(info); | ||
361 | return ret; | ||
362 | } | ||
363 | |||
364 | static void gxfb_remove(struct pci_dev *pdev) | ||
365 | { | ||
366 | struct fb_info *info = pci_get_drvdata(pdev); | ||
367 | struct geodefb_par *par = info->par; | ||
368 | |||
369 | unregister_framebuffer(info); | ||
370 | |||
371 | iounmap((void __iomem *)info->screen_base); | ||
372 | pci_release_region(pdev, 0); | ||
373 | |||
374 | iounmap(par->vid_regs); | ||
375 | pci_release_region(pdev, 3); | ||
376 | |||
377 | iounmap(par->dc_regs); | ||
378 | pci_release_region(pdev, 2); | ||
379 | |||
380 | pci_disable_device(pdev); | ||
381 | pci_set_drvdata(pdev, NULL); | ||
382 | |||
383 | framebuffer_release(info); | ||
384 | } | ||
385 | |||
386 | static struct pci_device_id gxfb_id_table[] = { | ||
387 | { PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_VIDEO, | ||
388 | PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16, | ||
389 | 0xff0000, 0 }, | ||
390 | { 0, } | ||
391 | }; | ||
392 | |||
393 | MODULE_DEVICE_TABLE(pci, gxfb_id_table); | ||
394 | |||
395 | static struct pci_driver gxfb_driver = { | ||
396 | .name = "gxfb", | ||
397 | .id_table = gxfb_id_table, | ||
398 | .probe = gxfb_probe, | ||
399 | .remove = gxfb_remove, | ||
400 | }; | ||
401 | |||
402 | static int __init gxfb_init(void) | ||
403 | { | ||
404 | #ifndef MODULE | ||
405 | if (fb_get_options("gxfb", NULL)) | ||
406 | return -ENODEV; | ||
407 | #endif | ||
408 | return pci_register_driver(&gxfb_driver); | ||
409 | } | ||
410 | |||
411 | static void __exit gxfb_cleanup(void) | ||
412 | { | ||
413 | pci_unregister_driver(&gxfb_driver); | ||
414 | } | ||
415 | |||
416 | module_init(gxfb_init); | ||
417 | module_exit(gxfb_cleanup); | ||
418 | |||
419 | module_param_string(mode, mode_option, sizeof(mode_option), 0444); | ||
420 | MODULE_PARM_DESC(mode, "video mode (<x>x<y>[-<bpp>][@<refr>])"); | ||
421 | |||
422 | MODULE_DESCRIPTION("Framebuffer driver for the AMD Geode GX"); | ||
423 | MODULE_LICENSE("GPL"); | ||
diff --git a/drivers/video/geode/video_gx.c b/drivers/video/geode/video_gx.c new file mode 100644 index 000000000000..2b2a7880ea75 --- /dev/null +++ b/drivers/video/geode/video_gx.c | |||
@@ -0,0 +1,262 @@ | |||
1 | /* | ||
2 | * Geode GX video processor device. | ||
3 | * | ||
4 | * Copyright (C) 2006 Arcom Control Systems Ltd. | ||
5 | * | ||
6 | * Portions from AMD's original 2.4 driver: | ||
7 | * Copyright (C) 2004 Advanced Micro Devices, Inc. | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | */ | ||
14 | #include <linux/fb.h> | ||
15 | #include <linux/delay.h> | ||
16 | #include <asm/io.h> | ||
17 | #include <asm/delay.h> | ||
18 | #include <asm/msr.h> | ||
19 | |||
20 | #include "geodefb.h" | ||
21 | #include "video_gx.h" | ||
22 | |||
23 | |||
24 | /* | ||
25 | * Tables of register settings for various DOTCLKs. | ||
26 | */ | ||
27 | struct gx_pll_entry { | ||
28 | long pixclock; /* ps */ | ||
29 | u32 sys_rstpll_bits; | ||
30 | u32 dotpll_value; | ||
31 | }; | ||
32 | |||
33 | #define POSTDIV3 ((u32)MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3) | ||
34 | #define PREMULT2 ((u32)MSR_GLCP_SYS_RSTPLL_DOTPREMULT2) | ||
35 | #define PREDIV2 ((u32)MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3) | ||
36 | |||
37 | static const struct gx_pll_entry gx_pll_table_48MHz[] = { | ||
38 | { 40123, POSTDIV3, 0x00000BF2 }, /* 24.9230 */ | ||
39 | { 39721, 0, 0x00000037 }, /* 25.1750 */ | ||
40 | { 35308, POSTDIV3|PREMULT2, 0x00000B1A }, /* 28.3220 */ | ||
41 | { 31746, POSTDIV3, 0x000002D2 }, /* 31.5000 */ | ||
42 | { 27777, POSTDIV3|PREMULT2, 0x00000FE2 }, /* 36.0000 */ | ||
43 | { 26666, POSTDIV3, 0x0000057A }, /* 37.5000 */ | ||
44 | { 25000, POSTDIV3, 0x0000030A }, /* 40.0000 */ | ||
45 | { 22271, 0, 0x00000063 }, /* 44.9000 */ | ||
46 | { 20202, 0, 0x0000054B }, /* 49.5000 */ | ||
47 | { 20000, 0, 0x0000026E }, /* 50.0000 */ | ||
48 | { 19860, PREMULT2, 0x00000037 }, /* 50.3500 */ | ||
49 | { 18518, POSTDIV3|PREMULT2, 0x00000B0D }, /* 54.0000 */ | ||
50 | { 17777, 0, 0x00000577 }, /* 56.2500 */ | ||
51 | { 17733, 0, 0x000007F7 }, /* 56.3916 */ | ||
52 | { 17653, 0, 0x0000057B }, /* 56.6444 */ | ||
53 | { 16949, PREMULT2, 0x00000707 }, /* 59.0000 */ | ||
54 | { 15873, POSTDIV3|PREMULT2, 0x00000B39 }, /* 63.0000 */ | ||
55 | { 15384, POSTDIV3|PREMULT2, 0x00000B45 }, /* 65.0000 */ | ||
56 | { 14814, POSTDIV3|PREMULT2, 0x00000FC1 }, /* 67.5000 */ | ||
57 | { 14124, POSTDIV3, 0x00000561 }, /* 70.8000 */ | ||
58 | { 13888, POSTDIV3, 0x000007E1 }, /* 72.0000 */ | ||
59 | { 13426, PREMULT2, 0x00000F4A }, /* 74.4810 */ | ||
60 | { 13333, 0, 0x00000052 }, /* 75.0000 */ | ||
61 | { 12698, 0, 0x00000056 }, /* 78.7500 */ | ||
62 | { 12500, POSTDIV3|PREMULT2, 0x00000709 }, /* 80.0000 */ | ||
63 | { 11135, PREMULT2, 0x00000262 }, /* 89.8000 */ | ||
64 | { 10582, 0, 0x000002D2 }, /* 94.5000 */ | ||
65 | { 10101, PREMULT2, 0x00000B4A }, /* 99.0000 */ | ||
66 | { 10000, PREMULT2, 0x00000036 }, /* 100.0000 */ | ||
67 | { 9259, 0, 0x000007E2 }, /* 108.0000 */ | ||
68 | { 8888, 0, 0x000007F6 }, /* 112.5000 */ | ||
69 | { 7692, POSTDIV3|PREMULT2, 0x00000FB0 }, /* 130.0000 */ | ||
70 | { 7407, POSTDIV3|PREMULT2, 0x00000B50 }, /* 135.0000 */ | ||
71 | { 6349, 0, 0x00000055 }, /* 157.5000 */ | ||
72 | { 6172, 0, 0x000009C1 }, /* 162.0000 */ | ||
73 | { 5787, PREMULT2, 0x0000002D }, /* 172.798 */ | ||
74 | { 5698, 0, 0x000002C1 }, /* 175.5000 */ | ||
75 | { 5291, 0, 0x000002D1 }, /* 189.0000 */ | ||
76 | { 4938, 0, 0x00000551 }, /* 202.5000 */ | ||
77 | { 4357, 0, 0x0000057D }, /* 229.5000 */ | ||
78 | }; | ||
79 | |||
80 | static const struct gx_pll_entry gx_pll_table_14MHz[] = { | ||
81 | { 39721, 0, 0x00000037 }, /* 25.1750 */ | ||
82 | { 35308, 0, 0x00000B7B }, /* 28.3220 */ | ||
83 | { 31746, 0, 0x000004D3 }, /* 31.5000 */ | ||
84 | { 27777, 0, 0x00000BE3 }, /* 36.0000 */ | ||
85 | { 26666, 0, 0x0000074F }, /* 37.5000 */ | ||
86 | { 25000, 0, 0x0000050B }, /* 40.0000 */ | ||
87 | { 22271, 0, 0x00000063 }, /* 44.9000 */ | ||
88 | { 20202, 0, 0x0000054B }, /* 49.5000 */ | ||
89 | { 20000, 0, 0x0000026E }, /* 50.0000 */ | ||
90 | { 19860, 0, 0x000007C3 }, /* 50.3500 */ | ||
91 | { 18518, 0, 0x000007E3 }, /* 54.0000 */ | ||
92 | { 17777, 0, 0x00000577 }, /* 56.2500 */ | ||
93 | { 17733, 0, 0x000002FB }, /* 56.3916 */ | ||
94 | { 17653, 0, 0x0000057B }, /* 56.6444 */ | ||
95 | { 16949, 0, 0x0000058B }, /* 59.0000 */ | ||
96 | { 15873, 0, 0x0000095E }, /* 63.0000 */ | ||
97 | { 15384, 0, 0x0000096A }, /* 65.0000 */ | ||
98 | { 14814, 0, 0x00000BC2 }, /* 67.5000 */ | ||
99 | { 14124, 0, 0x0000098A }, /* 70.8000 */ | ||
100 | { 13888, 0, 0x00000BE2 }, /* 72.0000 */ | ||
101 | { 13333, 0, 0x00000052 }, /* 75.0000 */ | ||
102 | { 12698, 0, 0x00000056 }, /* 78.7500 */ | ||
103 | { 12500, 0, 0x0000050A }, /* 80.0000 */ | ||
104 | { 11135, 0, 0x0000078E }, /* 89.8000 */ | ||
105 | { 10582, 0, 0x000002D2 }, /* 94.5000 */ | ||
106 | { 10101, 0, 0x000011F6 }, /* 99.0000 */ | ||
107 | { 10000, 0, 0x0000054E }, /* 100.0000 */ | ||
108 | { 9259, 0, 0x000007E2 }, /* 108.0000 */ | ||
109 | { 8888, 0, 0x000002FA }, /* 112.5000 */ | ||
110 | { 7692, 0, 0x00000BB1 }, /* 130.0000 */ | ||
111 | { 7407, 0, 0x00000975 }, /* 135.0000 */ | ||
112 | { 6349, 0, 0x00000055 }, /* 157.5000 */ | ||
113 | { 6172, 0, 0x000009C1 }, /* 162.0000 */ | ||
114 | { 5698, 0, 0x000002C1 }, /* 175.5000 */ | ||
115 | { 5291, 0, 0x00000539 }, /* 189.0000 */ | ||
116 | { 4938, 0, 0x00000551 }, /* 202.5000 */ | ||
117 | { 4357, 0, 0x0000057D }, /* 229.5000 */ | ||
118 | }; | ||
119 | |||
120 | static void gx_set_dclk_frequency(struct fb_info *info) | ||
121 | { | ||
122 | const struct gx_pll_entry *pll_table; | ||
123 | int pll_table_len; | ||
124 | int i, best_i; | ||
125 | long min, diff; | ||
126 | u64 dotpll, sys_rstpll; | ||
127 | int timeout = 1000; | ||
128 | |||
129 | /* Rev. 1 Geode GXs use a 14 MHz reference clock instead of 48 MHz. */ | ||
130 | if (cpu_data->x86_mask == 1) { | ||
131 | pll_table = gx_pll_table_14MHz; | ||
132 | pll_table_len = ARRAY_SIZE(gx_pll_table_14MHz); | ||
133 | } else { | ||
134 | pll_table = gx_pll_table_48MHz; | ||
135 | pll_table_len = ARRAY_SIZE(gx_pll_table_48MHz); | ||
136 | } | ||
137 | |||
138 | /* Search the table for the closest pixclock. */ | ||
139 | best_i = 0; | ||
140 | min = abs(pll_table[0].pixclock - info->var.pixclock); | ||
141 | for (i = 1; i < pll_table_len; i++) { | ||
142 | diff = abs(pll_table[i].pixclock - info->var.pixclock); | ||
143 | if (diff < min) { | ||
144 | min = diff; | ||
145 | best_i = i; | ||
146 | } | ||
147 | } | ||
148 | |||
149 | rdmsrl(MSR_GLCP_SYS_RSTPLL, sys_rstpll); | ||
150 | rdmsrl(MSR_GLCP_DOTPLL, dotpll); | ||
151 | |||
152 | /* Program new M, N and P. */ | ||
153 | dotpll &= 0x00000000ffffffffull; | ||
154 | dotpll |= (u64)pll_table[best_i].dotpll_value << 32; | ||
155 | dotpll |= MSR_GLCP_DOTPLL_DOTRESET; | ||
156 | dotpll &= ~MSR_GLCP_DOTPLL_BYPASS; | ||
157 | |||
158 | wrmsrl(MSR_GLCP_DOTPLL, dotpll); | ||
159 | |||
160 | /* Program dividers. */ | ||
161 | sys_rstpll &= ~( MSR_GLCP_SYS_RSTPLL_DOTPREDIV2 | ||
162 | | MSR_GLCP_SYS_RSTPLL_DOTPREMULT2 | ||
163 | | MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3 ); | ||
164 | sys_rstpll |= pll_table[best_i].sys_rstpll_bits; | ||
165 | |||
166 | wrmsrl(MSR_GLCP_SYS_RSTPLL, sys_rstpll); | ||
167 | |||
168 | /* Clear reset bit to start PLL. */ | ||
169 | dotpll &= ~(MSR_GLCP_DOTPLL_DOTRESET); | ||
170 | wrmsrl(MSR_GLCP_DOTPLL, dotpll); | ||
171 | |||
172 | /* Wait for LOCK bit. */ | ||
173 | do { | ||
174 | rdmsrl(MSR_GLCP_DOTPLL, dotpll); | ||
175 | } while (timeout-- && !(dotpll & MSR_GLCP_DOTPLL_LOCK)); | ||
176 | } | ||
177 | |||
178 | static void gx_configure_display(struct fb_info *info) | ||
179 | { | ||
180 | struct geodefb_par *par = info->par; | ||
181 | u32 dcfg, fp_pm; | ||
182 | |||
183 | dcfg = readl(par->vid_regs + GX_DCFG); | ||
184 | |||
185 | /* Clear bits from existing mode. */ | ||
186 | dcfg &= ~(GX_DCFG_CRT_SYNC_SKW_MASK | ||
187 | | GX_DCFG_CRT_HSYNC_POL | GX_DCFG_CRT_VSYNC_POL | ||
188 | | GX_DCFG_VSYNC_EN | GX_DCFG_HSYNC_EN); | ||
189 | |||
190 | /* Set default sync skew. */ | ||
191 | dcfg |= GX_DCFG_CRT_SYNC_SKW_DFLT; | ||
192 | |||
193 | /* Enable hsync and vsync. */ | ||
194 | dcfg |= GX_DCFG_HSYNC_EN | GX_DCFG_VSYNC_EN; | ||
195 | |||
196 | /* Sync polarities. */ | ||
197 | if (info->var.sync & FB_SYNC_HOR_HIGH_ACT) | ||
198 | dcfg |= GX_DCFG_CRT_HSYNC_POL; | ||
199 | if (info->var.sync & FB_SYNC_VERT_HIGH_ACT) | ||
200 | dcfg |= GX_DCFG_CRT_VSYNC_POL; | ||
201 | |||
202 | writel(dcfg, par->vid_regs + GX_DCFG); | ||
203 | |||
204 | /* Power on flat panel. */ | ||
205 | fp_pm = readl(par->vid_regs + GX_FP_PM); | ||
206 | fp_pm |= GX_FP_PM_P; | ||
207 | writel(fp_pm, par->vid_regs + GX_FP_PM); | ||
208 | } | ||
209 | |||
210 | static int gx_blank_display(struct fb_info *info, int blank_mode) | ||
211 | { | ||
212 | struct geodefb_par *par = info->par; | ||
213 | u32 dcfg, fp_pm; | ||
214 | int blank, hsync, vsync; | ||
215 | |||
216 | /* CRT power saving modes. */ | ||
217 | switch (blank_mode) { | ||
218 | case FB_BLANK_UNBLANK: | ||
219 | blank = 0; hsync = 1; vsync = 1; | ||
220 | break; | ||
221 | case FB_BLANK_NORMAL: | ||
222 | blank = 1; hsync = 1; vsync = 1; | ||
223 | break; | ||
224 | case FB_BLANK_VSYNC_SUSPEND: | ||
225 | blank = 1; hsync = 1; vsync = 0; | ||
226 | break; | ||
227 | case FB_BLANK_HSYNC_SUSPEND: | ||
228 | blank = 1; hsync = 0; vsync = 1; | ||
229 | break; | ||
230 | case FB_BLANK_POWERDOWN: | ||
231 | blank = 1; hsync = 0; vsync = 0; | ||
232 | break; | ||
233 | default: | ||
234 | return -EINVAL; | ||
235 | } | ||
236 | dcfg = readl(par->vid_regs + GX_DCFG); | ||
237 | dcfg &= ~(GX_DCFG_DAC_BL_EN | ||
238 | | GX_DCFG_HSYNC_EN | GX_DCFG_VSYNC_EN); | ||
239 | if (!blank) | ||
240 | dcfg |= GX_DCFG_DAC_BL_EN; | ||
241 | if (hsync) | ||
242 | dcfg |= GX_DCFG_HSYNC_EN; | ||
243 | if (vsync) | ||
244 | dcfg |= GX_DCFG_VSYNC_EN; | ||
245 | writel(dcfg, par->vid_regs + GX_DCFG); | ||
246 | |||
247 | /* Power on/off flat panel. */ | ||
248 | fp_pm = readl(par->vid_regs + GX_FP_PM); | ||
249 | if (blank_mode == FB_BLANK_POWERDOWN) | ||
250 | fp_pm &= ~GX_FP_PM_P; | ||
251 | else | ||
252 | fp_pm |= GX_FP_PM_P; | ||
253 | writel(fp_pm, par->vid_regs + GX_FP_PM); | ||
254 | |||
255 | return 0; | ||
256 | } | ||
257 | |||
258 | struct geode_vid_ops gx_vid_ops = { | ||
259 | .set_dclk = gx_set_dclk_frequency, | ||
260 | .configure_display = gx_configure_display, | ||
261 | .blank_display = gx_blank_display, | ||
262 | }; | ||
diff --git a/drivers/video/geode/video_gx.h b/drivers/video/geode/video_gx.h new file mode 100644 index 000000000000..2d9211f3ed84 --- /dev/null +++ b/drivers/video/geode/video_gx.h | |||
@@ -0,0 +1,47 @@ | |||
1 | /* | ||
2 | * Geode GX video device | ||
3 | * | ||
4 | * Copyright (C) 2006 Arcom Control Systems Ltd. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; either version 2 of the License, or | ||
9 | * (at your option) any later version. | ||
10 | */ | ||
11 | #ifndef __VIDEO_GX_H__ | ||
12 | #define __VIDEO_GX_H__ | ||
13 | |||
14 | extern struct geode_vid_ops gx_vid_ops; | ||
15 | |||
16 | /* Geode GX video processor registers */ | ||
17 | |||
18 | #define GX_DCFG 0x0008 | ||
19 | # define GX_DCFG_CRT_EN 0x00000001 | ||
20 | # define GX_DCFG_HSYNC_EN 0x00000002 | ||
21 | # define GX_DCFG_VSYNC_EN 0x00000004 | ||
22 | # define GX_DCFG_DAC_BL_EN 0x00000008 | ||
23 | # define GX_DCFG_CRT_HSYNC_POL 0x00000100 | ||
24 | # define GX_DCFG_CRT_VSYNC_POL 0x00000200 | ||
25 | # define GX_DCFG_CRT_SYNC_SKW_MASK 0x0001C000 | ||
26 | # define GX_DCFG_CRT_SYNC_SKW_DFLT 0x00010000 | ||
27 | # define GX_DCFG_VG_CK 0x00100000 | ||
28 | # define GX_DCFG_GV_GAM 0x00200000 | ||
29 | # define GX_DCFG_DAC_VREF 0x04000000 | ||
30 | |||
31 | /* Geode GX flat panel display control registers */ | ||
32 | #define GX_FP_PM 0x410 | ||
33 | # define GX_FP_PM_P 0x01000000 | ||
34 | |||
35 | /* Geode GX clock control MSRs */ | ||
36 | |||
37 | #define MSR_GLCP_SYS_RSTPLL 0x4c000014 | ||
38 | # define MSR_GLCP_SYS_RSTPLL_DOTPREDIV2 (0x0000000000000002ull) | ||
39 | # define MSR_GLCP_SYS_RSTPLL_DOTPREMULT2 (0x0000000000000004ull) | ||
40 | # define MSR_GLCP_SYS_RSTPLL_DOTPOSTDIV3 (0x0000000000000008ull) | ||
41 | |||
42 | #define MSR_GLCP_DOTPLL 0x4c000015 | ||
43 | # define MSR_GLCP_DOTPLL_DOTRESET (0x0000000000000001ull) | ||
44 | # define MSR_GLCP_DOTPLL_BYPASS (0x0000000000008000ull) | ||
45 | # define MSR_GLCP_DOTPLL_LOCK (0x0000000002000000ull) | ||
46 | |||
47 | #endif /* !__VIDEO_GX_H__ */ | ||
diff --git a/drivers/video/i810/i810-i2c.c b/drivers/video/i810/i810-i2c.c index e3c8b5f1ca76..3fe3ae1aff12 100644 --- a/drivers/video/i810/i810-i2c.c +++ b/drivers/video/i810/i810-i2c.c | |||
@@ -210,8 +210,7 @@ int i810_probe_i2c_connector(struct fb_info *info, u8 **out_edid, int conn) | |||
210 | } | 210 | } |
211 | } | 211 | } |
212 | 212 | ||
213 | if (out_edid) | 213 | *out_edid = edid; |
214 | *out_edid = edid; | ||
215 | 214 | ||
216 | return (edid) ? 0 : 1; | 215 | return (edid) ? 0 : 1; |
217 | } | 216 | } |
diff --git a/drivers/video/imsttfb.c b/drivers/video/imsttfb.c index 7db42542eb19..f73c642b50c2 100644 --- a/drivers/video/imsttfb.c +++ b/drivers/video/imsttfb.c | |||
@@ -440,9 +440,9 @@ getclkMHz(struct imstt_par *par) | |||
440 | static void | 440 | static void |
441 | setclkMHz(struct imstt_par *par, __u32 MHz) | 441 | setclkMHz(struct imstt_par *par, __u32 MHz) |
442 | { | 442 | { |
443 | __u32 clk_m, clk_n, clk_p, x, stage, spilled; | 443 | __u32 clk_m, clk_n, x, stage, spilled; |
444 | 444 | ||
445 | clk_m = clk_n = clk_p = 0; | 445 | clk_m = clk_n = 0; |
446 | stage = spilled = 0; | 446 | stage = spilled = 0; |
447 | for (;;) { | 447 | for (;;) { |
448 | switch (stage) { | 448 | switch (stage) { |
@@ -453,7 +453,7 @@ setclkMHz(struct imstt_par *par, __u32 MHz) | |||
453 | clk_n++; | 453 | clk_n++; |
454 | break; | 454 | break; |
455 | } | 455 | } |
456 | x = 20 * (clk_m + 1) / ((clk_n + 1) * (clk_p ? 2 * clk_p : 1)); | 456 | x = 20 * (clk_m + 1) / (clk_n + 1); |
457 | if (x == MHz) | 457 | if (x == MHz) |
458 | break; | 458 | break; |
459 | if (x > MHz) { | 459 | if (x > MHz) { |
@@ -466,7 +466,7 @@ setclkMHz(struct imstt_par *par, __u32 MHz) | |||
466 | 466 | ||
467 | par->init.pclk_m = clk_m; | 467 | par->init.pclk_m = clk_m; |
468 | par->init.pclk_n = clk_n; | 468 | par->init.pclk_n = clk_n; |
469 | par->init.pclk_p = clk_p; | 469 | par->init.pclk_p = 0; |
470 | } | 470 | } |
471 | 471 | ||
472 | static struct imstt_regvals * | 472 | static struct imstt_regvals * |
@@ -1372,18 +1372,24 @@ init_imstt(struct fb_info *info) | |||
1372 | write_reg_le32(par->dc_regs, STGCTL, tmp & ~0x1); | 1372 | write_reg_le32(par->dc_regs, STGCTL, tmp & ~0x1); |
1373 | write_reg_le32(par->dc_regs, SSR, 0); | 1373 | write_reg_le32(par->dc_regs, SSR, 0); |
1374 | 1374 | ||
1375 | /* set default values for DAC registers */ | 1375 | /* set default values for DAC registers */ |
1376 | if (par->ramdac == IBM) { | 1376 | if (par->ramdac == IBM) { |
1377 | par->cmap_regs[PPMASK] = 0xff; eieio(); | 1377 | par->cmap_regs[PPMASK] = 0xff; |
1378 | par->cmap_regs[PIDXHI] = 0; eieio(); | 1378 | eieio(); |
1379 | for (i = 0; i < sizeof(ibm_initregs) / sizeof(*ibm_initregs); i++) { | 1379 | par->cmap_regs[PIDXHI] = 0; |
1380 | par->cmap_regs[PIDXLO] = ibm_initregs[i].addr; eieio(); | 1380 | eieio(); |
1381 | par->cmap_regs[PIDXDATA] = ibm_initregs[i].value; eieio(); | 1381 | for (i = 0; i < ARRAY_SIZE(ibm_initregs); i++) { |
1382 | par->cmap_regs[PIDXLO] = ibm_initregs[i].addr; | ||
1383 | eieio(); | ||
1384 | par->cmap_regs[PIDXDATA] = ibm_initregs[i].value; | ||
1385 | eieio(); | ||
1382 | } | 1386 | } |
1383 | } else { | 1387 | } else { |
1384 | for (i = 0; i < sizeof(tvp_initregs) / sizeof(*tvp_initregs); i++) { | 1388 | for (i = 0; i < ARRAY_SIZE(tvp_initregs); i++) { |
1385 | par->cmap_regs[TVPADDRW] = tvp_initregs[i].addr; eieio(); | 1389 | par->cmap_regs[TVPADDRW] = tvp_initregs[i].addr; |
1386 | par->cmap_regs[TVPIDATA] = tvp_initregs[i].value; eieio(); | 1390 | eieio(); |
1391 | par->cmap_regs[TVPIDATA] = tvp_initregs[i].value; | ||
1392 | eieio(); | ||
1387 | } | 1393 | } |
1388 | } | 1394 | } |
1389 | 1395 | ||
diff --git a/drivers/video/macmodes.c b/drivers/video/macmodes.c index 2fc71081f7e7..c0385c6f7db5 100644 --- a/drivers/video/macmodes.c +++ b/drivers/video/macmodes.c | |||
@@ -380,7 +380,7 @@ int __init mac_find_mode(struct fb_var_screeninfo *var, struct fb_info *info, | |||
380 | if (mode_option && !strncmp(mode_option, "mac", 3)) { | 380 | if (mode_option && !strncmp(mode_option, "mac", 3)) { |
381 | mode_option += 3; | 381 | mode_option += 3; |
382 | db = mac_modedb; | 382 | db = mac_modedb; |
383 | dbsize = sizeof(mac_modedb)/sizeof(*mac_modedb); | 383 | dbsize = ARRAY_SIZE(mac_modedb); |
384 | } | 384 | } |
385 | return fb_find_mode(var, info, mode_option, db, dbsize, | 385 | return fb_find_mode(var, info, mode_option, db, dbsize, |
386 | &mac_modedb[DEFAULT_MODEDB_INDEX], default_bpp); | 386 | &mac_modedb[DEFAULT_MODEDB_INDEX], default_bpp); |
diff --git a/drivers/video/matrox/matroxfb_g450.c b/drivers/video/matrox/matroxfb_g450.c index c122d8743dd2..4d610b405d45 100644 --- a/drivers/video/matrox/matroxfb_g450.c +++ b/drivers/video/matrox/matroxfb_g450.c | |||
@@ -59,7 +59,7 @@ static const struct mctl g450_controls[] = | |||
59 | }, offsetof(struct matrox_fb_info, altout.tvo_params.testout) }, | 59 | }, offsetof(struct matrox_fb_info, altout.tvo_params.testout) }, |
60 | }; | 60 | }; |
61 | 61 | ||
62 | #define G450CTRLS (sizeof(g450_controls)/sizeof(g450_controls[0])) | 62 | #define G450CTRLS ARRAY_SIZE(g450_controls) |
63 | 63 | ||
64 | /* Return: positive number: id found | 64 | /* Return: positive number: id found |
65 | -EINVAL: id not found, return failure | 65 | -EINVAL: id not found, return failure |
diff --git a/drivers/video/matrox/matroxfb_maven.c b/drivers/video/matrox/matroxfb_maven.c index 6019710dc298..5d29a26b8cdf 100644 --- a/drivers/video/matrox/matroxfb_maven.c +++ b/drivers/video/matrox/matroxfb_maven.c | |||
@@ -89,12 +89,12 @@ static const struct mctl maven_controls[] = | |||
89 | }, offsetof(struct matrox_fb_info, altout.tvo_params.hue) }, | 89 | }, offsetof(struct matrox_fb_info, altout.tvo_params.hue) }, |
90 | { { V4L2_CID_GAMMA, V4L2_CTRL_TYPE_INTEGER, | 90 | { { V4L2_CID_GAMMA, V4L2_CTRL_TYPE_INTEGER, |
91 | "gamma", | 91 | "gamma", |
92 | 0, sizeof(maven_gamma)/sizeof(maven_gamma[0])-1, 1, 3, | 92 | 0, ARRAY_SIZE(maven_gamma) - 1, 1, 3, |
93 | 0, | 93 | 0, |
94 | }, offsetof(struct matrox_fb_info, altout.tvo_params.gamma) }, | 94 | }, offsetof(struct matrox_fb_info, altout.tvo_params.gamma) }, |
95 | { { MATROXFB_CID_TESTOUT, V4L2_CTRL_TYPE_BOOLEAN, | 95 | { { MATROXFB_CID_TESTOUT, V4L2_CTRL_TYPE_BOOLEAN, |
96 | "test output", | 96 | "test output", |
97 | 0, 1, 1, 0, | 97 | 0, 1, 1, 0, |
98 | 0, | 98 | 0, |
99 | }, offsetof(struct matrox_fb_info, altout.tvo_params.testout) }, | 99 | }, offsetof(struct matrox_fb_info, altout.tvo_params.testout) }, |
100 | { { MATROXFB_CID_DEFLICKER, V4L2_CTRL_TYPE_INTEGER, | 100 | { { MATROXFB_CID_DEFLICKER, V4L2_CTRL_TYPE_INTEGER, |
@@ -105,7 +105,7 @@ static const struct mctl maven_controls[] = | |||
105 | 105 | ||
106 | }; | 106 | }; |
107 | 107 | ||
108 | #define MAVCTRLS (sizeof(maven_controls)/sizeof(maven_controls[0])) | 108 | #define MAVCTRLS ARRAY_SIZE(maven_controls) |
109 | 109 | ||
110 | /* Return: positive number: id found | 110 | /* Return: positive number: id found |
111 | -EINVAL: id not found, return failure | 111 | -EINVAL: id not found, return failure |
@@ -129,7 +129,7 @@ static int get_ctrl_id(__u32 v4l2_id) { | |||
129 | 129 | ||
130 | struct maven_data { | 130 | struct maven_data { |
131 | struct matrox_fb_info* primary_head; | 131 | struct matrox_fb_info* primary_head; |
132 | struct i2c_client* client; | 132 | struct i2c_client client; |
133 | int version; | 133 | int version; |
134 | }; | 134 | }; |
135 | 135 | ||
@@ -970,7 +970,7 @@ static inline int maven_compute_timming(struct maven_data* md, | |||
970 | 970 | ||
971 | static int maven_program_timming(struct maven_data* md, | 971 | static int maven_program_timming(struct maven_data* md, |
972 | const struct mavenregs* m) { | 972 | const struct mavenregs* m) { |
973 | struct i2c_client* c = md->client; | 973 | struct i2c_client* c = &md->client; |
974 | 974 | ||
975 | if (m->mode == MATROXFB_OUTPUT_MODE_MONITOR) { | 975 | if (m->mode == MATROXFB_OUTPUT_MODE_MONITOR) { |
976 | LR(0x80); | 976 | LR(0x80); |
@@ -1007,7 +1007,7 @@ static int maven_program_timming(struct maven_data* md, | |||
1007 | } | 1007 | } |
1008 | 1008 | ||
1009 | static inline int maven_resync(struct maven_data* md) { | 1009 | static inline int maven_resync(struct maven_data* md) { |
1010 | struct i2c_client* c = md->client; | 1010 | struct i2c_client* c = &md->client; |
1011 | maven_set_reg(c, 0x95, 0x20); /* start whole thing */ | 1011 | maven_set_reg(c, 0x95, 0x20); /* start whole thing */ |
1012 | return 0; | 1012 | return 0; |
1013 | } | 1013 | } |
@@ -1065,48 +1065,48 @@ static int maven_set_control (struct maven_data* md, | |||
1065 | maven_compute_bwlevel(md, &blacklevel, &whitelevel); | 1065 | maven_compute_bwlevel(md, &blacklevel, &whitelevel); |
1066 | blacklevel = (blacklevel >> 2) | ((blacklevel & 3) << 8); | 1066 | blacklevel = (blacklevel >> 2) | ((blacklevel & 3) << 8); |
1067 | whitelevel = (whitelevel >> 2) | ((whitelevel & 3) << 8); | 1067 | whitelevel = (whitelevel >> 2) | ((whitelevel & 3) << 8); |
1068 | maven_set_reg_pair(md->client, 0x0e, blacklevel); | 1068 | maven_set_reg_pair(&md->client, 0x0e, blacklevel); |
1069 | maven_set_reg_pair(md->client, 0x1e, whitelevel); | 1069 | maven_set_reg_pair(&md->client, 0x1e, whitelevel); |
1070 | } | 1070 | } |
1071 | break; | 1071 | break; |
1072 | case V4L2_CID_SATURATION: | 1072 | case V4L2_CID_SATURATION: |
1073 | { | 1073 | { |
1074 | maven_set_reg(md->client, 0x20, p->value); | 1074 | maven_set_reg(&md->client, 0x20, p->value); |
1075 | maven_set_reg(md->client, 0x22, p->value); | 1075 | maven_set_reg(&md->client, 0x22, p->value); |
1076 | } | 1076 | } |
1077 | break; | 1077 | break; |
1078 | case V4L2_CID_HUE: | 1078 | case V4L2_CID_HUE: |
1079 | { | 1079 | { |
1080 | maven_set_reg(md->client, 0x25, p->value); | 1080 | maven_set_reg(&md->client, 0x25, p->value); |
1081 | } | 1081 | } |
1082 | break; | 1082 | break; |
1083 | case V4L2_CID_GAMMA: | 1083 | case V4L2_CID_GAMMA: |
1084 | { | 1084 | { |
1085 | const struct maven_gamma* g; | 1085 | const struct maven_gamma* g; |
1086 | g = maven_compute_gamma(md); | 1086 | g = maven_compute_gamma(md); |
1087 | maven_set_reg(md->client, 0x83, g->reg83); | 1087 | maven_set_reg(&md->client, 0x83, g->reg83); |
1088 | maven_set_reg(md->client, 0x84, g->reg84); | 1088 | maven_set_reg(&md->client, 0x84, g->reg84); |
1089 | maven_set_reg(md->client, 0x85, g->reg85); | 1089 | maven_set_reg(&md->client, 0x85, g->reg85); |
1090 | maven_set_reg(md->client, 0x86, g->reg86); | 1090 | maven_set_reg(&md->client, 0x86, g->reg86); |
1091 | maven_set_reg(md->client, 0x87, g->reg87); | 1091 | maven_set_reg(&md->client, 0x87, g->reg87); |
1092 | maven_set_reg(md->client, 0x88, g->reg88); | 1092 | maven_set_reg(&md->client, 0x88, g->reg88); |
1093 | maven_set_reg(md->client, 0x89, g->reg89); | 1093 | maven_set_reg(&md->client, 0x89, g->reg89); |
1094 | maven_set_reg(md->client, 0x8a, g->reg8a); | 1094 | maven_set_reg(&md->client, 0x8a, g->reg8a); |
1095 | maven_set_reg(md->client, 0x8b, g->reg8b); | 1095 | maven_set_reg(&md->client, 0x8b, g->reg8b); |
1096 | } | 1096 | } |
1097 | break; | 1097 | break; |
1098 | case MATROXFB_CID_TESTOUT: | 1098 | case MATROXFB_CID_TESTOUT: |
1099 | { | 1099 | { |
1100 | unsigned char val | 1100 | unsigned char val |
1101 | = maven_get_reg (md->client,0x8d); | 1101 | = maven_get_reg(&md->client,0x8d); |
1102 | if (p->value) val |= 0x10; | 1102 | if (p->value) val |= 0x10; |
1103 | else val &= ~0x10; | 1103 | else val &= ~0x10; |
1104 | maven_set_reg (md->client, 0x8d, val); | 1104 | maven_set_reg(&md->client, 0x8d, val); |
1105 | } | 1105 | } |
1106 | break; | 1106 | break; |
1107 | case MATROXFB_CID_DEFLICKER: | 1107 | case MATROXFB_CID_DEFLICKER: |
1108 | { | 1108 | { |
1109 | maven_set_reg(md->client, 0x93, maven_compute_deflicker(md)); | 1109 | maven_set_reg(&md->client, 0x93, maven_compute_deflicker(md)); |
1110 | } | 1110 | } |
1111 | break; | 1111 | break; |
1112 | } | 1112 | } |
@@ -1185,7 +1185,6 @@ static int maven_init_client(struct i2c_client* clnt) { | |||
1185 | MINFO_FROM(container_of(clnt->adapter, struct i2c_bit_adapter, adapter)->minfo); | 1185 | MINFO_FROM(container_of(clnt->adapter, struct i2c_bit_adapter, adapter)->minfo); |
1186 | 1186 | ||
1187 | md->primary_head = MINFO; | 1187 | md->primary_head = MINFO; |
1188 | md->client = clnt; | ||
1189 | down_write(&ACCESS_FBINFO(altout.lock)); | 1188 | down_write(&ACCESS_FBINFO(altout.lock)); |
1190 | ACCESS_FBINFO(outputs[1]).output = &maven_altout; | 1189 | ACCESS_FBINFO(outputs[1]).output = &maven_altout; |
1191 | ACCESS_FBINFO(outputs[1]).src = ACCESS_FBINFO(outputs[1]).default_src; | 1190 | ACCESS_FBINFO(outputs[1]).src = ACCESS_FBINFO(outputs[1]).default_src; |
@@ -1243,19 +1242,17 @@ static int maven_detect_client(struct i2c_adapter* adapter, int address, int kin | |||
1243 | I2C_FUNC_SMBUS_BYTE_DATA | | 1242 | I2C_FUNC_SMBUS_BYTE_DATA | |
1244 | I2C_FUNC_PROTOCOL_MANGLING)) | 1243 | I2C_FUNC_PROTOCOL_MANGLING)) |
1245 | goto ERROR0; | 1244 | goto ERROR0; |
1246 | if (!(new_client = (struct i2c_client*)kmalloc(sizeof(*new_client) + sizeof(*data), | 1245 | if (!(data = kzalloc(sizeof(*data), GFP_KERNEL))) { |
1247 | GFP_KERNEL))) { | ||
1248 | err = -ENOMEM; | 1246 | err = -ENOMEM; |
1249 | goto ERROR0; | 1247 | goto ERROR0; |
1250 | } | 1248 | } |
1251 | memset(new_client, 0, sizeof(*new_client) + sizeof(*data)); | 1249 | new_client = &data->client; |
1252 | data = (struct maven_data*)(new_client + 1); | ||
1253 | i2c_set_clientdata(new_client, data); | 1250 | i2c_set_clientdata(new_client, data); |
1254 | new_client->addr = address; | 1251 | new_client->addr = address; |
1255 | new_client->adapter = adapter; | 1252 | new_client->adapter = adapter; |
1256 | new_client->driver = &maven_driver; | 1253 | new_client->driver = &maven_driver; |
1257 | new_client->flags = 0; | 1254 | new_client->flags = 0; |
1258 | strcpy(new_client->name, "maven client"); | 1255 | strlcpy(new_client->name, "maven", I2C_NAME_SIZE); |
1259 | if ((err = i2c_attach_client(new_client))) | 1256 | if ((err = i2c_attach_client(new_client))) |
1260 | goto ERROR3; | 1257 | goto ERROR3; |
1261 | err = maven_init_client(new_client); | 1258 | err = maven_init_client(new_client); |
@@ -1279,12 +1276,10 @@ static int maven_attach_adapter(struct i2c_adapter* adapter) { | |||
1279 | static int maven_detach_client(struct i2c_client* client) { | 1276 | static int maven_detach_client(struct i2c_client* client) { |
1280 | int err; | 1277 | int err; |
1281 | 1278 | ||
1282 | if ((err = i2c_detach_client(client))) { | 1279 | if ((err = i2c_detach_client(client))) |
1283 | printk(KERN_ERR "maven: Cannot deregister client\n"); | ||
1284 | return err; | 1280 | return err; |
1285 | } | ||
1286 | maven_shutdown_client(client); | 1281 | maven_shutdown_client(client); |
1287 | kfree(client); | 1282 | kfree(i2c_get_clientdata(client)); |
1288 | return 0; | 1283 | return 0; |
1289 | } | 1284 | } |
1290 | 1285 | ||
@@ -1297,20 +1292,13 @@ static struct i2c_driver maven_driver={ | |||
1297 | .detach_client = maven_detach_client, | 1292 | .detach_client = maven_detach_client, |
1298 | }; | 1293 | }; |
1299 | 1294 | ||
1300 | /* ************************** */ | 1295 | static int __init matroxfb_maven_init(void) |
1301 | 1296 | { | |
1302 | static int matroxfb_maven_init(void) { | 1297 | return i2c_add_driver(&maven_driver); |
1303 | int err; | ||
1304 | |||
1305 | err = i2c_add_driver(&maven_driver); | ||
1306 | if (err) { | ||
1307 | printk(KERN_ERR "maven: Maven driver failed to register (%d).\n", err); | ||
1308 | return err; | ||
1309 | } | ||
1310 | return 0; | ||
1311 | } | 1298 | } |
1312 | 1299 | ||
1313 | static void matroxfb_maven_exit(void) { | 1300 | static void __exit matroxfb_maven_exit(void) |
1301 | { | ||
1314 | i2c_del_driver(&maven_driver); | 1302 | i2c_del_driver(&maven_driver); |
1315 | } | 1303 | } |
1316 | 1304 | ||
diff --git a/drivers/video/modedb.c b/drivers/video/modedb.c index 1da2f84bdc25..26a1c618a205 100644 --- a/drivers/video/modedb.c +++ b/drivers/video/modedb.c | |||
@@ -183,6 +183,10 @@ static const struct fb_videomode modedb[] = { | |||
183 | NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3, | 183 | NULL, 75, 1600, 1200, 4938, 304, 64, 46, 1, 192, 3, |
184 | FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED | 184 | FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED |
185 | }, { | 185 | }, { |
186 | /* 1680x1050 @ 60 Hz, 65.191 kHz hsync */ | ||
187 | NULL, 60, 1680, 1050, 6848, 280, 104, 30, 3, 176, 6, | ||
188 | FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED | ||
189 | }, { | ||
186 | /* 1600x1200 @ 85 Hz, 105.77 kHz hsync */ | 190 | /* 1600x1200 @ 85 Hz, 105.77 kHz hsync */ |
187 | NULL, 85, 1600, 1200, 4545, 272, 16, 37, 4, 192, 3, | 191 | NULL, 85, 1600, 1200, 4545, 272, 16, 37, 4, 192, 3, |
188 | FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED | 192 | FB_SYNC_HOR_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, FB_VMODE_NONINTERLACED |
@@ -496,7 +500,7 @@ int fb_find_mode(struct fb_var_screeninfo *var, | |||
496 | /* Set up defaults */ | 500 | /* Set up defaults */ |
497 | if (!db) { | 501 | if (!db) { |
498 | db = modedb; | 502 | db = modedb; |
499 | dbsize = sizeof(modedb)/sizeof(*modedb); | 503 | dbsize = ARRAY_SIZE(modedb); |
500 | } | 504 | } |
501 | if (!default_mode) | 505 | if (!default_mode) |
502 | default_mode = &modedb[DEFAULT_MODEDB_INDEX]; | 506 | default_mode = &modedb[DEFAULT_MODEDB_INDEX]; |
diff --git a/drivers/video/neofb.c b/drivers/video/neofb.c index b961d5601bd9..24b12f71d5a8 100644 --- a/drivers/video/neofb.c +++ b/drivers/video/neofb.c | |||
@@ -165,20 +165,20 @@ static int neoFindMode(int xres, int yres, int depth) | |||
165 | 165 | ||
166 | switch (depth) { | 166 | switch (depth) { |
167 | case 8: | 167 | case 8: |
168 | size = sizeof(bios8) / sizeof(biosMode); | 168 | size = ARRAY_SIZE(bios8); |
169 | mode = bios8; | 169 | mode = bios8; |
170 | break; | 170 | break; |
171 | case 16: | 171 | case 16: |
172 | size = sizeof(bios16) / sizeof(biosMode); | 172 | size = ARRAY_SIZE(bios16); |
173 | mode = bios16; | 173 | mode = bios16; |
174 | break; | 174 | break; |
175 | case 24: | 175 | case 24: |
176 | size = sizeof(bios24) / sizeof(biosMode); | 176 | size = ARRAY_SIZE(bios24); |
177 | mode = bios24; | 177 | mode = bios24; |
178 | break; | 178 | break; |
179 | #ifdef NO_32BIT_SUPPORT_YET | 179 | #ifdef NO_32BIT_SUPPORT_YET |
180 | case 32: | 180 | case 32: |
181 | size = sizeof(bios32) / sizeof(biosMode); | 181 | size = ARRAY_SIZE(bios32); |
182 | mode = bios32; | 182 | mode = bios32; |
183 | break; | 183 | break; |
184 | #endif | 184 | #endif |
diff --git a/drivers/video/nvidia/nv_accel.c b/drivers/video/nvidia/nv_accel.c index f377a29ec97a..4aefb8f41637 100644 --- a/drivers/video/nvidia/nv_accel.c +++ b/drivers/video/nvidia/nv_accel.c | |||
@@ -300,6 +300,9 @@ int nvidiafb_sync(struct fb_info *info) | |||
300 | { | 300 | { |
301 | struct nvidia_par *par = info->par; | 301 | struct nvidia_par *par = info->par; |
302 | 302 | ||
303 | if (info->state != FBINFO_STATE_RUNNING) | ||
304 | return 0; | ||
305 | |||
303 | if (!par->lockup) | 306 | if (!par->lockup) |
304 | NVFlush(par); | 307 | NVFlush(par); |
305 | 308 | ||
@@ -313,6 +316,9 @@ void nvidiafb_copyarea(struct fb_info *info, const struct fb_copyarea *region) | |||
313 | { | 316 | { |
314 | struct nvidia_par *par = info->par; | 317 | struct nvidia_par *par = info->par; |
315 | 318 | ||
319 | if (info->state != FBINFO_STATE_RUNNING) | ||
320 | return; | ||
321 | |||
316 | if (par->lockup) | 322 | if (par->lockup) |
317 | return cfb_copyarea(info, region); | 323 | return cfb_copyarea(info, region); |
318 | 324 | ||
@@ -329,6 +335,9 @@ void nvidiafb_fillrect(struct fb_info *info, const struct fb_fillrect *rect) | |||
329 | struct nvidia_par *par = info->par; | 335 | struct nvidia_par *par = info->par; |
330 | u32 color; | 336 | u32 color; |
331 | 337 | ||
338 | if (info->state != FBINFO_STATE_RUNNING) | ||
339 | return; | ||
340 | |||
332 | if (par->lockup) | 341 | if (par->lockup) |
333 | return cfb_fillrect(info, rect); | 342 | return cfb_fillrect(info, rect); |
334 | 343 | ||
@@ -412,6 +421,9 @@ void nvidiafb_imageblit(struct fb_info *info, const struct fb_image *image) | |||
412 | { | 421 | { |
413 | struct nvidia_par *par = info->par; | 422 | struct nvidia_par *par = info->par; |
414 | 423 | ||
424 | if (info->state != FBINFO_STATE_RUNNING) | ||
425 | return; | ||
426 | |||
415 | if (image->depth == 1 && !par->lockup) | 427 | if (image->depth == 1 && !par->lockup) |
416 | nvidiafb_mono_color_expand(info, image); | 428 | nvidiafb_mono_color_expand(info, image); |
417 | else | 429 | else |
diff --git a/drivers/video/nvidia/nv_i2c.c b/drivers/video/nvidia/nv_i2c.c index bd9eca05e146..1edb1c432b75 100644 --- a/drivers/video/nvidia/nv_i2c.c +++ b/drivers/video/nvidia/nv_i2c.c | |||
@@ -218,8 +218,7 @@ int nvidia_probe_i2c_connector(struct fb_info *info, int conn, u8 **out_edid) | |||
218 | } | 218 | } |
219 | } | 219 | } |
220 | 220 | ||
221 | if (out_edid) | 221 | *out_edid = edid; |
222 | *out_edid = edid; | ||
223 | 222 | ||
224 | return (edid) ? 0 : 1; | 223 | return (edid) ? 0 : 1; |
225 | } | 224 | } |
diff --git a/drivers/video/nvidia/nv_type.h b/drivers/video/nvidia/nv_type.h index e4a5b1da71c4..acdc26693402 100644 --- a/drivers/video/nvidia/nv_type.h +++ b/drivers/video/nvidia/nv_type.h | |||
@@ -129,6 +129,7 @@ struct nvidia_par { | |||
129 | int fpHeight; | 129 | int fpHeight; |
130 | int PanelTweak; | 130 | int PanelTweak; |
131 | int paneltweak; | 131 | int paneltweak; |
132 | int pm_state; | ||
132 | u32 crtcSync_read; | 133 | u32 crtcSync_read; |
133 | u32 fpSyncs; | 134 | u32 fpSyncs; |
134 | u32 dmaPut; | 135 | u32 dmaPut; |
diff --git a/drivers/video/nvidia/nvidia.c b/drivers/video/nvidia/nvidia.c index 7258b3245316..093ab9977c7c 100644 --- a/drivers/video/nvidia/nvidia.c +++ b/drivers/video/nvidia/nvidia.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/fb.h> | 21 | #include <linux/fb.h> |
22 | #include <linux/init.h> | 22 | #include <linux/init.h> |
23 | #include <linux/pci.h> | 23 | #include <linux/pci.h> |
24 | #include <linux/console.h> | ||
24 | #ifdef CONFIG_MTRR | 25 | #ifdef CONFIG_MTRR |
25 | #include <asm/mtrr.h> | 26 | #include <asm/mtrr.h> |
26 | #endif | 27 | #endif |
@@ -297,6 +298,8 @@ static struct pci_device_id nvidiafb_pci_tbl[] = { | |||
297 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 298 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
298 | {PCI_VENDOR_ID_NVIDIA, PCIE_DEVICE_ID_NVIDIA_GEFORCE_6800_GT, | 299 | {PCI_VENDOR_ID_NVIDIA, PCIE_DEVICE_ID_NVIDIA_GEFORCE_6800_GT, |
299 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 300 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
301 | {PCI_VENDOR_ID_NVIDIA, PCIE_DEVICE_ID_NVIDIA_QUADRO_NVS280, | ||
302 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | ||
300 | {PCI_VENDOR_ID_NVIDIA, 0x0252, | 303 | {PCI_VENDOR_ID_NVIDIA, 0x0252, |
301 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, | 304 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, |
302 | {PCI_VENDOR_ID_NVIDIA, 0x0313, | 305 | {PCI_VENDOR_ID_NVIDIA, 0x0313, |
@@ -616,6 +619,30 @@ static int nvidia_panel_tweak(struct nvidia_par *par, | |||
616 | return tweak; | 619 | return tweak; |
617 | } | 620 | } |
618 | 621 | ||
622 | static void nvidia_vga_protect(struct nvidia_par *par, int on) | ||
623 | { | ||
624 | unsigned char tmp; | ||
625 | |||
626 | if (on) { | ||
627 | /* | ||
628 | * Turn off screen and disable sequencer. | ||
629 | */ | ||
630 | tmp = NVReadSeq(par, 0x01); | ||
631 | |||
632 | NVWriteSeq(par, 0x00, 0x01); /* Synchronous Reset */ | ||
633 | NVWriteSeq(par, 0x01, tmp | 0x20); /* disable the display */ | ||
634 | } else { | ||
635 | /* | ||
636 | * Reenable sequencer, then turn on screen. | ||
637 | */ | ||
638 | |||
639 | tmp = NVReadSeq(par, 0x01); | ||
640 | |||
641 | NVWriteSeq(par, 0x01, tmp & ~0x20); /* reenable display */ | ||
642 | NVWriteSeq(par, 0x00, 0x03); /* End Reset */ | ||
643 | } | ||
644 | } | ||
645 | |||
619 | static void nvidia_save_vga(struct nvidia_par *par, | 646 | static void nvidia_save_vga(struct nvidia_par *par, |
620 | struct _riva_hw_state *state) | 647 | struct _riva_hw_state *state) |
621 | { | 648 | { |
@@ -644,9 +671,9 @@ static void nvidia_save_vga(struct nvidia_par *par, | |||
644 | 671 | ||
645 | #undef DUMP_REG | 672 | #undef DUMP_REG |
646 | 673 | ||
647 | static void nvidia_write_regs(struct nvidia_par *par) | 674 | static void nvidia_write_regs(struct nvidia_par *par, |
675 | struct _riva_hw_state *state) | ||
648 | { | 676 | { |
649 | struct _riva_hw_state *state = &par->ModeReg; | ||
650 | int i; | 677 | int i; |
651 | 678 | ||
652 | NVTRACE_ENTER(); | 679 | NVTRACE_ENTER(); |
@@ -695,32 +722,6 @@ static void nvidia_write_regs(struct nvidia_par *par) | |||
695 | NVTRACE_LEAVE(); | 722 | NVTRACE_LEAVE(); |
696 | } | 723 | } |
697 | 724 | ||
698 | static void nvidia_vga_protect(struct nvidia_par *par, int on) | ||
699 | { | ||
700 | unsigned char tmp; | ||
701 | |||
702 | if (on) { | ||
703 | /* | ||
704 | * Turn off screen and disable sequencer. | ||
705 | */ | ||
706 | tmp = NVReadSeq(par, 0x01); | ||
707 | |||
708 | NVWriteSeq(par, 0x00, 0x01); /* Synchronous Reset */ | ||
709 | NVWriteSeq(par, 0x01, tmp | 0x20); /* disable the display */ | ||
710 | } else { | ||
711 | /* | ||
712 | * Reenable sequencer, then turn on screen. | ||
713 | */ | ||
714 | |||
715 | tmp = NVReadSeq(par, 0x01); | ||
716 | |||
717 | NVWriteSeq(par, 0x01, tmp & ~0x20); /* reenable display */ | ||
718 | NVWriteSeq(par, 0x00, 0x03); /* End Reset */ | ||
719 | } | ||
720 | } | ||
721 | |||
722 | |||
723 | |||
724 | static int nvidia_calc_regs(struct fb_info *info) | 725 | static int nvidia_calc_regs(struct fb_info *info) |
725 | { | 726 | { |
726 | struct nvidia_par *par = info->par; | 727 | struct nvidia_par *par = info->par; |
@@ -1069,7 +1070,8 @@ static int nvidiafb_set_par(struct fb_info *info) | |||
1069 | 1070 | ||
1070 | nvidia_vga_protect(par, 1); | 1071 | nvidia_vga_protect(par, 1); |
1071 | 1072 | ||
1072 | nvidia_write_regs(par); | 1073 | nvidia_write_regs(par, &par->ModeReg); |
1074 | NVSetStartAddress(par, 0); | ||
1073 | 1075 | ||
1074 | #if defined (__BIG_ENDIAN) | 1076 | #if defined (__BIG_ENDIAN) |
1075 | /* turn on LFB swapping */ | 1077 | /* turn on LFB swapping */ |
@@ -1378,6 +1380,57 @@ static struct fb_ops nvidia_fb_ops = { | |||
1378 | .fb_sync = nvidiafb_sync, | 1380 | .fb_sync = nvidiafb_sync, |
1379 | }; | 1381 | }; |
1380 | 1382 | ||
1383 | #ifdef CONFIG_PM | ||
1384 | static int nvidiafb_suspend(struct pci_dev *dev, pm_message_t state) | ||
1385 | { | ||
1386 | struct fb_info *info = pci_get_drvdata(dev); | ||
1387 | struct nvidia_par *par = info->par; | ||
1388 | |||
1389 | acquire_console_sem(); | ||
1390 | par->pm_state = state.event; | ||
1391 | |||
1392 | if (state.event == PM_EVENT_FREEZE) { | ||
1393 | dev->dev.power.power_state = state; | ||
1394 | } else { | ||
1395 | fb_set_suspend(info, 1); | ||
1396 | nvidiafb_blank(FB_BLANK_POWERDOWN, info); | ||
1397 | nvidia_write_regs(par, &par->SavedReg); | ||
1398 | pci_save_state(dev); | ||
1399 | pci_disable_device(dev); | ||
1400 | pci_set_power_state(dev, pci_choose_state(dev, state)); | ||
1401 | } | ||
1402 | |||
1403 | release_console_sem(); | ||
1404 | return 0; | ||
1405 | } | ||
1406 | |||
1407 | static int nvidiafb_resume(struct pci_dev *dev) | ||
1408 | { | ||
1409 | struct fb_info *info = pci_get_drvdata(dev); | ||
1410 | struct nvidia_par *par = info->par; | ||
1411 | |||
1412 | acquire_console_sem(); | ||
1413 | pci_set_power_state(dev, PCI_D0); | ||
1414 | |||
1415 | if (par->pm_state != PM_EVENT_FREEZE) { | ||
1416 | pci_restore_state(dev); | ||
1417 | pci_enable_device(dev); | ||
1418 | pci_set_master(dev); | ||
1419 | } | ||
1420 | |||
1421 | par->pm_state = PM_EVENT_ON; | ||
1422 | nvidiafb_set_par(info); | ||
1423 | fb_set_suspend (info, 0); | ||
1424 | nvidiafb_blank(FB_BLANK_UNBLANK, info); | ||
1425 | |||
1426 | release_console_sem(); | ||
1427 | return 0; | ||
1428 | } | ||
1429 | #else | ||
1430 | #define nvidiafb_suspend NULL | ||
1431 | #define nvidiafb_resume NULL | ||
1432 | #endif | ||
1433 | |||
1381 | static int __devinit nvidia_set_fbinfo(struct fb_info *info) | 1434 | static int __devinit nvidia_set_fbinfo(struct fb_info *info) |
1382 | { | 1435 | { |
1383 | struct fb_monspecs *specs = &info->monspecs; | 1436 | struct fb_monspecs *specs = &info->monspecs; |
@@ -1721,8 +1774,6 @@ static void __exit nvidiafb_remove(struct pci_dev *pd) | |||
1721 | struct nvidia_par *par = info->par; | 1774 | struct nvidia_par *par = info->par; |
1722 | 1775 | ||
1723 | NVTRACE_ENTER(); | 1776 | NVTRACE_ENTER(); |
1724 | if (!info) | ||
1725 | return; | ||
1726 | 1777 | ||
1727 | unregister_framebuffer(info); | 1778 | unregister_framebuffer(info); |
1728 | #ifdef CONFIG_MTRR | 1779 | #ifdef CONFIG_MTRR |
@@ -1799,8 +1850,10 @@ static int __devinit nvidiafb_setup(char *options) | |||
1799 | static struct pci_driver nvidiafb_driver = { | 1850 | static struct pci_driver nvidiafb_driver = { |
1800 | .name = "nvidiafb", | 1851 | .name = "nvidiafb", |
1801 | .id_table = nvidiafb_pci_tbl, | 1852 | .id_table = nvidiafb_pci_tbl, |
1802 | .probe = nvidiafb_probe, | 1853 | .probe = nvidiafb_probe, |
1803 | .remove = __exit_p(nvidiafb_remove), | 1854 | .suspend = nvidiafb_suspend, |
1855 | .resume = nvidiafb_resume, | ||
1856 | .remove = __exit_p(nvidiafb_remove), | ||
1804 | }; | 1857 | }; |
1805 | 1858 | ||
1806 | /* ------------------------------------------------------------------------- * | 1859 | /* ------------------------------------------------------------------------- * |
diff --git a/drivers/video/pmagb-b-fb.c b/drivers/video/pmagb-b-fb.c index eeeac924b500..73e2d7d16608 100644 --- a/drivers/video/pmagb-b-fb.c +++ b/drivers/video/pmagb-b-fb.c | |||
@@ -228,7 +228,7 @@ static void __init pmagbbfb_osc_setup(struct fb_info *info) | |||
228 | 228 | ||
229 | freq1 = (par->osc0 * count1 + count0 / 2) / count0; | 229 | freq1 = (par->osc0 * count1 + count0 / 2) / count0; |
230 | par->osc1 = freq1; | 230 | par->osc1 = freq1; |
231 | for (i = 0; i < sizeof(pmagbbfb_freqs) / sizeof(*pmagbbfb_freqs); i++) | 231 | for (i = 0; i < ARRAY_SIZE(pmagbbfb_freqs); i++) |
232 | if (freq1 >= pmagbbfb_freqs[i] - | 232 | if (freq1 >= pmagbbfb_freqs[i] - |
233 | (pmagbbfb_freqs[i] + 128) / 256 && | 233 | (pmagbbfb_freqs[i] + 128) / 256 && |
234 | freq1 <= pmagbbfb_freqs[i] + | 234 | freq1 <= pmagbbfb_freqs[i] + |
diff --git a/drivers/video/radeonfb.c b/drivers/video/radeonfb.c index 04820fab964c..afb6c2ead599 100644 --- a/drivers/video/radeonfb.c +++ b/drivers/video/radeonfb.c | |||
@@ -759,7 +759,7 @@ static void __iomem *radeon_find_rom(struct radeonfb_info *rinfo) | |||
759 | rom = rom_base; | 759 | rom = rom_base; |
760 | 760 | ||
761 | for (i = 0; (i < 512) && (stage != 4); i++) { | 761 | for (i = 0; (i < 512) && (stage != 4); i++) { |
762 | for(j = 0;j < sizeof(radeon_sig)/sizeof(char *);j++) { | 762 | for (j = 0; j < ARRAY_SIZE(radeon_sig); j++) { |
763 | if (radeon_sig[j][0] == *rom) | 763 | if (radeon_sig[j][0] == *rom) |
764 | if (strncmp(radeon_sig[j], rom, | 764 | if (strncmp(radeon_sig[j], rom, |
765 | strlen(radeon_sig[j])) == 0) { | 765 | strlen(radeon_sig[j])) == 0) { |
diff --git a/drivers/video/riva/fbdev.c b/drivers/video/riva/fbdev.c index b7bd6bb2c77c..3e9308f0f165 100644 --- a/drivers/video/riva/fbdev.c +++ b/drivers/video/riva/fbdev.c | |||
@@ -2073,8 +2073,6 @@ static void __exit rivafb_remove(struct pci_dev *pd) | |||
2073 | struct riva_par *par = info->par; | 2073 | struct riva_par *par = info->par; |
2074 | 2074 | ||
2075 | NVTRACE_ENTER(); | 2075 | NVTRACE_ENTER(); |
2076 | if (!info) | ||
2077 | return; | ||
2078 | 2076 | ||
2079 | #ifdef CONFIG_FB_RIVA_I2C | 2077 | #ifdef CONFIG_FB_RIVA_I2C |
2080 | riva_delete_i2c_busses(par); | 2078 | riva_delete_i2c_busses(par); |
diff --git a/drivers/video/savage/savagefb-i2c.c b/drivers/video/savage/savagefb-i2c.c index 00719a91479f..21debed863ac 100644 --- a/drivers/video/savage/savagefb-i2c.c +++ b/drivers/video/savage/savagefb-i2c.c | |||
@@ -273,8 +273,7 @@ int savagefb_probe_i2c_connector(struct fb_info *info, u8 **out_edid) | |||
273 | } | 273 | } |
274 | } | 274 | } |
275 | 275 | ||
276 | if (out_edid) | 276 | *out_edid = edid; |
277 | *out_edid = edid; | ||
278 | 277 | ||
279 | return (edid) ? 0 : 1; | 278 | return (edid) ? 0 : 1; |
280 | } | 279 | } |
diff --git a/drivers/video/sis/init301.c b/drivers/video/sis/init301.c index 2d88f908170a..c3e070a6effd 100644 --- a/drivers/video/sis/init301.c +++ b/drivers/video/sis/init301.c | |||
@@ -8564,11 +8564,9 @@ SiS_ChrontelDoSomething3(struct SiS_Private *SiS_Pr, unsigned short ModeNo) | |||
8564 | static void | 8564 | static void |
8565 | SiS_ChrontelDoSomething2(struct SiS_Private *SiS_Pr) | 8565 | SiS_ChrontelDoSomething2(struct SiS_Private *SiS_Pr) |
8566 | { | 8566 | { |
8567 | unsigned short temp,tempcl,tempch; | 8567 | unsigned short temp; |
8568 | 8568 | ||
8569 | SiS_LongDelay(SiS_Pr, 1); | 8569 | SiS_LongDelay(SiS_Pr, 1); |
8570 | tempcl = 3; | ||
8571 | tempch = 0; | ||
8572 | 8570 | ||
8573 | do { | 8571 | do { |
8574 | temp = SiS_GetCH701x(SiS_Pr,0x66); | 8572 | temp = SiS_GetCH701x(SiS_Pr,0x66); |
@@ -8582,13 +8580,6 @@ SiS_ChrontelDoSomething2(struct SiS_Private *SiS_Pr) | |||
8582 | 8580 | ||
8583 | SiS_SetCH701xForLCD(SiS_Pr); | 8581 | SiS_SetCH701xForLCD(SiS_Pr); |
8584 | 8582 | ||
8585 | if(tempcl == 0) { | ||
8586 | if(tempch == 3) break; | ||
8587 | SiS_ChrontelResetDB(SiS_Pr); | ||
8588 | tempcl = 3; | ||
8589 | tempch++; | ||
8590 | } | ||
8591 | tempcl--; | ||
8592 | temp = SiS_GetCH701x(SiS_Pr,0x76); | 8583 | temp = SiS_GetCH701x(SiS_Pr,0x76); |
8593 | temp &= 0xfb; /* Reset PLL */ | 8584 | temp &= 0xfb; /* Reset PLL */ |
8594 | SiS_SetCH701x(SiS_Pr,0x76,temp); | 8585 | SiS_SetCH701x(SiS_Pr,0x76,temp); |
diff --git a/drivers/video/sstfb.c b/drivers/video/sstfb.c index 8c1a8b5135c6..c44de90ca12e 100644 --- a/drivers/video/sstfb.c +++ b/drivers/video/sstfb.c | |||
@@ -1194,10 +1194,11 @@ static struct dac_switch dacs[] __devinitdata = { | |||
1194 | static int __devinit sst_detect_dactype(struct fb_info *info, struct sstfb_par *par) | 1194 | static int __devinit sst_detect_dactype(struct fb_info *info, struct sstfb_par *par) |
1195 | { | 1195 | { |
1196 | int i, ret = 0; | 1196 | int i, ret = 0; |
1197 | 1197 | ||
1198 | for (i=0; i<sizeof(dacs)/sizeof(dacs[0]); i++) { | 1198 | for (i = 0; i < ARRAY_SIZE(dacs); i++) { |
1199 | ret = dacs[i].detect(info); | 1199 | ret = dacs[i].detect(info); |
1200 | if (ret) break; | 1200 | if (ret) |
1201 | break; | ||
1201 | } | 1202 | } |
1202 | if (!ret) | 1203 | if (!ret) |
1203 | return 0; | 1204 | return 0; |
@@ -1604,8 +1605,8 @@ static int sstfb_dump_regs(struct fb_info *info) | |||
1604 | {FBZMODE,"fbzmode"}, | 1605 | {FBZMODE,"fbzmode"}, |
1605 | }; | 1606 | }; |
1606 | 1607 | ||
1607 | const int pci_s = sizeof(pci_regs)/sizeof(pci_regs[0]); | 1608 | const int pci_s = ARRAY_SIZE(pci_regs); |
1608 | const int sst_s = sizeof(sst_regs)/sizeof(sst_regs[0]); | 1609 | const int sst_s = ARRAY_SIZE(sst_regs); |
1609 | struct sstfb_par *par = info->par; | 1610 | struct sstfb_par *par = info->par; |
1610 | struct pci_dev *dev = par->dev; | 1611 | struct pci_dev *dev = par->dev; |
1611 | u32 pci_res[pci_s]; | 1612 | u32 pci_res[pci_s]; |
diff --git a/drivers/video/virgefb.c b/drivers/video/virgefb.c index ed78747487e2..5ea2345dab99 100644 --- a/drivers/video/virgefb.c +++ b/drivers/video/virgefb.c | |||
@@ -616,8 +616,7 @@ static struct { | |||
616 | #endif | 616 | #endif |
617 | }; | 617 | }; |
618 | 618 | ||
619 | #define arraysize(x) (sizeof(x)/sizeof(*(x))) | 619 | #define NUM_TOTAL_MODES ARRAY_SIZE(virgefb_predefined) |
620 | #define NUM_TOTAL_MODES arraysize(virgefb_predefined) | ||
621 | 620 | ||
622 | /* | 621 | /* |
623 | * Default to 800x600 for video=virge8:, virge16: or virge32: | 622 | * Default to 800x600 for video=virge8:, virge16: or virge32: |