Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linu…
Browse files Browse the repository at this point in the history
…x-2.6

* 'for-linus' of git://git390.osdl.marist.edu/pub/scm/linux-2.6:
  [S390] Use CONFIG_GENERIC_TIME and define TOD clock source.
  [PATCH] sysrq: irq change build fix.
  [S390] irq change build fixes.
  [S390] cio: 0 is a valid chpid.
  [S390] monwriter buffer limit.
  [S390] ap bus poll thread priority.
  • Loading branch information
Linus Torvalds committed Oct 6, 2006
2 parents 96e1a87 + dc64bef commit da104a8
Show file tree
Hide file tree
Showing 21 changed files with 83 additions and 107 deletions.
3 changes: 3 additions & 0 deletions arch/s390/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ config GENERIC_CALIBRATE_DELAY
bool
default y

config GENERIC_TIME
def_bool y

config GENERIC_BUST_SPINLOCK
bool

Expand Down
1 change: 1 addition & 0 deletions arch/s390/defconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ CONFIG_STACKTRACE_SUPPORT=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_GENERIC_TIME=y
CONFIG_S390=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"

Expand Down
9 changes: 6 additions & 3 deletions arch/s390/kernel/s390_ext.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

#include <asm/lowcore.h>
#include <asm/s390_ext.h>
#include <asm/irq_regs.h>
#include <asm/irq.h>

/*
Expand Down Expand Up @@ -114,26 +115,28 @@ void do_extint(struct pt_regs *regs, unsigned short code)
{
ext_int_info_t *p;
int index;
struct pt_regs *old_regs;

irq_enter();
old_regs = set_irq_regs(regs);
asm volatile ("mc 0,0");
if (S390_lowcore.int_clock >= S390_lowcore.jiffy_timer)
/**
* Make sure that the i/o interrupt did not "overtake"
* the last HZ timer interrupt.
*/
account_ticks(regs);
account_ticks();
kstat_cpu(smp_processor_id()).irqs[EXTERNAL_INTERRUPT]++;
index = ext_hash(code);
for (p = ext_int_hash[index]; p; p = p->next) {
if (likely(p->code == code)) {
if (likely(p->handler))
p->handler(regs, code);
p->handler(code);
}
}
set_irq_regs(old_regs);
irq_exit();
}

EXPORT_SYMBOL(register_external_interrupt);
EXPORT_SYMBOL(unregister_external_interrupt);

2 changes: 1 addition & 1 deletion arch/s390/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ void machine_power_off_smp(void)
* cpus are handled.
*/

void do_ext_call_interrupt(struct pt_regs *regs, __u16 code)
void do_ext_call_interrupt(__u16 code)
{
unsigned long bits;

Expand Down
103 changes: 29 additions & 74 deletions arch/s390/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,14 @@
#include <linux/profile.h>
#include <linux/timex.h>
#include <linux/notifier.h>
#include <linux/clocksource.h>

#include <asm/uaccess.h>
#include <asm/delay.h>
#include <asm/s390_ext.h>
#include <asm/div64.h>
#include <asm/irq.h>
#include <asm/irq_regs.h>
#include <asm/timer.h>

/* change this if you have some constant time drift */
Expand Down Expand Up @@ -81,86 +83,18 @@ void tod_to_timeval(__u64 todval, struct timespec *xtime)
xtime->tv_nsec = ((todval * 1000) >> 12);
}

static inline unsigned long do_gettimeoffset(void)
{
__u64 now;

now = (get_clock() - jiffies_timer_cc) >> 12;
now -= (__u64) jiffies * USECS_PER_JIFFY;
return (unsigned long) now;
}

/*
* This version of gettimeofday has microsecond resolution.
*/
void do_gettimeofday(struct timeval *tv)
{
unsigned long flags;
unsigned long seq;
unsigned long usec, sec;

do {
seq = read_seqbegin_irqsave(&xtime_lock, flags);

sec = xtime.tv_sec;
usec = xtime.tv_nsec / 1000 + do_gettimeoffset();
} while (read_seqretry_irqrestore(&xtime_lock, seq, flags));

while (usec >= 1000000) {
usec -= 1000000;
sec++;
}

tv->tv_sec = sec;
tv->tv_usec = usec;
}

EXPORT_SYMBOL(do_gettimeofday);

int do_settimeofday(struct timespec *tv)
{
time_t wtm_sec, sec = tv->tv_sec;
long wtm_nsec, nsec = tv->tv_nsec;

if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
return -EINVAL;

write_seqlock_irq(&xtime_lock);
/* This is revolting. We need to set the xtime.tv_nsec
* correctly. However, the value in this location is
* is value at the last tick.
* Discover what correction gettimeofday
* would have done, and then undo it!
*/
nsec -= do_gettimeoffset() * 1000;

wtm_sec = wall_to_monotonic.tv_sec + (xtime.tv_sec - sec);
wtm_nsec = wall_to_monotonic.tv_nsec + (xtime.tv_nsec - nsec);

set_normalized_timespec(&xtime, sec, nsec);
set_normalized_timespec(&wall_to_monotonic, wtm_sec, wtm_nsec);

ntp_clear();
write_sequnlock_irq(&xtime_lock);
clock_was_set();
return 0;
}

EXPORT_SYMBOL(do_settimeofday);


#ifdef CONFIG_PROFILING
#define s390_do_profile(regs) profile_tick(CPU_PROFILING, regs)
#define s390_do_profile() profile_tick(CPU_PROFILING)
#else
#define s390_do_profile(regs) do { ; } while(0)
#define s390_do_profile() do { ; } while(0)
#endif /* CONFIG_PROFILING */


/*
* timer_interrupt() needs to keep up the real-time clock,
* as well as call the "do_timer()" routine every clocktick
*/
void account_ticks(struct pt_regs *regs)
void account_ticks(void)
{
__u64 tmp;
__u32 ticks;
Expand Down Expand Up @@ -221,10 +155,10 @@ void account_ticks(struct pt_regs *regs)
account_tick_vtime(current);
#else
while (ticks--)
update_process_times(user_mode(regs));
update_process_times(user_mode(get_irq_regs()));
#endif

s390_do_profile(regs);
s390_do_profile();
}

#ifdef CONFIG_NO_IDLE_HZ
Expand Down Expand Up @@ -285,9 +219,11 @@ static inline void stop_hz_timer(void)
*/
static inline void start_hz_timer(void)
{
BUG_ON(!in_interrupt());

if (!cpu_isset(smp_processor_id(), nohz_cpu_mask))
return;
account_ticks(task_pt_regs(current));
account_ticks();
cpu_clear(smp_processor_id(), nohz_cpu_mask);
}

Expand Down Expand Up @@ -337,6 +273,22 @@ void init_cpu_timer(void)

extern void vtime_init(void);

static cycle_t read_tod_clock(void)
{
return get_clock();
}

static struct clocksource clocksource_tod = {
.name = "tod",
.rating = 100,
.read = read_tod_clock,
.mask = -1ULL,
.mult = 1000,
.shift = 12,
.is_continuous = 1,
};


/*
* Initialize the TOD clock and the CPU timer of
* the boot cpu.
Expand Down Expand Up @@ -381,6 +333,9 @@ void __init time_init(void)
&ext_int_info_cc) != 0)
panic("Couldn't request external interrupt 0x1004");

if (clocksource_register(&clocksource_tod) != 0)
panic("Could not register TOD clock source");

init_cpu_timer();

#ifdef CONFIG_NO_IDLE_HZ
Expand Down
2 changes: 1 addition & 1 deletion arch/s390/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ extern pgm_check_handler_t do_dat_exception;
#ifdef CONFIG_PFAULT
extern int pfault_init(void);
extern void pfault_fini(void);
extern void pfault_interrupt(struct pt_regs *regs, __u16 error_code);
extern void pfault_interrupt(__u16 error_code);
static ext_int_info_t ext_int_pfault;
#endif
extern pgm_check_handler_t do_monitor_call;
Expand Down
5 changes: 3 additions & 2 deletions arch/s390/kernel/vtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <asm/s390_ext.h>
#include <asm/timer.h>
#include <asm/irq_regs.h>

static ext_int_info_t ext_int_info_timer;
DEFINE_PER_CPU(struct vtimer_queue, virt_cpu_timer);
Expand Down Expand Up @@ -241,7 +242,7 @@ static void do_callbacks(struct list_head *cb_list, struct pt_regs *regs)
/*
* Handler for the virtual CPU timer.
*/
static void do_cpu_timer_interrupt(struct pt_regs *regs, __u16 error_code)
static void do_cpu_timer_interrupt(__u16 error_code)
{
int cpu;
__u64 next, delta;
Expand Down Expand Up @@ -274,7 +275,7 @@ static void do_cpu_timer_interrupt(struct pt_regs *regs, __u16 error_code)
list_move_tail(&event->entry, &cb_list);
}
spin_unlock(&vt_list->lock);
do_callbacks(&cb_list, regs);
do_callbacks(&cb_list, get_irq_regs());

/* next event is first in list */
spin_lock(&vt_list->lock);
Expand Down
2 changes: 1 addition & 1 deletion arch/s390/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ void pfault_fini(void)
}

asmlinkage void
pfault_interrupt(struct pt_regs *regs, __u16 error_code)
pfault_interrupt(__u16 error_code)
{
struct task_struct *tsk;
__u16 subcode;
Expand Down
1 change: 1 addition & 0 deletions drivers/char/sysrq.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#include <linux/irq.h>

#include <asm/ptrace.h>
#include <asm/irq_regs.h>

/* Whether we react on sysrq keys or just ignore them */
int sysrq_enabled = 1;
Expand Down
2 changes: 1 addition & 1 deletion drivers/s390/block/dasd_diag.c
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ dasd_diag_term_IO(struct dasd_ccw_req * cqr)

/* Handle external interruption. */
static void
dasd_ext_handler(struct pt_regs *regs, __u16 code)
dasd_ext_handler(__u16 code)
{
struct dasd_ccw_req *cqr, *next;
struct dasd_device *device;
Expand Down
2 changes: 1 addition & 1 deletion drivers/s390/char/ctrlchar.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static int ctrlchar_sysrq_key;
static void
ctrlchar_handle_sysrq(void *tty)
{
handle_sysrq(ctrlchar_sysrq_key, NULL, (struct tty_struct *) tty);
handle_sysrq(ctrlchar_sysrq_key, (struct tty_struct *) tty);
}

static DECLARE_WORK(ctrlchar_work, ctrlchar_handle_sysrq, NULL);
Expand Down
2 changes: 1 addition & 1 deletion drivers/s390/char/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ kbd_keycode(struct kbd_data *kbd, unsigned int keycode)
if (kbd->sysrq) {
if (kbd->sysrq == K(KT_LATIN, '-')) {
kbd->sysrq = 0;
handle_sysrq(value, NULL, kbd->tty);
handle_sysrq(value, kbd->tty);
return;
}
if (value == '-') {
Expand Down
10 changes: 5 additions & 5 deletions drivers/s390/char/monwriter.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#define MONWRITE_MAX_DATALEN 4024

static int mon_max_bufs = 255;
static int mon_buf_count;

struct mon_buf {
struct list_head list;
Expand All @@ -40,7 +41,6 @@ struct mon_private {
size_t hdr_to_read;
size_t data_to_read;
struct mon_buf *current_buf;
int mon_buf_count;
};

/*
Expand Down Expand Up @@ -99,13 +99,13 @@ static int monwrite_new_hdr(struct mon_private *monpriv)
rc = monwrite_diag(monhdr, monbuf->data,
APPLDATA_STOP_REC);
list_del(&monbuf->list);
monpriv->mon_buf_count--;
mon_buf_count--;
kfree(monbuf->data);
kfree(monbuf);
monbuf = NULL;
}
} else {
if (monpriv->mon_buf_count >= mon_max_bufs)
if (mon_buf_count >= mon_max_bufs)
return -ENOSPC;
monbuf = kzalloc(sizeof(struct mon_buf), GFP_KERNEL);
if (!monbuf)
Expand All @@ -118,7 +118,7 @@ static int monwrite_new_hdr(struct mon_private *monpriv)
}
monbuf->hdr = *monhdr;
list_add_tail(&monbuf->list, &monpriv->list);
monpriv->mon_buf_count++;
mon_buf_count++;
}
monpriv->current_buf = monbuf;
return 0;
Expand Down Expand Up @@ -186,7 +186,7 @@ static int monwrite_close(struct inode *inode, struct file *filp)
if (entry->hdr.mon_function != MONWRITE_GEN_EVENT)
monwrite_diag(&entry->hdr, entry->data,
APPLDATA_STOP_REC);
monpriv->mon_buf_count--;
mon_buf_count--;
list_del(&entry->list);
kfree(entry->data);
kfree(entry);
Expand Down
4 changes: 2 additions & 2 deletions drivers/s390/char/sclp.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ __sclp_find_req(u32 sccb)
* Prepare read event data request if necessary. Start processing of next
* request on queue. */
static void
sclp_interrupt_handler(struct pt_regs *regs, __u16 code)
sclp_interrupt_handler(__u16 code)
{
struct sclp_req *req;
u32 finished_sccb;
Expand Down Expand Up @@ -743,7 +743,7 @@ EXPORT_SYMBOL(sclp_reactivate);
/* Handler for external interruption used during initialization. Modify
* request state to done. */
static void
sclp_check_handler(struct pt_regs *regs, __u16 code)
sclp_check_handler(__u16 code)
{
u32 finished_sccb;

Expand Down
Loading

0 comments on commit da104a8

Please sign in to comment.